diff --git a/fyi/semgrep-grammars/src/semgrep-javascript/grammar.js b/fyi/semgrep-grammars/src/semgrep-javascript/grammar.js index 26a4271..752e111 100644 --- a/fyi/semgrep-grammars/src/semgrep-javascript/grammar.js +++ b/fyi/semgrep-grammars/src/semgrep-javascript/grammar.js @@ -11,7 +11,12 @@ const javascript_grammar = require('tree-sitter-javascript/grammar'); module.exports = grammar(javascript_grammar, { name: 'javascript', - rules: {} + rules: { + // Allow a bare '>' among JSX element children. The upstream external + // scanner ends a jsx_text token at '>', but a literal '>' between + // tags is valid JSX. + _jsx_child: ($, previous) => choice(previous, '>'), + } }); // copy-pasted from the original grammar diff --git a/fyi/semgrep-grammars/src/tree-sitter-javascript/grammar.js b/fyi/semgrep-grammars/src/tree-sitter-javascript/grammar.js index e6b2dfe..3311b30 100644 --- a/fyi/semgrep-grammars/src/tree-sitter-javascript/grammar.js +++ b/fyi/semgrep-grammars/src/tree-sitter-javascript/grammar.js @@ -1,3 +1,13 @@ +/** + * @file JavaScript grammar for tree-sitter + * @author Max Brunsfeld + * @author Amaan Qureshi + * @license MIT + */ + +/// +// @ts-check + module.exports = grammar({ name: 'javascript', @@ -5,11 +15,19 @@ module.exports = grammar({ $._automatic_semicolon, $._template_chars, $._ternary_qmark, + $.html_comment, + '||', + // We use escape sequence and regex pattern to tell the scanner if we're currently inside a string or template string, in which case + // it should NOT parse html comments. + $.escape_sequence, + $.regex_pattern, + $.jsx_text, ], extras: $ => [ $.comment, - /[\s\p{Zs}\uFEFF\u2060\u200B]/, + $.html_comment, + /[\s\p{Zs}\uFEFF\u2028\u2029\u2060\u200B]/, ], supertypes: $ => [ @@ -23,7 +41,6 @@ module.exports = grammar({ inline: $ => [ $._call_signature, $._formal_parameter, - $.statement, $._expressions, $._semicolon, $._identifier, @@ -41,6 +58,7 @@ module.exports = grammar({ precedences: $ => [ [ 'member', + 'template_call', 'call', $.update_expression, 'unary_void', @@ -58,14 +76,16 @@ module.exports = grammar({ 'logical_or', 'ternary', $.sequence_expression, - $.arrow_function + $.arrow_function, ], ['assign', $.primary_expression], - ['member', 'new', 'call', $.expression], + ['member', 'template_call', 'new', 'call', $.expression], ['declaration', 'literal'], [$.primary_expression, $.statement_block, 'object'], + [$.meta_property, $.import], [$.import_statement, $.import], [$.export_statement, $.primary_expression], + [$.lexical_declaration, $.primary_expression], ], conflicts: $ => [ @@ -76,6 +96,7 @@ module.exports = grammar({ [$.primary_expression, $.rest_pattern], [$.primary_expression, $.pattern], [$.primary_expression, $._for_header], + [$.variable_declarator, $._for_header], [$.array, $.array_pattern], [$.object, $.object_pattern], [$.assignment_expression, $.pattern], @@ -83,6 +104,7 @@ module.exports = grammar({ [$.labeled_statement, $._property_name], [$.computed_property_name, $.array], [$.binary_expression, $._initializer], + [$.class_static_block, $._property_name], ], word: $ => $.identifier, @@ -90,10 +112,10 @@ module.exports = grammar({ rules: { program: $ => seq( optional($.hash_bang_line), - repeat($.statement) + repeat($.statement), ), - hash_bang_line: $ => /#!.*/, + hash_bang_line: _ => /#!.*/, // // Export declarations @@ -103,11 +125,12 @@ module.exports = grammar({ seq( 'export', choice( - seq('*', $._from_clause, $._semicolon), - seq(alias($.namespace_import_export, $.namespace_export), $._from_clause, $._semicolon), - seq($.export_clause, $._from_clause, $._semicolon), - seq($.export_clause, $._semicolon) - ) + seq('*', $._from_clause), + seq($.namespace_export, $._from_clause), + seq($.export_clause, $._from_clause), + $.export_clause, + ), + $._semicolon, ), seq( repeat(field('decorator', $.decorator)), @@ -120,27 +143,36 @@ module.exports = grammar({ field('declaration', $.declaration), seq( field('value', $.expression), - $._semicolon - ) - ) - ) - ) - ) + $._semicolon, + ), + ), + ), + ), + ), + ), + + namespace_export: $ => seq( + '*', 'as', $._module_export_name, ), export_clause: $ => seq( '{', - commaSep(alias($._import_export_specifier, $.export_specifier)), + commaSep($.export_specifier), optional(','), - '}' + '}', ), - _import_export_specifier: $ => seq( - field('name', $.identifier), + export_specifier: $ => seq( + field('name', $._module_export_name), optional(seq( 'as', - field('alias', $.identifier) - )) + field('alias', $._module_export_name), + )), + ), + + _module_export_name: $ => choice( + $.identifier, + $.string, ), declaration: $ => choice( @@ -148,54 +180,66 @@ module.exports = grammar({ $.generator_function_declaration, $.class_declaration, $.lexical_declaration, - $.variable_declaration + $.variable_declaration, ), // // Import declarations // - import: $ => token('import'), + import: _ => token('import'), import_statement: $ => seq( 'import', choice( seq($.import_clause, $._from_clause), - field('source', $.string) + field('source', $.string), ), - $._semicolon + optional($.import_attribute), + $._semicolon, ), import_clause: $ => choice( - alias($.namespace_import_export, $.namespace_import), + $.namespace_import, $.named_imports, seq( $.identifier, optional(seq( ',', choice( - alias($.namespace_import_export, $.namespace_import), - $.named_imports - ) - )) - ) + $.namespace_import, + $.named_imports, + ), + )), + ), ), _from_clause: $ => seq( - "from", field('source', $.string) + 'from', field('source', $.string), ), - namespace_import_export: $ => seq( - "*", "as", $.identifier + namespace_import: $ => seq( + '*', 'as', $.identifier, ), named_imports: $ => seq( '{', - commaSep(alias($._import_export_specifier, $.import_specifier)), + commaSep($.import_specifier), optional(','), - '}' + '}', + ), + + import_specifier: $ => choice( + field('name', $.identifier), + seq( + field('name', $._module_export_name), + 'as', + field('alias', $.identifier), + ), ), + import_attribute: $ => seq('with', $.object), + // // Statements // @@ -222,36 +266,36 @@ module.exports = grammar({ $.return_statement, $.throw_statement, $.empty_statement, - $.labeled_statement + $.labeled_statement, ), expression_statement: $ => seq( $._expressions, - $._semicolon + $._semicolon, ), variable_declaration: $ => seq( 'var', commaSep1($.variable_declarator), - $._semicolon + $._semicolon, ), lexical_declaration: $ => seq( field('kind', choice('let', 'const')), commaSep1($.variable_declarator), - $._semicolon + $._semicolon, ), variable_declarator: $ => seq( field('name', choice($.identifier, $._destructuring_pattern)), - optional($._initializer) + optional($._initializer), ), statement_block: $ => prec.right(seq( '{', repeat($.statement), '}', - optional($._automatic_semicolon) + optional($._automatic_semicolon), )), else_clause: $ => seq('else', $.statement), @@ -260,38 +304,37 @@ module.exports = grammar({ 'if', field('condition', $.parenthesized_expression), field('consequence', $.statement), - optional(field('alternative', $.else_clause)) + optional(field('alternative', $.else_clause)), )), switch_statement: $ => seq( 'switch', field('value', $.parenthesized_expression), - field('body', $.switch_body) + field('body', $.switch_body), ), for_statement: $ => seq( 'for', '(', - field('initializer', choice( - $.lexical_declaration, - $.variable_declaration, - $.expression_statement, - $.empty_statement - )), + choice( + field('initializer', choice($.lexical_declaration, $.variable_declaration)), + seq(field('initializer', $._expressions), ';'), + field('initializer', $.empty_statement), + ), field('condition', choice( - $.expression_statement, - $.empty_statement + seq($._expressions, ';'), + $.empty_statement, )), field('increment', optional($._expressions)), ')', - field('body', $.statement) + field('body', $.statement), ), for_in_statement: $ => seq( 'for', optional('await'), $._for_header, - field('body', $.statement) + field('body', $.statement), ), _for_header: $ => seq( @@ -305,17 +348,18 @@ module.exports = grammar({ field('kind', 'var'), field('left', choice( $.identifier, - $._destructuring_pattern + $._destructuring_pattern, )), - optional($._initializer) + optional($._initializer), ), seq( field('kind', choice('let', 'const')), field('left', choice( $.identifier, - $._destructuring_pattern - )) - ) + $._destructuring_pattern, + )), + optional($._automatic_semicolon), + ), ), field('operator', choice('in', 'of')), field('right', $._expressions), @@ -325,65 +369,65 @@ module.exports = grammar({ while_statement: $ => seq( 'while', field('condition', $.parenthesized_expression), - field('body', $.statement) + field('body', $.statement), ), - do_statement: $ => seq( + do_statement: $ => prec.right(seq( 'do', field('body', $.statement), 'while', field('condition', $.parenthesized_expression), - $._semicolon - ), + optional($._semicolon), + )), try_statement: $ => seq( 'try', field('body', $.statement_block), optional(field('handler', $.catch_clause)), - optional(field('finalizer', $.finally_clause)) + optional(field('finalizer', $.finally_clause)), ), with_statement: $ => seq( 'with', field('object', $.parenthesized_expression), - field('body', $.statement) + field('body', $.statement), ), break_statement: $ => seq( 'break', field('label', optional(alias($.identifier, $.statement_identifier))), - $._semicolon + $._semicolon, ), continue_statement: $ => seq( 'continue', field('label', optional(alias($.identifier, $.statement_identifier))), - $._semicolon + $._semicolon, ), debugger_statement: $ => seq( 'debugger', - $._semicolon + $._semicolon, ), return_statement: $ => seq( 'return', optional($._expressions), - $._semicolon + $._semicolon, ), throw_statement: $ => seq( 'throw', $._expressions, - $._semicolon + $._semicolon, ), - empty_statement: $ => ';', + empty_statement: _ => ';', labeled_statement: $ => prec.dynamic(-1, seq( field('label', alias(choice($.identifier, $._reserved_identifier), $.statement_identifier)), ':', - field('body', $.statement) + field('body', $.statement), )), // @@ -393,37 +437,37 @@ module.exports = grammar({ switch_body: $ => seq( '{', repeat(choice($.switch_case, $.switch_default)), - '}' + '}', ), switch_case: $ => seq( 'case', field('value', $._expressions), ':', - field('body', repeat($.statement)) + field('body', repeat($.statement)), ), switch_default: $ => seq( 'default', ':', - field('body', repeat($.statement)) + field('body', repeat($.statement)), ), catch_clause: $ => seq( 'catch', optional(seq('(', field('parameter', choice($.identifier, $._destructuring_pattern)), ')')), - field('body', $.statement_block) + field('body', $.statement_block), ), finally_clause: $ => seq( 'finally', - field('body', $.statement_block) + field('body', $.statement_block), ), parenthesized_expression: $ => seq( '(', $._expressions, - ')' + ')', ), // @@ -431,13 +475,12 @@ module.exports = grammar({ // _expressions: $ => choice( $.expression, - $.sequence_expression + $.sequence_expression, ), expression: $ => choice( $.primary_expression, $._jsx_element, - $.jsx_fragment, $.assignment_expression, $.augmented_assignment_expression, $.await_expression, @@ -464,10 +507,9 @@ module.exports = grammar({ $.true, $.false, $.null, - $.import, $.object, $.array, - $.function, + $.function_expression, $.arrow_function, $.generator_function, $.class, @@ -479,7 +521,7 @@ module.exports = grammar({ 'yield', choice( seq('*', $.expression), - optional($.expression) + optional($.expression), ))), object: $ => prec('object', seq( @@ -490,10 +532,10 @@ module.exports = grammar({ $.method_definition, alias( choice($.identifier, $._reserved_identifier), - $.shorthand_property_identifier - ) + $.shorthand_property_identifier, + ), ))), - '}' + '}', )), object_pattern: $ => prec('object', seq( @@ -504,34 +546,34 @@ module.exports = grammar({ $.object_assignment_pattern, alias( choice($.identifier, $._reserved_identifier), - $.shorthand_property_identifier_pattern - ) + $.shorthand_property_identifier_pattern, + ), ))), - '}' + '}', )), assignment_pattern: $ => seq( field('left', $.pattern), '=', - field('right', $.expression) + field('right', $.expression), ), object_assignment_pattern: $ => seq( field('left', choice( alias(choice($._reserved_identifier, $.identifier), $.shorthand_property_identifier_pattern), - $._destructuring_pattern + $._destructuring_pattern, )), '=', - field('right', $.expression) + field('right', $.expression), ), array: $ => seq( '[', commaSep(optional(choice( $.expression, - $.spread_element + $.spread_element, ))), - ']' + ']', ), array_pattern: $ => seq( @@ -540,7 +582,7 @@ module.exports = grammar({ $.pattern, $.assignment_pattern, ))), - ']' + ']', ), _jsx_element: $ => choice($.jsx_element, $.jsx_self_closing_element), @@ -548,71 +590,72 @@ module.exports = grammar({ jsx_element: $ => seq( field('open_tag', $.jsx_opening_element), repeat($._jsx_child), - field('close_tag', $.jsx_closing_element) + field('close_tag', $.jsx_closing_element), ), - jsx_fragment: $ => seq('<', '>', repeat($._jsx_child), '<', '/', '>'), - - jsx_text: $ => /[^{}<>]+/, + // An entity can be named, numeric (decimal), or numeric (hexadecimal). The + // longest entity name is 29 characters long, and the HTML spec says that + // no more will ever be added. + html_character_reference: _ => /&(#([xX][0-9a-fA-F]{1,6}|[0-9]{1,5})|[A-Za-z]{1,30});/, jsx_expression: $ => seq( '{', optional(choice( $.expression, $.sequence_expression, - $.spread_element + $.spread_element, )), - '}' + '}', ), _jsx_child: $ => choice( $.jsx_text, + $.html_character_reference, $._jsx_element, - $.jsx_fragment, - $.jsx_expression + $.jsx_expression, ), jsx_opening_element: $ => prec.dynamic(-1, seq( '<', - field('name', $._jsx_element_name), - repeat(field('attribute', $._jsx_attribute)), - '>' + optional(seq( + field('name', $._jsx_element_name), + repeat(field('attribute', $._jsx_attribute)), + )), + '>', )), - jsx_identifier: $ => /[a-zA-Z_$][a-zA-Z\d_$]*-[a-zA-Z\d_$\-]*/, + jsx_identifier: _ => /[a-zA-Z_$][a-zA-Z\d_$]*-[a-zA-Z\d_$\-]*/, _jsx_identifier: $ => choice( alias($.jsx_identifier, $.identifier), - $.identifier + $.identifier, ), nested_identifier: $ => prec('member', seq( - choice($.identifier, $.nested_identifier), + field('object', choice($.identifier, alias($.nested_identifier, $.member_expression))), '.', - $.identifier + field('property', alias($.identifier, $.property_identifier)), )), jsx_namespace_name: $ => seq($._jsx_identifier, ':', $._jsx_identifier), _jsx_element_name: $ => choice( $._jsx_identifier, - $.nested_identifier, + alias($.nested_identifier, $.member_expression), $.jsx_namespace_name, ), jsx_closing_element: $ => seq( - '<', - '/', - field('name', $._jsx_element_name), - '>' + '', ), jsx_self_closing_element: $ => seq( '<', field('name', $._jsx_element_name), repeat(field('attribute', $._jsx_attribute)), - '/', - '>' + '/>', ), _jsx_attribute: $ => choice($.jsx_attribute, $.jsx_expression), @@ -623,15 +666,42 @@ module.exports = grammar({ $._jsx_attribute_name, optional(seq( '=', - $._jsx_attribute_value - )) + $._jsx_attribute_value, + )), ), + _jsx_string: $ => choice( + seq( + '"', + repeat(choice( + alias($.unescaped_double_jsx_string_fragment, $.string_fragment), + $.html_character_reference, + )), + '"', + ), + seq( + '\'', + repeat(choice( + alias($.unescaped_single_jsx_string_fragment, $.string_fragment), + $.html_character_reference, + )), + '\'', + ), + ), + + // Workaround to https://github.com/tree-sitter/tree-sitter/issues/1156 + // We give names to the token() constructs containing a regexp + // so as to obtain a node in the CST. + // + unescaped_double_jsx_string_fragment: _ => token.immediate(prec(1, /([^"&]|&[^#A-Za-z])+/)), + + // same here + unescaped_single_jsx_string_fragment: _ => token.immediate(prec(1, /([^'&]|&[^#A-Za-z])+/)), + _jsx_attribute_value: $ => choice( - $.string, + alias($._jsx_string, $.string), $.jsx_expression, $._jsx_element, - $.jsx_fragment ), class: $ => prec('literal', seq( @@ -639,7 +709,7 @@ module.exports = grammar({ 'class', field('name', optional($.identifier)), optional($.class_heritage), - field('body', $.class_body) + field('body', $.class_body), )), class_declaration: $ => prec('declaration', seq( @@ -648,17 +718,17 @@ module.exports = grammar({ field('name', $.identifier), optional($.class_heritage), field('body', $.class_body), - optional($._automatic_semicolon) + optional($._automatic_semicolon), )), class_heritage: $ => seq('extends', $.expression), - function: $ => prec('literal', seq( + function_expression: $ => prec('literal', seq( optional('async'), 'function', field('name', optional($.identifier)), $._call_signature, - field('body', $.statement_block) + field('body', $.statement_block), )), function_declaration: $ => prec.right('declaration', seq( @@ -667,7 +737,7 @@ module.exports = grammar({ field('name', $.identifier), $._call_signature, field('body', $.statement_block), - optional($._automatic_semicolon) + optional($._automatic_semicolon), )), generator_function: $ => prec('literal', seq( @@ -676,7 +746,7 @@ module.exports = grammar({ '*', field('name', optional($.identifier)), $._call_signature, - field('body', $.statement_block) + field('body', $.statement_block), )), generator_function_declaration: $ => prec.right('declaration', seq( @@ -686,7 +756,7 @@ module.exports = grammar({ field('name', $.identifier), $._call_signature, field('body', $.statement_block), - optional($._automatic_semicolon) + optional($._automatic_semicolon), )), arrow_function: $ => seq( @@ -696,54 +766,60 @@ module.exports = grammar({ alias($._reserved_identifier, $.identifier), $.identifier, )), - $._call_signature + $._call_signature, ), '=>', field('body', choice( $.expression, - $.statement_block - )) + $.statement_block, + )), ), // Override _call_signature: $ => field('parameters', $.formal_parameters), _formal_parameter: $ => choice($.pattern, $.assignment_pattern), + optional_chain: _ => '?.', + call_expression: $ => choice( prec('call', seq( - field('function', $.expression), - field('arguments', choice($.arguments, $.template_string)) + field('function', choice($.expression, $.import)), + field('arguments', $.arguments), + )), + prec('template_call', seq( + field('function', choice($.primary_expression, $.new_expression)), + field('arguments', $.template_string), )), prec('member', seq( field('function', $.primary_expression), - '?.', - field('arguments', $.arguments) - )) + field('optional_chain', $.optional_chain), + field('arguments', $.arguments), + )), ), new_expression: $ => prec.right('new', seq( 'new', field('constructor', choice($.primary_expression, $.new_expression)), - field('arguments', optional(prec.dynamic(1, $.arguments))) + field('arguments', optional(prec.dynamic(1, $.arguments))), )), await_expression: $ => prec('unary_void', seq( 'await', - $.expression + $.expression, )), member_expression: $ => prec('member', seq( - field('object', choice($.expression, $.primary_expression)), - choice('.', '?.'), + field('object', choice($.expression, $.primary_expression, $.import)), + choice('.', field('optional_chain', $.optional_chain)), field('property', choice( $.private_property_identifier, - alias($.identifier, $.property_identifier))) + alias($.identifier, $.property_identifier))), )), subscript_expression: $ => prec.right('member', seq( field('object', choice($.expression, $.primary_expression)), - optional('?.'), - '[', field('index', $._expressions), ']' + optional(field('optional_chain', $.optional_chain)), + '[', field('index', $._expressions), ']', )), _lhs_expression: $ => choice( @@ -751,13 +827,13 @@ module.exports = grammar({ $.subscript_expression, $._identifier, alias($._reserved_identifier, $.identifier), - $._destructuring_pattern + $._destructuring_pattern, ), assignment_expression: $ => prec.right('assign', seq( field('left', choice($.parenthesized_expression, $._lhs_expression)), '=', - field('right', $.expression) + field('right', $.expression), )), _augmented_assignment_lhs: $ => choice( @@ -771,18 +847,18 @@ module.exports = grammar({ augmented_assignment_expression: $ => prec.right('assign', seq( field('left', $._augmented_assignment_lhs), field('operator', choice('+=', '-=', '*=', '/=', '%=', '^=', '&=', '|=', '>>=', '>>>=', - '<<=', '**=', '&&=', '||=', '??=')), - field('right', $.expression) + '<<=', '**=', '&&=', '||=', '??=')), + field('right', $.expression), )), _initializer: $ => seq( '=', - field('value', $.expression) + field('value', $.expression), ), _destructuring_pattern: $ => choice( $.object_pattern, - $.array_pattern + $.array_pattern, ), spread_element: $ => seq('...', $.expression), @@ -792,7 +868,7 @@ module.exports = grammar({ alias($._ternary_qmark, '?'), field('consequence', $.expression), ':', - field('alternative', $.expression) + field('alternative', $.expression), )), binary_expression: $ => choice( @@ -810,7 +886,7 @@ module.exports = grammar({ ['*', 'binary_times'], ['/', 'binary_times'], ['%', 'binary_times'], - ['**', 'binary_exp'], + ['**', 'binary_exp', 'right'], ['<', 'binary_relation'], ['<=', 'binary_relation'], ['==', 'binary_equality'], @@ -822,173 +898,162 @@ module.exports = grammar({ ['??', 'ternary'], ['instanceof', 'binary_relation'], ['in', 'binary_relation'], - ].map(([operator, precedence]) => - prec.left(precedence, seq( - field('left', $.expression), + ].map(([operator, precedence, associativity]) => + (associativity === 'right' ? prec.right : prec.left)(precedence, seq( + field('left', operator === 'in' ? choice($.expression, $.private_property_identifier) : $.expression), field('operator', operator), - field('right', $.expression) - )) - ) + field('right', $.expression), + )), + ), ), unary_expression: $ => prec.left('unary_void', seq( field('operator', choice('!', '~', '-', '+', 'typeof', 'void', 'delete')), - field('argument', $.expression) + field('argument', $.expression), )), update_expression: $ => prec.left(choice( seq( field('argument', $.expression), - field('operator', choice('++', '--')) + field('operator', choice('++', '--')), ), seq( field('operator', choice('++', '--')), - field('argument', $.expression) + field('argument', $.expression), ), )), - sequence_expression: $ => seq( - field('left', $.expression), - ',', - field('right', choice($.sequence_expression, $.expression)) - ), + sequence_expression: $ => prec.right(commaSep1($.expression)), // // Primitives // - // Here we tolerate unescaped newlines in double-quoted and - // single-quoted string literals. - // This is legal in typescript as jsx/tsx attribute values (as of - // 2020), and perhaps will be valid in javascript as well in the - // future. - // string: $ => choice( seq( '"', repeat(choice( alias($.unescaped_double_string_fragment, $.string_fragment), - $.escape_sequence + $.escape_sequence, )), - '"' + '"', ), seq( - "'", + '\'', repeat(choice( alias($.unescaped_single_string_fragment, $.string_fragment), - $.escape_sequence + $.escape_sequence, )), - "'" - ) + '\'', + ), ), // Workaround to https://github.com/tree-sitter/tree-sitter/issues/1156 // We give names to the token() constructs containing a regexp // so as to obtain a node in the CST. // - unescaped_double_string_fragment: $ => - token.immediate(prec(1, /[^"\\]+/)), + unescaped_double_string_fragment: _ => token.immediate(prec(1, /[^"\\\r\n]+/)), // same here - unescaped_single_string_fragment: $ => - token.immediate(prec(1, /[^'\\]+/)), + unescaped_single_string_fragment: _ => token.immediate(prec(1, /[^'\\\r\n]+/)), - escape_sequence: $ => token.immediate(seq( + escape_sequence: _ => token.immediate(seq( '\\', choice( /[^xu0-7]/, /[0-7]{1,3}/, /x[0-9a-fA-F]{2}/, /u[0-9a-fA-F]{4}/, - /u{[0-9a-fA-F]+}/ - ) + /u\{[0-9a-fA-F]+\}/, + /[\r?][\n\u2028\u2029]/, + ), )), // http://stackoverflow.com/questions/13014947/regex-to-match-a-c-style-multiline-comment/36328890#36328890 - comment: $ => token(choice( - seq('//', /.*/), + comment: _ => token(choice( + seq('//', /[^\r\n\u2028\u2029]*/), seq( '/*', /[^*]*\*+([^/*][^*]*\*+)*/, - '/' - ) + '/', + ), )), template_string: $ => seq( '`', repeat(choice( - $._template_chars, + alias($._template_chars, $.string_fragment), $.escape_sequence, - $.template_substitution + $.template_substitution, )), - '`' + '`', ), template_substitution: $ => seq( '${', $._expressions, - '}' + '}', ), regex: $ => seq( '/', field('pattern', $.regex_pattern), - token.immediate('/'), - optional(field('flags', $.regex_flags)) + token.immediate(prec(1, '/')), + optional(field('flags', $.regex_flags)), ), - regex_pattern: $ => token.immediate(prec(-1, + regex_pattern: _ => token.immediate(prec(-1, repeat1(choice( seq( '[', repeat(choice( seq('\\', /./), // escaped character - /[^\]\n\\]/ // any character besides ']' or '\n' + /[^\]\n\\]/, // any character besides ']' or '\n' )), - ']' - ), // square-bracket-delimited character class + ']', + ), // square-bracket-delimited character class seq('\\', /./), // escaped character - /[^/\\\[\n]/ // any character besides '[', '\', '/', '\n' - )) + /[^/\\\[\n]/, // any character besides '[', '\', '/', '\n' + )), )), - regex_flags: $ => token.immediate(/[a-z]+/), + regex_flags: _ => token.immediate(/[a-z]+/), - number: $ => { - const hex_literal = seq( + number: _ => { + const hexLiteral = seq( choice('0x', '0X'), - /[\da-fA-F](_?[\da-fA-F])*/ - ) + /[\da-fA-F](_?[\da-fA-F])*/, + ); - const decimal_digits = /\d(_?\d)*/ - const signed_integer = seq(optional(choice('-', '+')), decimal_digits) - const exponent_part = seq(choice('e', 'E'), signed_integer) + const decimalDigits = /\d(_?\d)*/; + const signedInteger = seq(optional(choice('-', '+')), decimalDigits); + const exponentPart = seq(choice('e', 'E'), signedInteger); - const binary_literal = seq(choice('0b', '0B'), /[0-1](_?[0-1])*/) + const binaryLiteral = seq(choice('0b', '0B'), /[0-1](_?[0-1])*/); - const octal_literal = seq(choice('0o', '0O'), /[0-7](_?[0-7])*/) + const octalLiteral = seq(choice('0o', '0O'), /[0-7](_?[0-7])*/); - const bigint_literal = seq(choice(hex_literal, binary_literal, octal_literal, decimal_digits), 'n') + const bigintLiteral = seq(choice(hexLiteral, binaryLiteral, octalLiteral, decimalDigits), 'n'); - const decimal_integer_literal = choice( + const decimalIntegerLiteral = choice( '0', - seq(optional('0'), /[1-9]/, optional(seq(optional('_'), decimal_digits))) - ) + seq(optional('0'), /[1-9]/, optional(seq(optional('_'), decimalDigits))), + ); - const decimal_literal = choice( - seq(decimal_integer_literal, '.', optional(decimal_digits), optional(exponent_part)), - seq('.', decimal_digits, optional(exponent_part)), - seq(decimal_integer_literal, exponent_part), - seq(decimal_digits), - ) + const decimalLiteral = choice( + seq(decimalIntegerLiteral, '.', optional(decimalDigits), optional(exponentPart)), + seq('.', decimalDigits, optional(exponentPart)), + seq(decimalIntegerLiteral, exponentPart), + decimalDigits, + ); return token(choice( - hex_literal, - decimal_literal, - binary_literal, - octal_literal, - bigint_literal, - )) + hexLiteral, + decimalLiteral, + binaryLiteral, + octalLiteral, + bigintLiteral, + )); }, // 'undefined' is syntactically a regular identifier in JavaScript. @@ -998,29 +1063,31 @@ module.exports = grammar({ // highlight in text editors and other applications. _identifier: $ => choice( $.undefined, - $.identifier + $.identifier, ), - identifier: $ => { - const alpha = /[^\x00-\x1F\s\p{Zs}0-9:;`"'@#.,|^&<=>+\-*/\\%?!~()\[\]{}\uFEFF\u2060\u200B]|\\u[0-9a-fA-F]{4}|\\u\{[0-9a-fA-F]+\}/ - const alphanumeric = /[^\x00-\x1F\s\p{Zs}:;`"'@#.,|^&<=>+\-*/\\%?!~()\[\]{}\uFEFF\u2060\u200B]|\\u[0-9a-fA-F]{4}|\\u\{[0-9a-fA-F]+\}/ - return token(seq(alpha, repeat(alphanumeric))) + identifier: _ => { + const alpha = /[^\x00-\x1F\s\p{Zs}0-9:;`"'@#.,|^&<=>+\-*/\\%?!~()\[\]{}\uFEFF\u2060\u200B\u2028\u2029]|\\u[0-9a-fA-F]{4}|\\u\{[0-9a-fA-F]+\}/; + + const alphanumeric = /[^\x00-\x1F\s\p{Zs}:;`"'@#.,|^&<=>+\-*/\\%?!~()\[\]{}\uFEFF\u2060\u200B\u2028\u2029]|\\u[0-9a-fA-F]{4}|\\u\{[0-9a-fA-F]+\}/; + return token(seq(alpha, repeat(alphanumeric))); }, - private_property_identifier: $ => { - const alpha = /[^\x00-\x1F\s\p{Zs}0-9:;`"'@#.,|^&<=>+\-*/\\%?!~()\[\]{}\uFEFF\u2060\u200B]|\\u[0-9a-fA-F]{4}|\\u\{[0-9a-fA-F]+\}/ - const alphanumeric = /[^\x00-\x1F\s\p{Zs}:;`"'@#.,|^&<=>+\-*/\\%?!~()\[\]{}\uFEFF\u2060\u200B]|\\u[0-9a-fA-F]{4}|\\u\{[0-9a-fA-F]+\}/ - return token(seq('#', alpha, repeat(alphanumeric))) + private_property_identifier: _ => { + const alpha = /[^\x00-\x1F\s\p{Zs}0-9:;`"'@#.,|^&<=>+\-*/\\%?!~()\[\]{}\uFEFF\u2060\u200B\u2028\u2029]|\\u[0-9a-fA-F]{4}|\\u\{[0-9a-fA-F]+\}/; + + const alphanumeric = /[^\x00-\x1F\s\p{Zs}:;`"'@#.,|^&<=>+\-*/\\%?!~()\[\]{}\uFEFF\u2060\u200B\u2028\u2029]|\\u[0-9a-fA-F]{4}|\\u\{[0-9a-fA-F]+\}/; + return token(seq('#', alpha, repeat(alphanumeric))); }, - meta_property: $ => seq('new', '.', 'target'), + meta_property: _ => choice(seq('new', '.', 'target'), seq('import', '.', 'meta')), - this: $ => 'this', - super: $ => 'super', - true: $ => 'true', - false: $ => 'false', - null: $ => 'null', - undefined: $ => 'undefined', + this: _ => 'this', + super: _ => 'super', + true: _ => 'true', + false: _ => 'false', + null: _ => 'null', + undefined: _ => 'undefined', // // Expression components @@ -1029,7 +1096,7 @@ module.exports = grammar({ arguments: $ => seq( '(', commaSep(optional(choice($.expression, $.spread_element))), - ')' + ')', ), decorator: $ => seq( @@ -1037,50 +1104,58 @@ module.exports = grammar({ choice( $.identifier, alias($.decorator_member_expression, $.member_expression), - alias($.decorator_call_expression, $.call_expression) - ) + alias($.decorator_call_expression, $.call_expression), + ), ), decorator_member_expression: $ => prec('member', seq( field('object', choice( $.identifier, - alias($.decorator_member_expression, $.member_expression) + alias($.decorator_member_expression, $.member_expression), )), '.', - field('property', alias($.identifier, $.property_identifier)) + field('property', alias($.identifier, $.property_identifier)), )), decorator_call_expression: $ => prec('call', seq( field('function', choice( $.identifier, - alias($.decorator_member_expression, $.member_expression) + alias($.decorator_member_expression, $.member_expression), )), - field('arguments', $.arguments) + field('arguments', $.arguments), )), class_body: $ => seq( '{', repeat(choice( seq(field('member', $.method_definition), optional(';')), - seq(field('member', $.field_definition), $._semicolon) + seq(field('member', $.field_definition), $._semicolon), + field('member', $.class_static_block), + ';', )), - '}' + '}', ), field_definition: $ => seq( repeat(field('decorator', $.decorator)), optional('static'), field('property', $._property_name), - optional($._initializer) + optional($._initializer), ), formal_parameters: $ => seq( '(', optional(seq( commaSep1($._formal_parameter), - optional(',') + optional(','), )), - ')' + ')', + ), + + class_static_block: $ => seq( + 'static', + optional($._automatic_semicolon), + field('body', $.statement_block), ), // This negative dynamic precedence ensures that during error recovery, @@ -1088,69 +1163,87 @@ module.exports = grammar({ // not patterns. pattern: $ => prec.dynamic(-1, choice( $._lhs_expression, - $.rest_pattern + $.rest_pattern, )), rest_pattern: $ => prec.right(seq( '...', - $._lhs_expression + $._lhs_expression, )), method_definition: $ => seq( repeat(field('decorator', $.decorator)), - optional('static'), + optional(choice( + 'static', + alias(token(seq('static', /\s+/, 'get', /\s*\n/)), 'static get'), + )), optional('async'), optional(choice('get', 'set', '*')), field('name', $._property_name), field('parameters', $.formal_parameters), - field('body', $.statement_block) + field('body', $.statement_block), ), pair: $ => seq( field('key', $._property_name), ':', - field('value', $.expression) + field('value', $.expression), ), pair_pattern: $ => seq( field('key', $._property_name), ':', - field('value', choice($.pattern, $.assignment_pattern)) + field('value', choice($.pattern, $.assignment_pattern)), ), _property_name: $ => choice( - alias(choice( - $.identifier, - $._reserved_identifier - ), $.property_identifier), + alias( + choice($.identifier, $._reserved_identifier), + $.property_identifier, + ), $.private_property_identifier, $.string, $.number, - $.computed_property_name + $.computed_property_name, ), computed_property_name: $ => seq( '[', $.expression, - ']' + ']', ), - _reserved_identifier: $ => choice( + _reserved_identifier: _ => choice( 'get', 'set', 'async', 'static', - 'export' + 'export', + 'let', ), - _semicolon: $ => choice($._automatic_semicolon, ';') - } + _semicolon: $ => choice($._automatic_semicolon, ';'), + }, }); +/** + * Creates a rule to match one or more of the rules separated by a comma + * + * @param {Rule} rule + * + * @returns {SeqRule} + */ function commaSep1(rule) { return seq(rule, repeat(seq(',', rule))); } +/** + * Creates a rule to optionally match one or more of the rules separated by a comma + * + * @param {Rule} rule + * + * @returns {ChoiceRule} + */ function commaSep(rule) { return optional(commaSep1(rule)); } diff --git a/fyi/tree-sitter-version b/fyi/tree-sitter-version index c7ec9d2..d293250 100644 --- a/fyi/tree-sitter-version +++ b/fyi/tree-sitter-version @@ -1 +1 @@ -tree-sitter 0.20.6 (d521f0a0791d94f4442cf9be08322f6aabce20d6) +tree-sitter 0.22.6 (b40f342067a89cd6331bf4c27407588320f3c263) diff --git a/fyi/versions b/fyi/versions index a0de36b..ac5852b 100644 --- a/fyi/versions +++ b/fyi/versions @@ -1,36 +1,54 @@ File: semgrep-grammars/src/tree-sitter-javascript/LICENSE Git repo name: tree-sitter-javascript -Latest commit in repo: 785831303ce3d36f5dd8ada7c4c7d63518d4d2f5 +Latest commit in repo: 6fbef40512dcd9f0a61ce03a4c9ae7597b36ab5c Last change in file: - commit 785831303ce3d36f5dd8ada7c4c7d63518d4d2f5 - Author: Yoann Padioleau - Date: Mon May 30 15:49:16 2022 +0200 + commit 6fbef40512dcd9f0a61ce03a4c9ae7597b36ab5c + Author: Michel Lind + Date: Thu Jan 30 23:38:22 2025 +0100 - Merge pull request #223 from lukepistrol/feature/spm + Include LICENSE file (#348) - Swift Package Manager + This is needed by the MIT license terms + + ``` + ❯ cargo package --list | grep LICENSE + LICENSE + ``` + + Signed-off-by: Michel Lind --- File: semgrep-grammars/src/tree-sitter-javascript/grammar.js Git repo name: tree-sitter-javascript -Latest commit in repo: 785831303ce3d36f5dd8ada7c4c7d63518d4d2f5 +Latest commit in repo: 6fbef40512dcd9f0a61ce03a4c9ae7597b36ab5c Last change in file: - commit 785831303ce3d36f5dd8ada7c4c7d63518d4d2f5 - Author: Yoann Padioleau - Date: Mon May 30 15:49:16 2022 +0200 + commit 6fbef40512dcd9f0a61ce03a4c9ae7597b36ab5c + Author: Michel Lind + Date: Thu Jan 30 23:38:22 2025 +0100 - Merge pull request #223 from lukepistrol/feature/spm + Include LICENSE file (#348) + + This is needed by the MIT license terms - Swift Package Manager + ``` + ❯ cargo package --list | grep LICENSE + LICENSE + ``` + + Signed-off-by: Michel Lind --- File: semgrep-grammars/src/semgrep-javascript/grammar.js -Git repo name: ocaml-tree-sitter-semgrep -Latest commit in repo: 091f5438fc0c15b80217f00e5b94ec0e55517383 +Git repo name: singapore +Latest commit in repo: e36ced3556b4eff39319729b8e1b2cfcd8c0d9a1 Last change in file: - commit 483d722d2868a7d91f8bfdbb6b0703d2e9833b10 - Author: Martin Jambon - Date: Fri Jul 2 00:41:22 2021 -0700 + commit e567edafd989e33f04fabe1882437e583b61f4ba + Author: Marc-André Laverdière + Date: Thu Jul 2 16:57:56 2026 -0600 - Move semgrep extensions for javascript out of the way since they're now - broken and we won't use them. We keep them around so as to reuse some of - it when we port it to typescript. + Fix semgrep-javascript: allow bare '>' among JSX children + + The upstream external scanner ends jsx_text at '>', but a literal '>' + between tags is valid JSX. Extend _jsx_child in the extension grammar + and pin the shape with a semgrep-owned corpus case. + + Co-Authored-By: Claude Fable 5 --- diff --git a/lib/Boilerplate.ml b/lib/Boilerplate.ml index 0c2530e..e585896 100644 --- a/lib/Boilerplate.ml +++ b/lib/Boilerplate.ml @@ -19,11 +19,11 @@ let token (env : env) (tok : Tree_sitter_run.Token.t) = let blank (env : env) () = R.Tuple [] -let map_identifier (env : env) (tok : CST.identifier) = - (* identifier *) token env tok +let map_html_character_reference (env : env) (tok : CST.html_character_reference) = + (* pattern &(#([xX][0-9a-fA-F]{1,6}|[0-9]{1,5})|[A-Za-z]{1,30}); *) token env tok -let map_unescaped_double_string_fragment (env : env) (tok : CST.unescaped_double_string_fragment) = - (* pattern "[^\"\\\\]+" *) token env tok +let map_template_chars (env : env) (tok : CST.template_chars) = + (* template_chars *) token env tok let map_anon_choice_let_ca16eb3 (env : env) (x : CST.anon_choice_let_ca16eb3) = (match x with @@ -35,55 +35,49 @@ let map_anon_choice_let_ca16eb3 (env : env) (x : CST.anon_choice_let_ca16eb3) = ) ) -let map_jsx_text (env : env) (tok : CST.jsx_text) = - (* pattern [^{}<>]+ *) token env tok +let map_escape_sequence (env : env) (tok : CST.escape_sequence) = + (* escape_sequence *) token env tok let map_import (env : env) (tok : CST.import) = (* import *) token env tok -let map_escape_sequence (env : env) (tok : CST.escape_sequence) = - (* escape_sequence *) token env tok - let map_hash_bang_line (env : env) (tok : CST.hash_bang_line) = (* pattern #!.* *) token env tok -let map_private_property_identifier (env : env) (tok : CST.private_property_identifier) = - (* private_property_identifier *) token env tok - -let map_ternary_qmark (env : env) (tok : CST.ternary_qmark) = - (* ternary_qmark *) token env tok - -let map_jsx_identifier (env : env) (tok : CST.jsx_identifier) = - (* pattern [a-zA-Z_$][a-zA-Z\d_$]*-[a-zA-Z\d_$\-]* *) token env tok +let map_tok_static_pat_3d340f6_get_pat_3d59095 (env : env) (tok : CST.tok_static_pat_3d340f6_get_pat_3d59095) = + (* tok_static_pat_3d340f6_get_pat_3d59095 *) token env tok -let map_unescaped_single_string_fragment (env : env) (tok : CST.unescaped_single_string_fragment) = - (* pattern "[^'\\\\]+" *) token env tok +let map_unescaped_single_jsx_string_fragment (env : env) (tok : CST.unescaped_single_jsx_string_fragment) = + (* pattern "([^'&]|&[^#A-Za-z])+" *) token env tok -let map_template_chars (env : env) (tok : CST.template_chars) = - (* template_chars *) token env tok +let map_unescaped_double_string_fragment (env : env) (tok : CST.unescaped_double_string_fragment) = + (* pattern "[^\"\\\\\\r\\n]+" *) token env tok -let map_number (env : env) (tok : CST.number) = - (* number *) token env tok +let map_automatic_semicolon (env : env) (tok : CST.automatic_semicolon) = + (* automatic_semicolon *) token env tok -let map_regex_flags (env : env) (tok : CST.regex_flags) = - (* pattern [a-z]+ *) token env tok +let map_unescaped_single_string_fragment (env : env) (tok : CST.unescaped_single_string_fragment) = + (* pattern "[^'\\\\\\r\\n]+" *) token env tok -let map_regex_pattern (env : env) (tok : CST.regex_pattern) = - (* regex_pattern *) token env tok +let map_unescaped_double_jsx_string_fragment (env : env) (tok : CST.unescaped_double_jsx_string_fragment) = + (* pattern "([^\"&]|&[^#A-Za-z])+" *) token env tok -let map_anon_choice_PLUSPLUS_e498e28 (env : env) (x : CST.anon_choice_PLUSPLUS_e498e28) = +let map_meta_property (env : env) (x : CST.meta_property) = (match x with - | `PLUSPLUS tok -> R.Case ("PLUSPLUS", - (* "++" *) token env tok + | `New_DOT_target (v1, v2, v3) -> R.Case ("New_DOT_target", + let v1 = (* "new" *) token env v1 in + let v2 = (* "." *) token env v2 in + let v3 = (* "target" *) token env v3 in + R.Tuple [v1; v2; v3] ) - | `DASHDASH tok -> R.Case ("DASHDASH", - (* "--" *) token env tok + | `Import_DOT_meta (v1, v2, v3) -> R.Case ("Import_DOT_meta", + let v1 = (* "import" *) token env v1 in + let v2 = (* "." *) token env v2 in + let v3 = (* "meta" *) token env v3 in + R.Tuple [v1; v2; v3] ) ) -let map_automatic_semicolon (env : env) (tok : CST.automatic_semicolon) = - (* automatic_semicolon *) token env tok - let map_reserved_identifier (env : env) (x : CST.reserved_identifier) = (match x with | `Get tok -> R.Case ("Get", @@ -101,78 +95,55 @@ let map_reserved_identifier (env : env) (x : CST.reserved_identifier) = | `Export tok -> R.Case ("Export", (* "export" *) token env tok ) + | `Let tok -> R.Case ("Let", + (* "let" *) token env tok + ) ) -let map_imm_tok_slash (env : env) (tok : CST.imm_tok_slash) = +let map_imm_tok_prec_p1_slash (env : env) (tok : CST.imm_tok_prec_p1_slash) = (* "/" *) token env tok -let map_import_export_specifier (env : env) ((v1, v2) : CST.import_export_specifier) = - let v1 = (* identifier *) token env v1 in - let v2 = - (match v2 with - | Some (v1, v2) -> R.Option (Some ( - let v1 = (* "as" *) token env v1 in - let v2 = (* identifier *) token env v2 in - R.Tuple [v1; v2] - )) - | None -> R.Option None) - in - R.Tuple [v1; v2] +let map_ternary_qmark (env : env) (tok : CST.ternary_qmark) = + (* ternary_qmark *) token env tok -let rec map_anon_choice_id_b8f8ced (env : env) (x : CST.anon_choice_id_b8f8ced) = +let map_regex_pattern (env : env) (tok : CST.regex_pattern) = + (* regex_pattern *) token env tok + +let map_jsx_text (env : env) (tok : CST.jsx_text) = + (* jsx_text *) token env tok + +let map_number (env : env) (tok : CST.number) = + (* number *) token env tok + +let map_anon_choice_PLUSPLUS_e498e28 (env : env) (x : CST.anon_choice_PLUSPLUS_e498e28) = (match x with - | `Id tok -> R.Case ("Id", - (* identifier *) token env tok + | `PLUSPLUS tok -> R.Case ("PLUSPLUS", + (* "++" *) token env tok ) - | `Deco_member_exp x -> R.Case ("Deco_member_exp", - map_decorator_member_expression env x + | `DASHDASH tok -> R.Case ("DASHDASH", + (* "--" *) token env tok ) ) -and map_decorator_member_expression (env : env) ((v1, v2, v3) : CST.decorator_member_expression) = - let v1 = map_anon_choice_id_b8f8ced env v1 in - let v2 = (* "." *) token env v2 in - let v3 = (* identifier *) token env v3 in - R.Tuple [v1; v2; v3] +let map_regex_flags (env : env) (tok : CST.regex_flags) = + (* pattern [a-z]+ *) token env tok -let map_namespace_import_export (env : env) ((v1, v2, v3) : CST.namespace_import_export) = - let v1 = (* "*" *) token env v1 in - let v2 = (* "as" *) token env v2 in - let v3 = (* identifier *) token env v3 in - R.Tuple [v1; v2; v3] +let map_jsx_identifier (env : env) (tok : CST.jsx_identifier) = + (* pattern [a-zA-Z_$][a-zA-Z\d_$]*-[a-zA-Z\d_$\-]* *) token env tok -let rec map_nested_identifier (env : env) ((v1, v2, v3) : CST.nested_identifier) = - let v1 = - (match v1 with - | `Id tok -> R.Case ("Id", - (* identifier *) token env tok - ) - | `Nested_id x -> R.Case ("Nested_id", - map_nested_identifier env x - ) - ) - in - let v2 = (* "." *) token env v2 in - let v3 = (* identifier *) token env v3 in - R.Tuple [v1; v2; v3] +let map_private_property_identifier (env : env) (tok : CST.private_property_identifier) = + (* private_property_identifier *) token env tok -let map_identifier_ (env : env) (x : CST.identifier_) = - (match x with - | `Unde tok -> R.Case ("Unde", - (* "undefined" *) token env tok - ) - | `Id tok -> R.Case ("Id", - (* identifier *) token env tok - ) - ) +let map_identifier (env : env) (tok : CST.identifier) = + (* identifier *) token env tok -let map_jsx_identifier_ (env : env) (x : CST.jsx_identifier_) = +let map_semicolon (env : env) (x : CST.semicolon) = (match x with - | `Jsx_id tok -> R.Case ("Jsx_id", - (* pattern [a-zA-Z_$][a-zA-Z\d_$]*-[a-zA-Z\d_$\-]* *) token env tok + | `Auto_semi tok -> R.Case ("Auto_semi", + (* automatic_semicolon *) token env tok ) - | `Id tok -> R.Case ("Id", - (* identifier *) token env tok + | `SEMI tok -> R.Case ("SEMI", + (* ";" *) token env tok ) ) @@ -184,7 +155,7 @@ let map_string_ (env : env) (x : CST.string_) = R.List (List.map (fun x -> (match x with | `Unes_double_str_frag tok -> R.Case ("Unes_double_str_frag", - (* pattern "[^\"\\\\]+" *) token env tok + (* pattern "[^\"\\\\\\r\\n]+" *) token env tok ) | `Esc_seq tok -> R.Case ("Esc_seq", (* escape_sequence *) token env tok @@ -201,7 +172,7 @@ let map_string_ (env : env) (x : CST.string_) = R.List (List.map (fun x -> (match x with | `Unes_single_str_frag tok -> R.Case ("Unes_single_str_frag", - (* pattern "[^'\\\\]+" *) token env tok + (* pattern "[^'\\\\\\r\\n]+" *) token env tok ) | `Esc_seq tok -> R.Case ("Esc_seq", (* escape_sequence *) token env tok @@ -214,16 +185,86 @@ let map_string_ (env : env) (x : CST.string_) = ) ) -let map_semicolon (env : env) (x : CST.semicolon) = +let map_jsx_string (env : env) (x : CST.jsx_string) = (match x with - | `Auto_semi tok -> R.Case ("Auto_semi", - (* automatic_semicolon *) token env tok + | `DQUOT_rep_choice_unes_double_jsx_str_frag_DQUOT (v1, v2, v3) -> R.Case ("DQUOT_rep_choice_unes_double_jsx_str_frag_DQUOT", + let v1 = (* "\"" *) token env v1 in + let v2 = + R.List (List.map (fun x -> + (match x with + | `Unes_double_jsx_str_frag tok -> R.Case ("Unes_double_jsx_str_frag", + (* pattern "([^\"&]|&[^#A-Za-z])+" *) token env tok + ) + | `Html_char_ref tok -> R.Case ("Html_char_ref", + (* pattern &(#([xX][0-9a-fA-F]{1,6}|[0-9]{1,5})|[A-Za-z]{1,30}); *) token env tok + ) + ) + ) v2) + in + let v3 = (* "\"" *) token env v3 in + R.Tuple [v1; v2; v3] ) - | `SEMI tok -> R.Case ("SEMI", - (* ";" *) token env tok + | `SQUOT_rep_choice_unes_single_jsx_str_frag_SQUOT (v1, v2, v3) -> R.Case ("SQUOT_rep_choice_unes_single_jsx_str_frag_SQUOT", + let v1 = (* "'" *) token env v1 in + let v2 = + R.List (List.map (fun x -> + (match x with + | `Unes_single_jsx_str_frag tok -> R.Case ("Unes_single_jsx_str_frag", + (* pattern "([^'&]|&[^#A-Za-z])+" *) token env tok + ) + | `Html_char_ref tok -> R.Case ("Html_char_ref", + (* pattern &(#([xX][0-9a-fA-F]{1,6}|[0-9]{1,5})|[A-Za-z]{1,30}); *) token env tok + ) + ) + ) v2) + in + let v3 = (* "'" *) token env v3 in + R.Tuple [v1; v2; v3] + ) + ) + +let map_jsx_identifier_ (env : env) (x : CST.jsx_identifier_) = + (match x with + | `Jsx_id tok -> R.Case ("Jsx_id", + (* pattern [a-zA-Z_$][a-zA-Z\d_$]*-[a-zA-Z\d_$\-]* *) token env tok + ) + | `Id tok -> R.Case ("Id", + (* identifier *) token env tok ) ) +let rec map_anon_choice_id_b8f8ced (env : env) (x : CST.anon_choice_id_b8f8ced) = + (match x with + | `Id tok -> R.Case ("Id", + (* identifier *) token env tok + ) + | `Deco_member_exp x -> R.Case ("Deco_member_exp", + map_decorator_member_expression env x + ) + ) + +and map_decorator_member_expression (env : env) ((v1, v2, v3) : CST.decorator_member_expression) = + let v1 = map_anon_choice_id_b8f8ced env v1 in + let v2 = (* "." *) token env v2 in + let v3 = (* identifier *) token env v3 in + R.Tuple [v1; v2; v3] + +let map_identifier_ (env : env) (x : CST.identifier_) = + (match x with + | `Unde tok -> R.Case ("Unde", + (* "undefined" *) token env tok + ) + | `Id tok -> R.Case ("Id", + (* identifier *) token env tok + ) + ) + +let map_namespace_import (env : env) ((v1, v2, v3) : CST.namespace_import) = + let v1 = (* "*" *) token env v1 in + let v2 = (* "as" *) token env v2 in + let v3 = (* identifier *) token env v3 in + R.Tuple [v1; v2; v3] + let map_anon_choice_rese_id_9a83200 (env : env) (x : CST.anon_choice_rese_id_9a83200) = (match x with | `Choice_get x -> R.Case ("Choice_get", @@ -234,6 +275,21 @@ let map_anon_choice_rese_id_9a83200 (env : env) (x : CST.anon_choice_rese_id_9a8 ) ) +let rec map_nested_identifier (env : env) ((v1, v2, v3) : CST.nested_identifier) = + let v1 = + (match v1 with + | `Id tok -> R.Case ("Id", + (* identifier *) token env tok + ) + | `Nested_id x -> R.Case ("Nested_id", + map_nested_identifier env x + ) + ) + in + let v2 = (* "." *) token env v2 in + let v3 = (* identifier *) token env v3 in + R.Tuple [v1; v2; v3] + let map_anon_choice_id_0e3c97f (env : env) (x : CST.anon_choice_id_0e3c97f) = (match x with | `Id tok -> R.Case ("Id", @@ -244,34 +300,96 @@ let map_anon_choice_id_0e3c97f (env : env) (x : CST.anon_choice_id_0e3c97f) = ) ) -let map_anon_import_export_spec_rep_COMMA_import_export_spec_3a1421d (env : env) ((v1, v2) : CST.anon_import_export_spec_rep_COMMA_import_export_spec_3a1421d) = - let v1 = map_import_export_specifier env v1 in - let v2 = - R.List (List.map (fun (v1, v2) -> - let v1 = (* "," *) token env v1 in - let v2 = map_import_export_specifier env v2 in - R.Tuple [v1; v2] - ) v2) - in +let map_from_clause (env : env) ((v1, v2) : CST.from_clause) = + let v1 = (* "from" *) token env v1 in + let v2 = map_string_ env v2 in R.Tuple [v1; v2] +let map_module_export_name (env : env) (x : CST.module_export_name) = + (match x with + | `Id tok -> R.Case ("Id", + (* identifier *) token env tok + ) + | `Str x -> R.Case ("Str", + map_string_ env x + ) + ) + let map_jsx_namespace_name (env : env) ((v1, v2, v3) : CST.jsx_namespace_name) = let v1 = map_jsx_identifier_ env v1 in let v2 = (* ":" *) token env v2 in let v3 = map_jsx_identifier_ env v3 in R.Tuple [v1; v2; v3] -let map_from_clause (env : env) ((v1, v2) : CST.from_clause) = - let v1 = (* "from" *) token env v1 in - let v2 = map_string_ env v2 in +let map_import_specifier (env : env) (x : CST.import_specifier) = + (match x with + | `Id tok -> R.Case ("Id", + (* identifier *) token env tok + ) + | `Module_export_name_as_id (v1, v2, v3) -> R.Case ("Module_export_name_as_id", + let v1 = map_module_export_name env v1 in + let v2 = (* "as" *) token env v2 in + let v3 = (* identifier *) token env v3 in + R.Tuple [v1; v2; v3] + ) + ) + +let map_export_specifier (env : env) ((v1, v2) : CST.export_specifier) = + let v1 = map_module_export_name env v1 in + let v2 = + (match v2 with + | Some (v1, v2) -> R.Option (Some ( + let v1 = (* "as" *) token env v1 in + let v2 = map_module_export_name env v2 in + R.Tuple [v1; v2] + )) + | None -> R.Option None) + in R.Tuple [v1; v2] -let map_export_clause (env : env) ((v1, v2, v3, v4) : CST.export_clause) = +let map_namespace_export (env : env) ((v1, v2, v3) : CST.namespace_export) = + let v1 = (* "*" *) token env v1 in + let v2 = (* "as" *) token env v2 in + let v3 = map_module_export_name env v3 in + R.Tuple [v1; v2; v3] + +let map_jsx_attribute_name (env : env) (x : CST.jsx_attribute_name) = + (match x with + | `Choice_jsx_id x -> R.Case ("Choice_jsx_id", + map_jsx_identifier_ env x + ) + | `Jsx_name_name x -> R.Case ("Jsx_name_name", + map_jsx_namespace_name env x + ) + ) + +let map_jsx_element_name (env : env) (x : CST.jsx_element_name) = + (match x with + | `Choice_jsx_id x -> R.Case ("Choice_jsx_id", + map_jsx_identifier_ env x + ) + | `Nested_id x -> R.Case ("Nested_id", + map_nested_identifier env x + ) + | `Jsx_name_name x -> R.Case ("Jsx_name_name", + map_jsx_namespace_name env x + ) + ) + +let map_named_imports (env : env) ((v1, v2, v3, v4) : CST.named_imports) = let v1 = (* "{" *) token env v1 in let v2 = (match v2 with - | Some x -> R.Option (Some ( - map_anon_import_export_spec_rep_COMMA_import_export_spec_3a1421d env x + | Some (v1, v2) -> R.Option (Some ( + let v1 = map_import_specifier env v1 in + let v2 = + R.List (List.map (fun (v1, v2) -> + let v1 = (* "," *) token env v1 in + let v2 = map_import_specifier env v2 in + R.Tuple [v1; v2] + ) v2) + in + R.Tuple [v1; v2] )) | None -> R.Option None) in @@ -285,12 +403,20 @@ let map_export_clause (env : env) ((v1, v2, v3, v4) : CST.export_clause) = let v4 = (* "}" *) token env v4 in R.Tuple [v1; v2; v3; v4] -let map_named_imports (env : env) ((v1, v2, v3, v4) : CST.named_imports) = +let map_export_clause (env : env) ((v1, v2, v3, v4) : CST.export_clause) = let v1 = (* "{" *) token env v1 in let v2 = (match v2 with - | Some x -> R.Option (Some ( - map_anon_import_export_spec_rep_COMMA_import_export_spec_3a1421d env x + | Some (v1, v2) -> R.Option (Some ( + let v1 = map_export_specifier env v1 in + let v2 = + R.List (List.map (fun (v1, v2) -> + let v1 = (* "," *) token env v1 in + let v2 = map_export_specifier env v2 in + R.Tuple [v1; v2] + ) v2) + in + R.Tuple [v1; v2] )) | None -> R.Option None) in @@ -302,40 +428,29 @@ let map_named_imports (env : env) ((v1, v2, v3, v4) : CST.named_imports) = | None -> R.Option None) in let v4 = (* "}" *) token env v4 in - R.Tuple [v1; v2; v3; v4] - -let map_jsx_attribute_name (env : env) (x : CST.jsx_attribute_name) = - (match x with - | `Choice_jsx_id x -> R.Case ("Choice_jsx_id", - map_jsx_identifier_ env x - ) - | `Jsx_name_name x -> R.Case ("Jsx_name_name", - map_jsx_namespace_name env x - ) - ) + R.Tuple [v1; v2; v3; v4] -let map_jsx_element_name (env : env) (x : CST.jsx_element_name) = - (match x with - | `Choice_jsx_id x -> R.Case ("Choice_jsx_id", - map_jsx_identifier_ env x - ) - | `Nested_id x -> R.Case ("Nested_id", - map_nested_identifier env x - ) - | `Jsx_name_name x -> R.Case ("Jsx_name_name", - map_jsx_namespace_name env x - ) - ) +let map_jsx_closing_element (env : env) ((v1, v2, v3) : CST.jsx_closing_element) = + let v1 = (* " R.Option (Some ( + map_jsx_element_name env x + )) + | None -> R.Option None) + in + let v3 = (* ">" *) token env v3 in + R.Tuple [v1; v2; v3] let map_import_clause (env : env) (x : CST.import_clause) = (match x with - | `Name_import_export x -> R.Case ("Name_import_export", - map_namespace_import_export env x + | `Name_import x -> R.Case ("Name_import", + map_namespace_import env x ) | `Named_imports x -> R.Case ("Named_imports", map_named_imports env x ) - | `Id_opt_COMMA_choice_name_import_export (v1, v2) -> R.Case ("Id_opt_COMMA_choice_name_import_export", + | `Id_opt_COMMA_choice_name_import (v1, v2) -> R.Case ("Id_opt_COMMA_choice_name_import", let v1 = (* identifier *) token env v1 in let v2 = (match v2 with @@ -343,8 +458,8 @@ let map_import_clause (env : env) (x : CST.import_clause) = let v1 = (* "," *) token env v1 in let v2 = (match v2 with - | `Name_import_export x -> R.Case ("Name_import_export", - map_namespace_import_export env x + | `Name_import x -> R.Case ("Name_import", + map_namespace_import env x ) | `Named_imports x -> R.Case ("Named_imports", map_named_imports env x @@ -359,13 +474,6 @@ let map_import_clause (env : env) (x : CST.import_clause) = ) ) -let map_jsx_closing_element (env : env) ((v1, v2, v3, v4) : CST.jsx_closing_element) = - let v1 = (* "<" *) token env v1 in - let v2 = (* "/" *) token env v2 in - let v3 = map_jsx_element_name env v3 in - let v4 = (* ">" *) token env v4 in - R.Tuple [v1; v2; v3; v4] - let rec map_anon_choice_exp_9818c1b (env : env) (x : CST.anon_choice_exp_9818c1b) = (match x with | `Exp x -> R.Case ("Exp", @@ -376,16 +484,6 @@ let rec map_anon_choice_exp_9818c1b (env : env) (x : CST.anon_choice_exp_9818c1b ) ) -and map_anon_choice_exp_9cd0ed5 (env : env) (x : CST.anon_choice_exp_9cd0ed5) = - (match x with - | `Exp x -> R.Case ("Exp", - map_expression env x - ) - | `Prim_exp x -> R.Case ("Prim_exp", - map_primary_expression env x - ) - ) - and map_anon_choice_id_940079a (env : env) (x : CST.anon_choice_id_940079a) = (match x with | `Id tok -> R.Case ("Id", @@ -446,6 +544,16 @@ and map_anon_choice_pair_pat_3ff9cbe (env : env) (x : CST.anon_choice_pair_pat_3 ) ) +and map_anon_choice_prim_exp_f86628b (env : env) (x : CST.anon_choice_prim_exp_f86628b) = + (match x with + | `Prim_exp x -> R.Case ("Prim_exp", + map_primary_expression env x + ) + | `New_exp x -> R.Case ("New_exp", + map_new_expression env x + ) + ) + and map_anon_opt_opt_choice_exp_rep_COMMA_opt_choice_exp_208ebb4 (env : env) (opt : CST.anon_opt_opt_choice_exp_rep_COMMA_opt_choice_exp_208ebb4) = (match opt with | Some (v1, v2) -> R.Option (Some ( @@ -647,8 +755,17 @@ and map_binary_expression (env : env) (x : CST.binary_expression) = let v3 = map_expression env v3 in R.Tuple [v1; v2; v3] ) - | `Exp_in_exp (v1, v2, v3) -> R.Case ("Exp_in_exp", - let v1 = map_expression env v1 in + | `Choice_exp_in_exp (v1, v2, v3) -> R.Case ("Choice_exp_in_exp", + let v1 = + (match v1 with + | `Exp x -> R.Case ("Exp", + map_expression env x + ) + | `Priv_prop_id tok -> R.Case ("Priv_prop_id", + (* private_property_identifier *) token env tok + ) + ) + in let v2 = (* "in" *) token env v2 in let v3 = map_expression env v3 in R.Tuple [v1; v2; v3] @@ -657,21 +774,26 @@ and map_binary_expression (env : env) (x : CST.binary_expression) = and map_call_expression (env : env) (x : CST.call_expression) = (match x with - | `Exp_choice_args (v1, v2) -> R.Case ("Exp_choice_args", - let v1 = map_expression env v1 in - let v2 = - (match v2 with - | `Args x -> R.Case ("Args", - map_arguments env x + | `Choice_exp_args (v1, v2) -> R.Case ("Choice_exp_args", + let v1 = + (match v1 with + | `Exp x -> R.Case ("Exp", + map_expression env x ) - | `Temp_str x -> R.Case ("Temp_str", - map_template_string env x + | `Import tok -> R.Case ("Import", + (* import *) token env tok ) ) in + let v2 = map_arguments env v2 in + R.Tuple [v1; v2] + ) + | `Choice_prim_exp_temp_str (v1, v2) -> R.Case ("Choice_prim_exp_temp_str", + let v1 = map_anon_choice_prim_exp_f86628b env v1 in + let v2 = map_template_string env v2 in R.Tuple [v1; v2] ) - | `Prim_exp_QMARKDOT_args (v1, v2, v3) -> R.Case ("Prim_exp_QMARKDOT_args", + | `Prim_exp_opt_chain_args (v1, v2, v3) -> R.Case ("Prim_exp_opt_chain_args", let v1 = map_primary_expression env v1 in let v2 = (* "?." *) token env v2 in let v3 = map_arguments env v3 in @@ -718,6 +840,12 @@ and map_class_body (env : env) ((v1, v2, v3) : CST.class_body) = let v2 = map_semicolon env v2 in R.Tuple [v1; v2] ) + | `Class_static_blk x -> R.Case ("Class_static_blk", + map_class_static_block env x + ) + | `SEMI tok -> R.Case ("SEMI", + (* ";" *) token env tok + ) ) ) v2) in @@ -729,6 +857,18 @@ and map_class_heritage (env : env) ((v1, v2) : CST.class_heritage) = let v2 = map_expression env v2 in R.Tuple [v1; v2] +and map_class_static_block (env : env) ((v1, v2, v3) : CST.class_static_block) = + let v1 = (* "static" *) token env v1 in + let v2 = + (match v2 with + | Some tok -> R.Option (Some ( + (* automatic_semicolon *) token env tok + )) + | None -> R.Option None) + in + let v3 = map_statement_block env v3 in + R.Tuple [v1; v2; v3] + and map_declaration (env : env) (x : CST.declaration) = (match x with | `Func_decl (v1, v2, v3, v4, v5, v6) -> R.Case ("Func_decl", @@ -900,36 +1040,32 @@ and map_else_clause (env : env) ((v1, v2) : CST.else_clause) = and map_export_statement (env : env) (x : CST.export_statement) = (match x with - | `Export_choice_STAR_from_clause_choice_auto_semi (v1, v2) -> R.Case ("Export_choice_STAR_from_clause_choice_auto_semi", + | `Export_choice_STAR_from_clause_choice_auto_semi (v1, v2, v3) -> R.Case ("Export_choice_STAR_from_clause_choice_auto_semi", let v1 = (* "export" *) token env v1 in let v2 = (match v2 with - | `STAR_from_clause_choice_auto_semi (v1, v2, v3) -> R.Case ("STAR_from_clause_choice_auto_semi", + | `STAR_from_clause (v1, v2) -> R.Case ("STAR_from_clause", let v1 = (* "*" *) token env v1 in let v2 = map_from_clause env v2 in - let v3 = map_semicolon env v3 in - R.Tuple [v1; v2; v3] + R.Tuple [v1; v2] ) - | `Name_import_export_from_clause_choice_auto_semi (v1, v2, v3) -> R.Case ("Name_import_export_from_clause_choice_auto_semi", - let v1 = map_namespace_import_export env v1 in + | `Name_export_from_clause (v1, v2) -> R.Case ("Name_export_from_clause", + let v1 = map_namespace_export env v1 in let v2 = map_from_clause env v2 in - let v3 = map_semicolon env v3 in - R.Tuple [v1; v2; v3] + R.Tuple [v1; v2] ) - | `Export_clause_from_clause_choice_auto_semi (v1, v2, v3) -> R.Case ("Export_clause_from_clause_choice_auto_semi", + | `Export_clause_from_clause (v1, v2) -> R.Case ("Export_clause_from_clause", let v1 = map_export_clause env v1 in let v2 = map_from_clause env v2 in - let v3 = map_semicolon env v3 in - R.Tuple [v1; v2; v3] - ) - | `Export_clause_choice_auto_semi (v1, v2) -> R.Case ("Export_clause_choice_auto_semi", - let v1 = map_export_clause env v1 in - let v2 = map_semicolon env v2 in R.Tuple [v1; v2] ) + | `Export_clause x -> R.Case ("Export_clause", + map_export_clause env x + ) ) in - R.Tuple [v1; v2] + let v3 = map_semicolon env v3 in + R.Tuple [v1; v2; v3] ) | `Rep_deco_export_choice_decl (v1, v2, v3) -> R.Case ("Rep_deco_export_choice_decl", let v1 = R.List (List.map (map_decorator env) v1) in @@ -969,9 +1105,6 @@ and map_expression (env : env) (x : CST.expression) = | `Choice_jsx_elem x -> R.Case ("Choice_jsx_elem", map_jsx_element_ env x ) - | `Jsx_frag x -> R.Case ("Jsx_frag", - map_jsx_fragment env x - ) | `Assign_exp (v1, v2, v3) -> R.Case ("Assign_exp", let v1 = (match v1 with @@ -1114,11 +1247,6 @@ and map_expression (env : env) (x : CST.expression) = ) ) -and map_expression_statement (env : env) ((v1, v2) : CST.expression_statement) = - let v1 = map_expressions env v1 in - let v2 = map_semicolon env v2 in - R.Tuple [v1; v2] - and map_expressions (env : env) (x : CST.expressions) = (match x with | `Exp x -> R.Case ("Exp", @@ -1179,10 +1307,17 @@ and map_for_header (env : env) ((v1, v2, v3, v4, v5) : CST.for_header) = in R.Tuple [v1; v2; v3] ) - | `Choice_let_choice_id (v1, v2) -> R.Case ("Choice_let_choice_id", + | `Choice_let_choice_id_opt_auto_semi (v1, v2, v3) -> R.Case ("Choice_let_choice_id_opt_auto_semi", let v1 = map_anon_choice_let_ca16eb3 env v1 in let v2 = map_anon_choice_id_940079a env v2 in - R.Tuple [v1; v2] + let v3 = + (match v3 with + | Some tok -> R.Option (Some ( + (* automatic_semicolon *) token env tok + )) + | None -> R.Option None) + in + R.Tuple [v1; v2; v3] ) ) in @@ -1240,6 +1375,11 @@ and map_formal_parameters (env : env) ((v1, v2, v3) : CST.formal_parameters) = let v3 = (* ")" *) token env v3 in R.Tuple [v1; v2; v3] +and map_import_attribute (env : env) ((v1, v2) : CST.import_attribute) = + let v1 = (* "with" *) token env v1 in + let v2 = map_object_ env v2 in + R.Tuple [v1; v2] + and map_initializer_ (env : env) ((v1, v2) : CST.initializer_) = let v1 = (* "=" *) token env v1 in let v2 = map_expression env v2 in @@ -1267,8 +1407,8 @@ and map_jsx_attribute_ (env : env) (x : CST.jsx_attribute_) = and map_jsx_attribute_value (env : env) (x : CST.jsx_attribute_value) = (match x with - | `Str x -> R.Case ("Str", - map_string_ env x + | `Jsx_str x -> R.Case ("Jsx_str", + map_jsx_string env x ) | `Jsx_exp x -> R.Case ("Jsx_exp", map_jsx_expression env x @@ -1276,24 +1416,28 @@ and map_jsx_attribute_value (env : env) (x : CST.jsx_attribute_value) = | `Choice_jsx_elem x -> R.Case ("Choice_jsx_elem", map_jsx_element_ env x ) - | `Jsx_frag x -> R.Case ("Jsx_frag", - map_jsx_fragment env x - ) ) and map_jsx_child (env : env) (x : CST.jsx_child) = (match x with - | `Jsx_text tok -> R.Case ("Jsx_text", - (* pattern [^{}<>]+ *) token env tok - ) - | `Choice_jsx_elem x -> R.Case ("Choice_jsx_elem", - map_jsx_element_ env x - ) - | `Jsx_frag x -> R.Case ("Jsx_frag", - map_jsx_fragment env x + | `Choice_jsx_text x -> R.Case ("Choice_jsx_text", + (match x with + | `Jsx_text tok -> R.Case ("Jsx_text", + (* jsx_text *) token env tok + ) + | `Html_char_ref tok -> R.Case ("Html_char_ref", + (* pattern &(#([xX][0-9a-fA-F]{1,6}|[0-9]{1,5})|[A-Za-z]{1,30}); *) token env tok + ) + | `Choice_jsx_elem x -> R.Case ("Choice_jsx_elem", + map_jsx_element_ env x + ) + | `Jsx_exp x -> R.Case ("Jsx_exp", + map_jsx_expression env x + ) + ) ) - | `Jsx_exp x -> R.Case ("Jsx_exp", - map_jsx_expression env x + | `GT tok -> R.Case ("GT", + (* ">" *) token env tok ) ) @@ -1305,13 +1449,12 @@ and map_jsx_element_ (env : env) (x : CST.jsx_element_) = let v3 = map_jsx_closing_element env v3 in R.Tuple [v1; v2; v3] ) - | `Jsx_self_clos_elem (v1, v2, v3, v4, v5) -> R.Case ("Jsx_self_clos_elem", + | `Jsx_self_clos_elem (v1, v2, v3, v4) -> R.Case ("Jsx_self_clos_elem", let v1 = (* "<" *) token env v1 in let v2 = map_jsx_element_name env v2 in let v3 = R.List (List.map (map_jsx_attribute_ env) v3) in - let v4 = (* "/" *) token env v4 in - let v5 = (* ">" *) token env v5 in - R.Tuple [v1; v2; v3; v4; v5] + let v4 = (* "/>" *) token env v4 in + R.Tuple [v1; v2; v3; v4] ) ) @@ -1337,21 +1480,19 @@ and map_jsx_expression (env : env) ((v1, v2, v3) : CST.jsx_expression) = let v3 = (* "}" *) token env v3 in R.Tuple [v1; v2; v3] -and map_jsx_fragment (env : env) ((v1, v2, v3, v4, v5, v6) : CST.jsx_fragment) = - let v1 = (* "<" *) token env v1 in - let v2 = (* ">" *) token env v2 in - let v3 = R.List (List.map (map_jsx_child env) v3) in - let v4 = (* "<" *) token env v4 in - let v5 = (* "/" *) token env v5 in - let v6 = (* ">" *) token env v6 in - R.Tuple [v1; v2; v3; v4; v5; v6] - -and map_jsx_opening_element (env : env) ((v1, v2, v3, v4) : CST.jsx_opening_element) = +and map_jsx_opening_element (env : env) ((v1, v2, v3) : CST.jsx_opening_element) = let v1 = (* "<" *) token env v1 in - let v2 = map_jsx_element_name env v2 in - let v3 = R.List (List.map (map_jsx_attribute_ env) v3) in - let v4 = (* ">" *) token env v4 in - R.Tuple [v1; v2; v3; v4] + let v2 = + (match v2 with + | Some (v1, v2) -> R.Option (Some ( + let v1 = map_jsx_element_name env v1 in + let v2 = R.List (List.map (map_jsx_attribute_ env) v2) in + R.Tuple [v1; v2] + )) + | None -> R.Option None) + in + let v3 = (* ">" *) token env v3 in + R.Tuple [v1; v2; v3] and map_lexical_declaration (env : env) ((v1, v2, v3, v4) : CST.lexical_declaration) = let v1 = map_anon_choice_let_ca16eb3 env v1 in @@ -1386,13 +1527,25 @@ and map_lhs_expression (env : env) (x : CST.lhs_expression) = ) and map_member_expression (env : env) ((v1, v2, v3) : CST.member_expression) = - let v1 = map_anon_choice_exp_9cd0ed5 env v1 in + let v1 = + (match v1 with + | `Exp x -> R.Case ("Exp", + map_expression env x + ) + | `Prim_exp x -> R.Case ("Prim_exp", + map_primary_expression env x + ) + | `Import tok -> R.Case ("Import", + (* import *) token env tok + ) + ) + in let v2 = (match v2 with | `DOT tok -> R.Case ("DOT", (* "." *) token env tok ) - | `QMARKDOT tok -> R.Case ("QMARKDOT", + | `Opt_chain tok -> R.Case ("Opt_chain", (* "?." *) token env tok ) ) @@ -1413,8 +1566,15 @@ and map_method_definition (env : env) ((v1, v2, v3, v4, v5, v6, v7) : CST.method let v1 = R.List (List.map (map_decorator env) v1) in let v2 = (match v2 with - | Some tok -> R.Option (Some ( - (* "static" *) token env tok + | Some x -> R.Option (Some ( + (match x with + | `Static tok -> R.Case ("Static", + (* "static" *) token env tok + ) + | `Tok_static_pat_3d340f6_get_pat_3d59095 x -> R.Case ("Tok_static_pat_3d340f6_get_pat_3d59095", + map_tok_static_pat_3d340f6_get_pat_3d59095 env x + ) + ) )) | None -> R.Option None) in @@ -1449,16 +1609,7 @@ and map_method_definition (env : env) ((v1, v2, v3, v4, v5, v6, v7) : CST.method and map_new_expression (env : env) ((v1, v2, v3) : CST.new_expression) = let v1 = (* "new" *) token env v1 in - let v2 = - (match v2 with - | `Prim_exp x -> R.Case ("Prim_exp", - map_primary_expression env x - ) - | `New_exp x -> R.Case ("New_exp", - map_new_expression env x - ) - ) - in + let v2 = map_anon_choice_prim_exp_f86628b env v2 in let v3 = (match v3 with | Some x -> R.Option (Some ( @@ -1468,6 +1619,38 @@ and map_new_expression (env : env) ((v1, v2, v3) : CST.new_expression) = in R.Tuple [v1; v2; v3] +and map_object_ (env : env) ((v1, v2, v3) : CST.object_) = + let v1 = (* "{" *) token env v1 in + let v2 = + (match v2 with + | Some (v1, v2) -> R.Option (Some ( + let v1 = + (match v1 with + | Some x -> R.Option (Some ( + map_anon_choice_pair_20c9acd env x + )) + | None -> R.Option None) + in + let v2 = + R.List (List.map (fun (v1, v2) -> + let v1 = (* "," *) token env v1 in + let v2 = + (match v2 with + | Some x -> R.Option (Some ( + map_anon_choice_pair_20c9acd env x + )) + | None -> R.Option None) + in + R.Tuple [v1; v2] + ) v2) + in + R.Tuple [v1; v2] + )) + | None -> R.Option None) + in + let v3 = (* "}" *) token env v3 in + R.Tuple [v1; v2; v3] + and map_parenthesized_expression (env : env) ((v1, v2, v3) : CST.parenthesized_expression) = let v1 = (* "(" *) token env v1 in let v2 = map_expressions env v2 in @@ -1519,7 +1702,7 @@ and map_primary_expression (env : env) (x : CST.primary_expression) = | `Regex (v1, v2, v3, v4) -> R.Case ("Regex", let v1 = (* "/" *) token env v1 in let v2 = (* regex_pattern *) token env v2 in - let v3 = map_imm_tok_slash env v3 in + let v3 = map_imm_tok_prec_p1_slash env v3 in let v4 = (match v4 with | Some tok -> R.Option (Some ( @@ -1538,40 +1721,8 @@ and map_primary_expression (env : env) (x : CST.primary_expression) = | `Null tok -> R.Case ("Null", (* "null" *) token env tok ) - | `Import tok -> R.Case ("Import", - (* import *) token env tok - ) - | `Obj (v1, v2, v3) -> R.Case ("Obj", - let v1 = (* "{" *) token env v1 in - let v2 = - (match v2 with - | Some (v1, v2) -> R.Option (Some ( - let v1 = - (match v1 with - | Some x -> R.Option (Some ( - map_anon_choice_pair_20c9acd env x - )) - | None -> R.Option None) - in - let v2 = - R.List (List.map (fun (v1, v2) -> - let v1 = (* "," *) token env v1 in - let v2 = - (match v2 with - | Some x -> R.Option (Some ( - map_anon_choice_pair_20c9acd env x - )) - | None -> R.Option None) - in - R.Tuple [v1; v2] - ) v2) - in - R.Tuple [v1; v2] - )) - | None -> R.Option None) - in - let v3 = (* "}" *) token env v3 in - R.Tuple [v1; v2; v3] + | `Obj x -> R.Case ("Obj", + map_object_ env x ) | `Array (v1, v2, v3) -> R.Case ("Array", let v1 = (* "[" *) token env v1 in @@ -1581,7 +1732,7 @@ and map_primary_expression (env : env) (x : CST.primary_expression) = let v3 = (* "]" *) token env v3 in R.Tuple [v1; v2; v3] ) - | `Func (v1, v2, v3, v4, v5) -> R.Case ("Func", + | `Func_exp (v1, v2, v3, v4, v5) -> R.Case ("Func_exp", let v1 = (match v1 with | Some tok -> R.Option (Some ( @@ -1673,11 +1824,8 @@ and map_primary_expression (env : env) (x : CST.primary_expression) = let v5 = map_class_body env v5 in R.Tuple [v1; v2; v3; v4; v5] ) - | `Meta_prop (v1, v2, v3) -> R.Case ("Meta_prop", - let v1 = (* "new" *) token env v1 in - let v2 = (* "." *) token env v2 in - let v3 = (* "target" *) token env v3 in - R.Tuple [v1; v2; v3] + | `Meta_prop x -> R.Case ("Meta_prop", + map_meta_property env x ) | `Call_exp x -> R.Case ("Call_exp", map_call_expression env x @@ -1711,20 +1859,16 @@ and map_rest_pattern (env : env) ((v1, v2) : CST.rest_pattern) = let v2 = map_lhs_expression env v2 in R.Tuple [v1; v2] -and map_sequence_expression (env : env) ((v1, v2, v3) : CST.sequence_expression) = +and map_sequence_expression (env : env) ((v1, v2) : CST.sequence_expression) = let v1 = map_expression env v1 in - let v2 = (* "," *) token env v2 in - let v3 = - (match v3 with - | `Seq_exp x -> R.Case ("Seq_exp", - map_sequence_expression env x - ) - | `Exp x -> R.Case ("Exp", - map_expression env x - ) - ) + let v2 = + R.List (List.map (fun (v1, v2) -> + let v1 = (* "," *) token env v1 in + let v2 = map_expression env v2 in + R.Tuple [v1; v2] + ) v2) in - R.Tuple [v1; v2; v3] + R.Tuple [v1; v2] and map_spread_element (env : env) ((v1, v2) : CST.spread_element) = let v1 = (* "..." *) token env v1 in @@ -1736,7 +1880,7 @@ and map_statement (env : env) (x : CST.statement) = | `Export_stmt x -> R.Case ("Export_stmt", map_export_statement env x ) - | `Import_stmt (v1, v2, v3) -> R.Case ("Import_stmt", + | `Import_stmt (v1, v2, v3, v4) -> R.Case ("Import_stmt", let v1 = (* "import" *) token env v1 in let v2 = (match v2 with @@ -1750,16 +1894,25 @@ and map_statement (env : env) (x : CST.statement) = ) ) in - let v3 = map_semicolon env v3 in - R.Tuple [v1; v2; v3] + let v3 = + (match v3 with + | Some x -> R.Option (Some ( + map_import_attribute env x + )) + | None -> R.Option None) + in + let v4 = map_semicolon env v4 in + R.Tuple [v1; v2; v3; v4] ) | `Debu_stmt (v1, v2) -> R.Case ("Debu_stmt", let v1 = (* "debugger" *) token env v1 in let v2 = map_semicolon env v2 in R.Tuple [v1; v2] ) - | `Exp_stmt x -> R.Case ("Exp_stmt", - map_expression_statement env x + | `Exp_stmt (v1, v2) -> R.Case ("Exp_stmt", + let v1 = map_expressions env v1 in + let v2 = map_semicolon env v2 in + R.Tuple [v1; v2] ) | `Decl x -> R.Case ("Decl", map_declaration env x @@ -1791,14 +1944,20 @@ and map_statement (env : env) (x : CST.statement) = let v2 = (* "(" *) token env v2 in let v3 = (match v3 with - | `Lexi_decl x -> R.Case ("Lexi_decl", - map_lexical_declaration env x - ) - | `Var_decl x -> R.Case ("Var_decl", - map_variable_declaration env x + | `Choice_lexi_decl x -> R.Case ("Choice_lexi_decl", + (match x with + | `Lexi_decl x -> R.Case ("Lexi_decl", + map_lexical_declaration env x + ) + | `Var_decl x -> R.Case ("Var_decl", + map_variable_declaration env x + ) + ) ) - | `Exp_stmt x -> R.Case ("Exp_stmt", - map_expression_statement env x + | `Choice_exp_SEMI (v1, v2) -> R.Case ("Choice_exp_SEMI", + let v1 = map_expressions env v1 in + let v2 = (* ";" *) token env v2 in + R.Tuple [v1; v2] ) | `Empty_stmt tok -> R.Case ("Empty_stmt", (* ";" *) token env tok @@ -1807,8 +1966,10 @@ and map_statement (env : env) (x : CST.statement) = in let v4 = (match v4 with - | `Exp_stmt x -> R.Case ("Exp_stmt", - map_expression_statement env x + | `Choice_exp_SEMI (v1, v2) -> R.Case ("Choice_exp_SEMI", + let v1 = map_expressions env v1 in + let v2 = (* ";" *) token env v2 in + R.Tuple [v1; v2] ) | `Empty_stmt tok -> R.Case ("Empty_stmt", (* ";" *) token env tok @@ -1850,7 +2011,13 @@ and map_statement (env : env) (x : CST.statement) = let v2 = map_statement env v2 in let v3 = (* "while" *) token env v3 in let v4 = map_parenthesized_expression env v4 in - let v5 = map_semicolon env v5 in + let v5 = + (match v5 with + | Some x -> R.Option (Some ( + map_semicolon env x + )) + | None -> R.Option None) + in R.Tuple [v1; v2; v3; v4; v5] ) | `Try_stmt (v1, v2, v3, v4) -> R.Case ("Try_stmt", @@ -1945,7 +2112,16 @@ and map_statement_block (env : env) ((v1, v2, v3, v4) : CST.statement_block) = R.Tuple [v1; v2; v3; v4] and map_subscript_expression (env : env) ((v1, v2, v3, v4, v5) : CST.subscript_expression) = - let v1 = map_anon_choice_exp_9cd0ed5 env v1 in + let v1 = + (match v1 with + | `Exp x -> R.Case ("Exp", + map_expression env x + ) + | `Prim_exp x -> R.Case ("Prim_exp", + map_primary_expression env x + ) + ) + in let v2 = (match v2 with | Some tok -> R.Option (Some ( @@ -2066,6 +2242,9 @@ let map_program (env : env) ((v1, v2) : CST.program) = let map_comment (env : env) (tok : CST.comment) = (* comment *) token env tok +let map_html_comment (env : env) (tok : CST.html_comment) = + (* html_comment *) token env tok + let dump_tree root = map_program () root |> Tree_sitter_run.Raw_tree.to_channel stdout @@ -2073,6 +2252,7 @@ let dump_tree root = let map_extra (env : env) (x : CST.extra) = match x with | `Comment (_loc, x) -> ("comment", "comment", map_comment env x) + | `Html_comment (_loc, x) -> ("html_comment", "html_comment", map_html_comment env x) let dump_extras (extras : CST.extras) = List.iter (fun extra -> diff --git a/lib/CST.ml b/lib/CST.ml index f93cf43..815ca6b 100644 --- a/lib/CST.ml +++ b/lib/CST.ml @@ -8,89 +8,83 @@ open! Sexplib.Conv open Tree_sitter_run -type identifier = Token.t +type html_character_reference = + Token.t (* pattern &(#([xX][0-9a-fA-F]{1,6}|[0-9]{1,5})|[A-Za-z]{1,30}); *) -type unescaped_double_string_fragment = Token.t (* pattern "[^\"\\\\]+" *) +type template_chars = Token.t type anon_choice_let_ca16eb3 = [ `Let of Token.t (* "let" *) | `Const of Token.t (* "const" *) ] -type jsx_text = Token.t (* pattern [^{}<>]+ *) +type escape_sequence = Token.t type import = Token.t -type escape_sequence = Token.t - type hash_bang_line = Token.t (* pattern #!.* *) -type private_property_identifier = Token.t - -type ternary_qmark = Token.t - -type jsx_identifier = - Token.t (* pattern [a-zA-Z_$][a-zA-Z\d_$]*-[a-zA-Z\d_$\-]* *) +type tok_static_pat_3d340f6_get_pat_3d59095 = Token.t -type unescaped_single_string_fragment = Token.t (* pattern "[^'\\\\]+" *) +type unescaped_single_jsx_string_fragment = + Token.t (* pattern "([^'&]|&[^#A-Za-z])+" *) -type template_chars = Token.t +type unescaped_double_string_fragment = + Token.t (* pattern "[^\"\\\\\\r\\n]+" *) -type number = Token.t +type automatic_semicolon = Token.t -type regex_flags = Token.t (* pattern [a-z]+ *) +type unescaped_single_string_fragment = + Token.t (* pattern "[^'\\\\\\r\\n]+" *) -type regex_pattern = Token.t +type unescaped_double_jsx_string_fragment = + Token.t (* pattern "([^\"&]|&[^#A-Za-z])+" *) -type anon_choice_PLUSPLUS_e498e28 = [ - `PLUSPLUS of Token.t (* "++" *) - | `DASHDASH of Token.t (* "--" *) +type meta_property = [ + `New_DOT_target of ( + Token.t (* "new" *) * Token.t (* "." *) * Token.t (* "target" *) + ) + | `Import_DOT_meta of ( + Token.t (* "import" *) * Token.t (* "." *) * Token.t (* "meta" *) + ) ] -type automatic_semicolon = Token.t - type reserved_identifier = [ `Get of Token.t (* "get" *) | `Set of Token.t (* "set" *) | `Async of Token.t (* "async" *) | `Static of Token.t (* "static" *) | `Export of Token.t (* "export" *) + | `Let of Token.t (* "let" *) ] -type imm_tok_slash = Token.t (* "/" *) +type imm_tok_prec_p1_slash = Token.t (* "/" *) -type import_export_specifier = ( - identifier (*tok*) - * (Token.t (* "as" *) * identifier (*tok*)) option -) +type ternary_qmark = Token.t -type anon_choice_id_b8f8ced = [ - `Id of identifier (*tok*) - | `Deco_member_exp of decorator_member_expression +type regex_pattern = Token.t + +type jsx_text = Token.t + +type number = Token.t + +type anon_choice_PLUSPLUS_e498e28 = [ + `PLUSPLUS of Token.t (* "++" *) + | `DASHDASH of Token.t (* "--" *) ] -and decorator_member_expression = ( - anon_choice_id_b8f8ced * Token.t (* "." *) * identifier (*tok*) -) +type regex_flags = Token.t (* pattern [a-z]+ *) -type namespace_import_export = ( - Token.t (* "*" *) * Token.t (* "as" *) * identifier (*tok*) -) +type jsx_identifier = + Token.t (* pattern [a-zA-Z_$][a-zA-Z\d_$]*-[a-zA-Z\d_$\-]* *) -type nested_identifier = ( - [ `Id of identifier (*tok*) | `Nested_id of nested_identifier ] - * Token.t (* "." *) - * identifier (*tok*) -) +type private_property_identifier = Token.t -type identifier_ = [ - `Unde of Token.t (* "undefined" *) - | `Id of identifier (*tok*) -] +type identifier = Token.t -type jsx_identifier_ = [ - `Jsx_id of jsx_identifier (*tok*) - | `Id of identifier (*tok*) +type semicolon = [ + `Auto_semi of automatic_semicolon (*tok*) + | `SEMI of Token.t (* ";" *) ] type string_ = [ @@ -114,44 +108,90 @@ type string_ = [ ) ] -type semicolon = [ - `Auto_semi of automatic_semicolon (*tok*) - | `SEMI of Token.t (* ";" *) +type jsx_string = [ + `DQUOT_rep_choice_unes_double_jsx_str_frag_DQUOT of ( + Token.t (* "\"" *) + * [ + `Unes_double_jsx_str_frag of + unescaped_double_jsx_string_fragment (*tok*) + | `Html_char_ref of html_character_reference (*tok*) + ] + list (* zero or more *) + * Token.t (* "\"" *) + ) + | `SQUOT_rep_choice_unes_single_jsx_str_frag_SQUOT of ( + Token.t (* "'" *) + * [ + `Unes_single_jsx_str_frag of + unescaped_single_jsx_string_fragment (*tok*) + | `Html_char_ref of html_character_reference (*tok*) + ] + list (* zero or more *) + * Token.t (* "'" *) + ) +] + +type jsx_identifier_ = [ + `Jsx_id of jsx_identifier (*tok*) + | `Id of identifier (*tok*) ] +type anon_choice_id_b8f8ced = [ + `Id of identifier (*tok*) + | `Deco_member_exp of decorator_member_expression +] + +and decorator_member_expression = ( + anon_choice_id_b8f8ced * Token.t (* "." *) * identifier (*tok*) +) + +type identifier_ = [ + `Unde of Token.t (* "undefined" *) + | `Id of identifier (*tok*) +] + +type namespace_import = ( + Token.t (* "*" *) * Token.t (* "as" *) * identifier (*tok*) +) + type anon_choice_rese_id_9a83200 = [ `Choice_get of reserved_identifier | `Id of identifier (*tok*) ] +type nested_identifier = ( + [ `Id of identifier (*tok*) | `Nested_id of nested_identifier ] + * Token.t (* "." *) + * identifier (*tok*) +) + type anon_choice_id_0e3c97f = [ `Id of identifier (*tok*) | `Choice_get of reserved_identifier ] -type anon_import_export_spec_rep_COMMA_import_export_spec_3a1421d = ( - import_export_specifier - * (Token.t (* "," *) * import_export_specifier) list (* zero or more *) -) +type from_clause = (Token.t (* "from" *) * string_) + +type module_export_name = [ `Id of identifier (*tok*) | `Str of string_ ] type jsx_namespace_name = ( jsx_identifier_ * Token.t (* ":" *) * jsx_identifier_ ) -type from_clause = (Token.t (* "from" *) * string_) +type import_specifier = [ + `Id of identifier (*tok*) + | `Module_export_name_as_id of ( + module_export_name * Token.t (* "as" *) * identifier (*tok*) + ) +] -type export_clause = ( - Token.t (* "{" *) - * anon_import_export_spec_rep_COMMA_import_export_spec_3a1421d option - * Token.t (* "," *) option - * Token.t (* "}" *) +type export_specifier = ( + module_export_name + * (Token.t (* "as" *) * module_export_name) option ) -type named_imports = ( - Token.t (* "{" *) - * anon_import_export_spec_rep_COMMA_import_export_spec_3a1421d option - * Token.t (* "," *) option - * Token.t (* "}" *) +type namespace_export = ( + Token.t (* "*" *) * Token.t (* "as" *) * module_export_name ) type jsx_attribute_name = [ @@ -165,15 +205,43 @@ type jsx_element_name = [ | `Jsx_name_name of jsx_namespace_name ] +type named_imports = ( + Token.t (* "{" *) + * ( + import_specifier + * (Token.t (* "," *) * import_specifier) list (* zero or more *) + ) + option + * Token.t (* "," *) option + * Token.t (* "}" *) +) + +type export_clause = ( + Token.t (* "{" *) + * ( + export_specifier + * (Token.t (* "," *) * export_specifier) list (* zero or more *) + ) + option + * Token.t (* "," *) option + * Token.t (* "}" *) +) + +type jsx_closing_element = ( + Token.t (* "" *) +) + type import_clause = [ - `Name_import_export of namespace_import_export + `Name_import of namespace_import | `Named_imports of named_imports - | `Id_opt_COMMA_choice_name_import_export of ( + | `Id_opt_COMMA_choice_name_import of ( identifier (*tok*) * ( Token.t (* "," *) * [ - `Name_import_export of namespace_import_export + `Name_import of namespace_import | `Named_imports of named_imports ] ) @@ -181,21 +249,11 @@ type import_clause = [ ) ] -type jsx_closing_element = ( - Token.t (* "<" *) * Token.t (* "/" *) * jsx_element_name - * Token.t (* ">" *) -) - type anon_choice_exp_9818c1b = [ `Exp of expression | `Spread_elem of spread_element ] -and anon_choice_exp_9cd0ed5 = [ - `Exp of expression - | `Prim_exp of primary_expression -] - and anon_choice_id_940079a = [ `Id of identifier (*tok*) | `Dest_pat of destructuring_pattern @@ -222,6 +280,11 @@ and anon_choice_pair_pat_3ff9cbe = [ | `Choice_id of anon_choice_id_0e3c97f ] +and anon_choice_prim_exp_f86628b = [ + `Prim_exp of primary_expression + | `New_exp of new_expression +] + and anon_opt_opt_choice_exp_rep_COMMA_opt_choice_exp_208ebb4 = (anon_choice_exp_9818c1b option * anon_rep_COMMA_opt_choice_exp_ca698a5) option @@ -269,15 +332,25 @@ and binary_expression = [ | `Exp_GT_exp of (expression * Token.t (* ">" *) * expression) | `Exp_QMARKQMARK_exp of (expression * Token.t (* "??" *) * expression) | `Exp_inst_exp of (expression * Token.t (* "instanceof" *) * expression) - | `Exp_in_exp of (expression * Token.t (* "in" *) * expression) + | `Choice_exp_in_exp of ( + [ + `Exp of expression + | `Priv_prop_id of private_property_identifier (*tok*) + ] + * Token.t (* "in" *) + * expression + ) ] and call_expression = [ - `Exp_choice_args of ( - expression - * [ `Args of arguments | `Temp_str of template_string ] + `Choice_exp_args of ( + [ `Exp of expression | `Import of import (*tok*) ] + * arguments + ) + | `Choice_prim_exp_temp_str of ( + anon_choice_prim_exp_f86628b * template_string ) - | `Prim_exp_QMARKDOT_args of ( + | `Prim_exp_opt_chain_args of ( primary_expression * Token.t (* "?." *) * arguments ) ] @@ -295,6 +368,8 @@ and class_body = ( * [ `Meth_defi_opt_SEMI of (method_definition * Token.t (* ";" *) option) | `Field_defi_choice_auto_semi of (field_definition * semicolon) + | `Class_static_blk of class_static_block + | `SEMI of Token.t (* ";" *) ] list (* zero or more *) * Token.t (* "}" *) @@ -302,6 +377,12 @@ and class_body = ( and class_heritage = (Token.t (* "extends" *) * expression) +and class_static_block = ( + Token.t (* "static" *) + * automatic_semicolon (*tok*) option + * statement_block +) + and declaration = [ `Func_decl of ( Token.t (* "async" *) option @@ -372,17 +453,12 @@ and export_statement = [ `Export_choice_STAR_from_clause_choice_auto_semi of ( Token.t (* "export" *) * [ - `STAR_from_clause_choice_auto_semi of ( - Token.t (* "*" *) * from_clause * semicolon - ) - | `Name_import_export_from_clause_choice_auto_semi of ( - namespace_import_export * from_clause * semicolon - ) - | `Export_clause_from_clause_choice_auto_semi of ( - export_clause * from_clause * semicolon - ) - | `Export_clause_choice_auto_semi of (export_clause * semicolon) + `STAR_from_clause of (Token.t (* "*" *) * from_clause) + | `Name_export_from_clause of (namespace_export * from_clause) + | `Export_clause_from_clause of (export_clause * from_clause) + | `Export_clause of export_clause ] + * semicolon ) | `Rep_deco_export_choice_decl of ( decorator list (* zero or more *) @@ -403,7 +479,6 @@ and export_statement = [ and expression = [ `Prim_exp of primary_expression | `Choice_jsx_elem of jsx_element_ - | `Jsx_frag of jsx_fragment | `Assign_exp of ( [ `Paren_exp of parenthesized_expression @@ -462,8 +537,6 @@ and expression = [ ) ] -and expression_statement = (expressions * semicolon) - and expressions = [ `Exp of expression | `Seq_exp of sequence_expression ] and field_definition = ( @@ -487,8 +560,10 @@ and for_header = ( * anon_choice_id_940079a * initializer_ option ) - | `Choice_let_choice_id of ( - anon_choice_let_ca16eb3 * anon_choice_id_940079a + | `Choice_let_choice_id_opt_auto_semi of ( + anon_choice_let_ca16eb3 + * anon_choice_id_940079a + * automatic_semicolon (*tok*) option ) ] * [ `In of Token.t (* "in" *) | `Of of Token.t (* "of" *) ] @@ -512,6 +587,8 @@ and formal_parameters = ( * Token.t (* ")" *) ) +and import_attribute = (Token.t (* "with" *) * object_) + and initializer_ = (Token.t (* "=" *) * expression) and jsx_attribute_ = [ @@ -523,17 +600,19 @@ and jsx_attribute_ = [ ] and jsx_attribute_value = [ - `Str of string_ + `Jsx_str of jsx_string | `Jsx_exp of jsx_expression | `Choice_jsx_elem of jsx_element_ - | `Jsx_frag of jsx_fragment ] and jsx_child = [ - `Jsx_text of jsx_text (*tok*) - | `Choice_jsx_elem of jsx_element_ - | `Jsx_frag of jsx_fragment - | `Jsx_exp of jsx_expression + `Choice_jsx_text of [ + `Jsx_text of jsx_text (*tok*) + | `Html_char_ref of html_character_reference (*tok*) + | `Choice_jsx_elem of jsx_element_ + | `Jsx_exp of jsx_expression + ] + | `GT of Token.t (* ">" *) ] and jsx_element_ = [ @@ -546,8 +625,7 @@ and jsx_element_ = [ Token.t (* "<" *) * jsx_element_name * jsx_attribute_ list (* zero or more *) - * Token.t (* "/" *) - * Token.t (* ">" *) + * Token.t (* "/>" *) ) ] @@ -562,19 +640,9 @@ and jsx_expression = ( * Token.t (* "}" *) ) -and jsx_fragment = ( - Token.t (* "<" *) - * Token.t (* ">" *) - * jsx_child list (* zero or more *) - * Token.t (* "<" *) - * Token.t (* "/" *) - * Token.t (* ">" *) -) - and jsx_opening_element = ( Token.t (* "<" *) - * jsx_element_name - * jsx_attribute_ list (* zero or more *) + * (jsx_element_name * jsx_attribute_ list (* zero or more *)) option * Token.t (* ">" *) ) @@ -594,8 +662,12 @@ and lhs_expression = [ ] and member_expression = ( - anon_choice_exp_9cd0ed5 - * [ `DOT of Token.t (* "." *) | `QMARKDOT of Token.t (* "?." *) ] + [ + `Exp of expression + | `Prim_exp of primary_expression + | `Import of import (*tok*) + ] + * [ `DOT of Token.t (* "." *) | `Opt_chain of Token.t (* "?." *) ] * [ `Priv_prop_id of private_property_identifier (*tok*) | `Id of identifier (*tok*) @@ -604,7 +676,12 @@ and member_expression = ( and method_definition = ( decorator list (* zero or more *) - * Token.t (* "static" *) option + * [ + `Static of Token.t (* "static" *) + | `Tok_static_pat_3d340f6_get_pat_3d59095 of + tok_static_pat_3d340f6_get_pat_3d59095 + ] + option * Token.t (* "async" *) option * [ `Get of Token.t (* "get" *) @@ -619,10 +696,21 @@ and method_definition = ( and new_expression = ( Token.t (* "new" *) - * [ `Prim_exp of primary_expression | `New_exp of new_expression ] + * anon_choice_prim_exp_f86628b * arguments option ) +and object_ = ( + Token.t (* "{" *) + * ( + anon_choice_pair_20c9acd option + * (Token.t (* "," *) * anon_choice_pair_20c9acd option) + list (* zero or more *) + ) + option + * Token.t (* "}" *) +) + and parenthesized_expression = ( Token.t (* "(" *) * expressions * Token.t (* ")" *) ) @@ -646,29 +734,19 @@ and primary_expression = [ | `Regex of ( Token.t (* "/" *) * regex_pattern (*tok*) - * imm_tok_slash (*tok*) + * imm_tok_prec_p1_slash (*tok*) * regex_flags (*tok*) option ) | `True of Token.t (* "true" *) | `False of Token.t (* "false" *) | `Null of Token.t (* "null" *) - | `Import of import (*tok*) - | `Obj of ( - Token.t (* "{" *) - * ( - anon_choice_pair_20c9acd option - * (Token.t (* "," *) * anon_choice_pair_20c9acd option) - list (* zero or more *) - ) - option - * Token.t (* "}" *) - ) + | `Obj of object_ | `Array of ( Token.t (* "[" *) * anon_opt_opt_choice_exp_rep_COMMA_opt_choice_exp_208ebb4 * Token.t (* "]" *) ) - | `Func of ( + | `Func_exp of ( Token.t (* "async" *) option * Token.t (* "function" *) * identifier (*tok*) option @@ -699,9 +777,7 @@ and primary_expression = [ * class_heritage option * class_body ) - | `Meta_prop of ( - Token.t (* "new" *) * Token.t (* "." *) * Token.t (* "target" *) - ) + | `Meta_prop of meta_property | `Call_exp of call_expression ] @@ -717,8 +793,7 @@ and rest_pattern = (Token.t (* "..." *) * lhs_expression) and sequence_expression = ( expression - * Token.t (* "," *) - * [ `Seq_exp of sequence_expression | `Exp of expression ] + * (Token.t (* "," *) * expression) list (* zero or more *) ) and spread_element = (Token.t (* "..." *) * expression) @@ -731,10 +806,11 @@ and statement = [ `Import_clause_from_clause of (import_clause * from_clause) | `Str of string_ ] + * import_attribute option * semicolon ) | `Debu_stmt of (Token.t (* "debugger" *) * semicolon) - | `Exp_stmt of expression_statement + | `Exp_stmt of (expressions * semicolon) | `Decl of declaration | `Stmt_blk of statement_block | `If_stmt of ( @@ -750,13 +826,15 @@ and statement = [ Token.t (* "for" *) * Token.t (* "(" *) * [ - `Lexi_decl of lexical_declaration - | `Var_decl of variable_declaration - | `Exp_stmt of expression_statement + `Choice_lexi_decl of [ + `Lexi_decl of lexical_declaration + | `Var_decl of variable_declaration + ] + | `Choice_exp_SEMI of (expressions * Token.t (* ";" *)) | `Empty_stmt of Token.t (* ";" *) ] * [ - `Exp_stmt of expression_statement + `Choice_exp_SEMI of (expressions * Token.t (* ";" *)) | `Empty_stmt of Token.t (* ";" *) ] * expressions option @@ -773,8 +851,11 @@ and statement = [ Token.t (* "while" *) * parenthesized_expression * statement ) | `Do_stmt of ( - Token.t (* "do" *) * statement * Token.t (* "while" *) - * parenthesized_expression * semicolon + Token.t (* "do" *) + * statement + * Token.t (* "while" *) + * parenthesized_expression + * semicolon option ) | `Try_stmt of ( Token.t (* "try" *) @@ -809,7 +890,7 @@ and statement_block = ( ) and subscript_expression = ( - anon_choice_exp_9cd0ed5 + [ `Exp of expression | `Prim_exp of primary_expression ] * Token.t (* "?." *) option * Token.t (* "[" *) * expressions @@ -870,35 +951,35 @@ type program = ( * statement list (* zero or more *) ) +type false_ (* inlined *) = Token.t (* "false" *) + type true_ (* inlined *) = Token.t (* "true" *) +type comment (* inlined *) = Token.t + type this (* inlined *) = Token.t (* "this" *) -type false_ (* inlined *) = Token.t (* "false" *) +type undefined (* inlined *) = Token.t (* "undefined" *) type empty_statement (* inlined *) = Token.t (* ";" *) -type null (* inlined *) = Token.t (* "null" *) - -type comment (* inlined *) = Token.t +type super (* inlined *) = Token.t (* "super" *) -type undefined (* inlined *) = Token.t (* "undefined" *) +type html_comment (* inlined *) = Token.t -type meta_property (* inlined *) = ( - Token.t (* "new" *) * Token.t (* "." *) * Token.t (* "target" *) -) +type null (* inlined *) = Token.t (* "null" *) -type super (* inlined *) = Token.t (* "super" *) +type optional_chain (* inlined *) = Token.t (* "?." *) type regex (* inlined *) = ( Token.t (* "/" *) * regex_pattern (*tok*) - * imm_tok_slash (*tok*) + * imm_tok_prec_p1_slash (*tok*) * regex_flags (*tok*) option ) -type break_statement (* inlined *) = ( - Token.t (* "break" *) +type continue_statement (* inlined *) = ( + Token.t (* "continue" *) * identifier (*tok*) option * semicolon ) @@ -907,21 +988,12 @@ type debugger_statement (* inlined *) = ( Token.t (* "debugger" *) * semicolon ) -type continue_statement (* inlined *) = ( - Token.t (* "continue" *) +type break_statement (* inlined *) = ( + Token.t (* "break" *) * identifier (*tok*) option * semicolon ) -type import_statement (* inlined *) = ( - Token.t (* "import" *) - * [ - `Import_clause_from_clause of (import_clause * from_clause) - | `Str of string_ - ] - * semicolon -) - type array_ (* inlined *) = ( Token.t (* "[" *) * anon_opt_opt_choice_exp_rep_COMMA_opt_choice_exp_208ebb4 @@ -1007,10 +1079,15 @@ type computed_property_name (* inlined *) = ( ) type do_statement (* inlined *) = ( - Token.t (* "do" *) * statement * Token.t (* "while" *) - * parenthesized_expression * semicolon + Token.t (* "do" *) + * statement + * Token.t (* "while" *) + * parenthesized_expression + * semicolon option ) +type expression_statement (* inlined *) = (expressions * semicolon) + type for_in_statement (* inlined *) = ( Token.t (* "for" *) * Token.t (* "await" *) option @@ -1022,32 +1099,37 @@ type for_statement (* inlined *) = ( Token.t (* "for" *) * Token.t (* "(" *) * [ - `Lexi_decl of lexical_declaration - | `Var_decl of variable_declaration - | `Exp_stmt of expression_statement + `Choice_lexi_decl of [ + `Lexi_decl of lexical_declaration + | `Var_decl of variable_declaration + ] + | `Choice_exp_SEMI of (expressions * Token.t (* ";" *)) + | `Empty_stmt of Token.t (* ";" *) + ] + * [ + `Choice_exp_SEMI of (expressions * Token.t (* ";" *)) | `Empty_stmt of Token.t (* ";" *) ] - * [ `Exp_stmt of expression_statement | `Empty_stmt of Token.t (* ";" *) ] * expressions option * Token.t (* ")" *) * statement ) -type function_ (* inlined *) = ( +type function_declaration (* inlined *) = ( Token.t (* "async" *) option * Token.t (* "function" *) - * identifier (*tok*) option + * identifier (*tok*) * call_signature * statement_block + * automatic_semicolon (*tok*) option ) -type function_declaration (* inlined *) = ( +type function_expression (* inlined *) = ( Token.t (* "async" *) option * Token.t (* "function" *) - * identifier (*tok*) + * identifier (*tok*) option * call_signature * statement_block - * automatic_semicolon (*tok*) option ) type generator_function (* inlined *) = ( @@ -1076,6 +1158,16 @@ type if_statement (* inlined *) = ( * else_clause option ) +type import_statement (* inlined *) = ( + Token.t (* "import" *) + * [ + `Import_clause_from_clause of (import_clause * from_clause) + | `Str of string_ + ] + * import_attribute option + * semicolon +) + type jsx_attribute (* inlined *) = ( jsx_attribute_name * (Token.t (* "=" *) * jsx_attribute_value) option @@ -1091,25 +1183,13 @@ type jsx_self_closing_element (* inlined *) = ( Token.t (* "<" *) * jsx_element_name * jsx_attribute_ list (* zero or more *) - * Token.t (* "/" *) - * Token.t (* ">" *) + * Token.t (* "/>" *) ) type labeled_statement (* inlined *) = ( anon_choice_id_0e3c97f * Token.t (* ":" *) * statement ) -type object_ (* inlined *) = ( - Token.t (* "{" *) - * ( - anon_choice_pair_20c9acd option - * (Token.t (* "," *) * anon_choice_pair_20c9acd option) - list (* zero or more *) - ) - option - * Token.t (* "}" *) -) - type object_assignment_pattern (* inlined *) = ( [ `Choice_choice_get of anon_choice_rese_id_9a83200 @@ -1191,6 +1271,9 @@ type yield_expression (* inlined *) = ( ] ) -type extra = [ `Comment of Loc.t * comment ] +type extra = [ + `Comment of Loc.t * comment + | `Html_comment of Loc.t * html_comment +] type extras = extra list diff --git a/lib/Parse.ml b/lib/Parse.ml index 2ab5ced..67475b7 100644 --- a/lib/Parse.ml +++ b/lib/Parse.ml @@ -28,41 +28,55 @@ let parse_source_file src_file = let extras = [ "comment"; + "html_comment"; ] let children_regexps : (string * Run.exp option) list = [ - "imm_tok_slash", None; - "super", None; - "ternary_qmark", None; + "html_comment", None; + "regex_flags", None; "comment", None; - "jsx_identifier", None; + "unescaped_double_jsx_string_fragment", None; + "template_chars", None; + "empty_statement", None; + "number", None; + "automatic_semicolon", None; "hash_bang_line", None; - "unescaped_double_string_fragment", None; + "imm_tok_prec_p1_slash", None; + "jsx_text", None; + "ternary_qmark", None; + "escape_sequence", None; "false", None; - "empty_statement", None; + "unescaped_double_string_fragment", None; "regex_pattern", None; - "true", None; - "automatic_semicolon", None; "identifier", None; - "unescaped_single_string_fragment", None; - "escape_sequence", None; - "template_chars", None; - "import", None; - "number", None; + "jsx_identifier", None; + "html_character_reference", None; + "super", None; + "true", None; + "tok_static_pat_3d340f6_get_pat_3d59095", None; + "meta_property", + Some ( + Alt [| + Seq [ + Token (Literal "new"); + Token (Literal "."); + Token (Literal "target"); + ]; + Seq [ + Token (Literal "import"); + Token (Literal "."); + Token (Literal "meta"); + ]; + |]; + ); "undefined", None; "this", None; - "regex_flags", None; - "jsx_text", None; + "import", None; + "unescaped_single_string_fragment", None; "private_property_identifier", None; "null", None; - "meta_property", - Some ( - Seq [ - Token (Literal "new"); - Token (Literal "."); - Token (Literal "target"); - ]; - ); + "unescaped_single_jsx_string_fragment", None; + "optional_chain", None; "debugger_statement", Some ( Seq [ @@ -73,43 +87,17 @@ let children_regexps : (string * Run.exp option) list = [ |]; ]; ); - "import_export_specifier", + "regex", Some ( Seq [ - Token (Name "identifier"); + Token (Literal "/"); + Token (Name "regex_pattern"); + Token (Name "imm_tok_prec_p1_slash"); Opt ( - Seq [ - Token (Literal "as"); - Token (Name "identifier"); - ]; + Token (Name "regex_flags"); ); ]; ); - "jsx_namespace_name", - Some ( - Seq [ - Alt [| - Token (Name "jsx_identifier"); - Token (Name "identifier"); - |]; - Token (Literal ":"); - Alt [| - Token (Name "jsx_identifier"); - Token (Name "identifier"); - |]; - ]; - ); - "nested_identifier", - Some ( - Seq [ - Alt [| - Token (Name "identifier"); - Token (Name "nested_identifier"); - |]; - Token (Literal "."); - Token (Name "identifier"); - ]; - ); "continue_statement", Some ( Seq [ @@ -123,7 +111,7 @@ let children_regexps : (string * Run.exp option) list = [ |]; ]; ); - "namespace_import_export", + "namespace_import", Some ( Seq [ Token (Literal "*"); @@ -142,6 +130,17 @@ let children_regexps : (string * Run.exp option) list = [ Token (Name "identifier"); ]; ); + "nested_identifier", + Some ( + Seq [ + Alt [| + Token (Name "identifier"); + Token (Name "nested_identifier"); + |]; + Token (Literal "."); + Token (Name "identifier"); + ]; + ); "break_statement", Some ( Seq [ @@ -155,6 +154,20 @@ let children_regexps : (string * Run.exp option) list = [ |]; ]; ); + "jsx_namespace_name", + Some ( + Seq [ + Alt [| + Token (Name "jsx_identifier"); + Token (Name "identifier"); + |]; + Token (Literal ":"); + Alt [| + Token (Name "jsx_identifier"); + Token (Name "identifier"); + |]; + ]; + ); "string", Some ( Alt [| @@ -180,28 +193,104 @@ let children_regexps : (string * Run.exp option) list = [ ]; |]; ); - "regex", + "jsx_string", + Some ( + Alt [| + Seq [ + Token (Literal "\""); + Repeat ( + Alt [| + Token (Name "unescaped_double_jsx_string_fragment"); + Token (Name "html_character_reference"); + |]; + ); + Token (Literal "\""); + ]; + Seq [ + Token (Literal "'"); + Repeat ( + Alt [| + Token (Name "unescaped_single_jsx_string_fragment"); + Token (Name "html_character_reference"); + |]; + ); + Token (Literal "'"); + ]; + |]; + ); + "jsx_closing_element", Some ( Seq [ - Token (Literal "/"); - Token (Name "regex_pattern"); - Token (Name "imm_tok_slash"); + Token (Literal ""); + ]; + ); + "from_clause", + Some ( + Seq [ + Token (Literal "from"); + Token (Name "string"); + ]; + ); + "module_export_name", + Some ( + Alt [| + Token (Name "identifier"); + Token (Name "string"); + |]; + ); + "import_specifier", + Some ( + Alt [| + Token (Name "identifier"); + Seq [ + Token (Name "module_export_name"); + Token (Literal "as"); + Token (Name "identifier"); + ]; + |]; + ); + "export_specifier", + Some ( + Seq [ + Token (Name "module_export_name"); + Opt ( + Seq [ + Token (Literal "as"); + Token (Name "module_export_name"); + ]; ); ]; ); + "namespace_export", + Some ( + Seq [ + Token (Literal "*"); + Token (Literal "as"); + Token (Name "module_export_name"); + ]; + ); "named_imports", Some ( Seq [ Token (Literal "{"); Opt ( Seq [ - Token (Name "import_export_specifier"); + Token (Name "import_specifier"); Repeat ( Seq [ Token (Literal ","); - Token (Name "import_export_specifier"); + Token (Name "import_specifier"); ]; ); ]; @@ -218,11 +307,11 @@ let children_regexps : (string * Run.exp option) list = [ Token (Literal "{"); Opt ( Seq [ - Token (Name "import_export_specifier"); + Token (Name "export_specifier"); Repeat ( Seq [ Token (Literal ","); - Token (Name "import_export_specifier"); + Token (Name "export_specifier"); ]; ); ]; @@ -233,33 +322,10 @@ let children_regexps : (string * Run.exp option) list = [ Token (Literal "}"); ]; ); - "jsx_closing_element", - Some ( - Seq [ - Token (Literal "<"); - Token (Literal "/"); - Alt [| - Alt [| - Token (Name "jsx_identifier"); - Token (Name "identifier"); - |]; - Token (Name "nested_identifier"); - Token (Name "jsx_namespace_name"); - |]; - Token (Literal ">"); - ]; - ); - "from_clause", - Some ( - Seq [ - Token (Literal "from"); - Token (Name "string"); - ]; - ); "import_clause", Some ( Alt [| - Token (Name "namespace_import_export"); + Token (Name "namespace_import"); Token (Name "named_imports"); Seq [ Token (Name "identifier"); @@ -267,7 +333,7 @@ let children_regexps : (string * Run.exp option) list = [ Seq [ Token (Literal ","); Alt [| - Token (Name "namespace_import_export"); + Token (Name "namespace_import"); Token (Name "named_imports"); |]; ]; @@ -275,23 +341,6 @@ let children_regexps : (string * Run.exp option) list = [ ]; |]; ); - "import_statement", - Some ( - Seq [ - Token (Literal "import"); - Alt [| - Seq [ - Token (Name "import_clause"); - Token (Name "from_clause"); - ]; - Token (Name "string"); - |]; - Alt [| - Token (Name "automatic_semicolon"); - Token (Literal ";"); - |]; - ]; - ); "arguments", Some ( Seq [ @@ -390,6 +439,7 @@ let children_regexps : (string * Run.exp option) list = [ Token (Literal "async"); Token (Literal "static"); Token (Literal "export"); + Token (Literal "let"); |]; Token (Name "identifier"); |]; @@ -420,6 +470,7 @@ let children_regexps : (string * Run.exp option) list = [ Token (Literal "async"); Token (Literal "static"); Token (Literal "export"); + Token (Literal "let"); |]; Token (Name "destructuring_pattern"); |]; @@ -471,6 +522,7 @@ let children_regexps : (string * Run.exp option) list = [ Token (Literal "async"); Token (Literal "static"); Token (Literal "export"); + Token (Literal "let"); |]; Token (Name "identifier"); Token (Name "parenthesized_expression"); @@ -607,7 +659,10 @@ let children_regexps : (string * Run.exp option) list = [ Token (Name "expression"); ]; Seq [ - Token (Name "expression"); + Alt [| + Token (Name "expression"); + Token (Name "private_property_identifier"); + |]; Token (Literal "in"); Token (Name "expression"); ]; @@ -617,15 +672,22 @@ let children_regexps : (string * Run.exp option) list = [ Some ( Alt [| Seq [ - Token (Name "expression"); Alt [| - Token (Name "arguments"); - Token (Name "template_string"); + Token (Name "expression"); + Token (Name "import"); + |]; + Token (Name "arguments"); + ]; + Seq [ + Alt [| + Token (Name "primary_expression"); + Token (Name "new_expression"); |]; + Token (Name "template_string"); ]; Seq [ Token (Name "primary_expression"); - Token (Literal "?."); + Token (Name "optional_chain"); Token (Name "arguments"); ]; |]; @@ -682,6 +744,8 @@ let children_regexps : (string * Run.exp option) list = [ Token (Literal ";"); |]; ]; + Token (Name "class_static_block"); + Token (Literal ";"); |]; ); Token (Literal "}"); @@ -711,6 +775,16 @@ let children_regexps : (string * Run.exp option) list = [ Token (Name "expression"); ]; ); + "class_static_block", + Some ( + Seq [ + Token (Literal "static"); + Opt ( + Token (Name "automatic_semicolon"); + ); + Token (Name "statement_block"); + ]; + ); "computed_property_name", Some ( Seq [ @@ -761,62 +835,22 @@ let children_regexps : (string * Run.exp option) list = [ Some ( Seq [ Token (Literal "do"); - Alt [| - Token (Name "export_statement"); - Token (Name "import_statement"); - Token (Name "debugger_statement"); - Token (Name "expression_statement"); - Token (Name "declaration"); - Token (Name "statement_block"); - Token (Name "if_statement"); - Token (Name "switch_statement"); - Token (Name "for_statement"); - Token (Name "for_in_statement"); - Token (Name "while_statement"); - Token (Name "do_statement"); - Token (Name "try_statement"); - Token (Name "with_statement"); - Token (Name "break_statement"); - Token (Name "continue_statement"); - Token (Name "return_statement"); - Token (Name "throw_statement"); - Token (Name "empty_statement"); - Token (Name "labeled_statement"); - |]; + Token (Name "statement"); Token (Literal "while"); Token (Name "parenthesized_expression"); - Alt [| - Token (Name "automatic_semicolon"); - Token (Literal ";"); - |]; + Opt ( + Alt [| + Token (Name "automatic_semicolon"); + Token (Literal ";"); + |]; + ); ]; ); "else_clause", Some ( Seq [ Token (Literal "else"); - Alt [| - Token (Name "export_statement"); - Token (Name "import_statement"); - Token (Name "debugger_statement"); - Token (Name "expression_statement"); - Token (Name "declaration"); - Token (Name "statement_block"); - Token (Name "if_statement"); - Token (Name "switch_statement"); - Token (Name "for_statement"); - Token (Name "for_in_statement"); - Token (Name "while_statement"); - Token (Name "do_statement"); - Token (Name "try_statement"); - Token (Name "with_statement"); - Token (Name "break_statement"); - Token (Name "continue_statement"); - Token (Name "return_statement"); - Token (Name "throw_statement"); - Token (Name "empty_statement"); - Token (Name "labeled_statement"); - |]; + Token (Name "statement"); ]; ); "export_statement", @@ -828,34 +862,20 @@ let children_regexps : (string * Run.exp option) list = [ Seq [ Token (Literal "*"); Token (Name "from_clause"); - Alt [| - Token (Name "automatic_semicolon"); - Token (Literal ";"); - |]; ]; Seq [ - Token (Name "namespace_import_export"); + Token (Name "namespace_export"); Token (Name "from_clause"); - Alt [| - Token (Name "automatic_semicolon"); - Token (Literal ";"); - |]; ]; Seq [ Token (Name "export_clause"); Token (Name "from_clause"); - Alt [| - Token (Name "automatic_semicolon"); - Token (Literal ";"); - |]; - ]; - Seq [ - Token (Name "export_clause"); - Alt [| - Token (Name "automatic_semicolon"); - Token (Literal ";"); - |]; ]; + Token (Name "export_clause"); + |]; + Alt [| + Token (Name "automatic_semicolon"); + Token (Literal ";"); |]; ]; Seq [ @@ -890,7 +910,6 @@ let children_regexps : (string * Run.exp option) list = [ Token (Name "jsx_element"); Token (Name "jsx_self_closing_element"); |]; - Token (Name "jsx_fragment"); Token (Name "assignment_expression"); Token (Name "augmented_assignment_expression"); Token (Name "await_expression"); @@ -956,6 +975,7 @@ let children_regexps : (string * Run.exp option) list = [ Token (Literal "async"); Token (Literal "static"); Token (Literal "export"); + Token (Literal "let"); |]; Token (Name "destructuring_pattern"); |]; @@ -980,6 +1000,9 @@ let children_regexps : (string * Run.exp option) list = [ Token (Name "identifier"); Token (Name "destructuring_pattern"); |]; + Opt ( + Token (Name "automatic_semicolon"); + ); ]; |]; Alt [| @@ -1001,28 +1024,7 @@ let children_regexps : (string * Run.exp option) list = [ Token (Literal "await"); ); Token (Name "for_header"); - Alt [| - Token (Name "export_statement"); - Token (Name "import_statement"); - Token (Name "debugger_statement"); - Token (Name "expression_statement"); - Token (Name "declaration"); - Token (Name "statement_block"); - Token (Name "if_statement"); - Token (Name "switch_statement"); - Token (Name "for_statement"); - Token (Name "for_in_statement"); - Token (Name "while_statement"); - Token (Name "do_statement"); - Token (Name "try_statement"); - Token (Name "with_statement"); - Token (Name "break_statement"); - Token (Name "continue_statement"); - Token (Name "return_statement"); - Token (Name "throw_statement"); - Token (Name "empty_statement"); - Token (Name "labeled_statement"); - |]; + Token (Name "statement"); ]; ); "for_statement", @@ -1031,13 +1033,27 @@ let children_regexps : (string * Run.exp option) list = [ Token (Literal "for"); Token (Literal "("); Alt [| - Token (Name "lexical_declaration"); - Token (Name "variable_declaration"); - Token (Name "expression_statement"); + Alt [| + Token (Name "lexical_declaration"); + Token (Name "variable_declaration"); + |]; + Seq [ + Alt [| + Token (Name "expression"); + Token (Name "sequence_expression"); + |]; + Token (Literal ";"); + ]; Token (Name "empty_statement"); |]; Alt [| - Token (Name "expression_statement"); + Seq [ + Alt [| + Token (Name "expression"); + Token (Name "sequence_expression"); + |]; + Token (Literal ";"); + ]; Token (Name "empty_statement"); |]; Opt ( @@ -1047,28 +1063,7 @@ let children_regexps : (string * Run.exp option) list = [ |]; ); Token (Literal ")"); - Alt [| - Token (Name "export_statement"); - Token (Name "import_statement"); - Token (Name "debugger_statement"); - Token (Name "expression_statement"); - Token (Name "declaration"); - Token (Name "statement_block"); - Token (Name "if_statement"); - Token (Name "switch_statement"); - Token (Name "for_statement"); - Token (Name "for_in_statement"); - Token (Name "while_statement"); - Token (Name "do_statement"); - Token (Name "try_statement"); - Token (Name "with_statement"); - Token (Name "break_statement"); - Token (Name "continue_statement"); - Token (Name "return_statement"); - Token (Name "throw_statement"); - Token (Name "empty_statement"); - Token (Name "labeled_statement"); - |]; + Token (Name "statement"); ]; ); "formal_parameters", @@ -1098,33 +1093,33 @@ let children_regexps : (string * Run.exp option) list = [ Token (Literal ")"); ]; ); - "function", + "function_declaration", Some ( Seq [ Opt ( Token (Literal "async"); ); Token (Literal "function"); - Opt ( - Token (Name "identifier"); - ); + Token (Name "identifier"); Token (Name "formal_parameters"); Token (Name "statement_block"); + Opt ( + Token (Name "automatic_semicolon"); + ); ]; ); - "function_declaration", + "function_expression", Some ( Seq [ Opt ( Token (Literal "async"); ); Token (Literal "function"); - Token (Name "identifier"); - Token (Name "formal_parameters"); - Token (Name "statement_block"); Opt ( - Token (Name "automatic_semicolon"); + Token (Name "identifier"); ); + Token (Name "formal_parameters"); + Token (Name "statement_block"); ]; ); "generator_function", @@ -1163,31 +1158,37 @@ let children_regexps : (string * Run.exp option) list = [ Seq [ Token (Literal "if"); Token (Name "parenthesized_expression"); + Token (Name "statement"); + Opt ( + Token (Name "else_clause"); + ); + ]; + ); + "import_attribute", + Some ( + Seq [ + Token (Literal "with"); + Token (Name "object"); + ]; + ); + "import_statement", + Some ( + Seq [ + Token (Literal "import"); Alt [| - Token (Name "export_statement"); - Token (Name "import_statement"); - Token (Name "debugger_statement"); - Token (Name "expression_statement"); - Token (Name "declaration"); - Token (Name "statement_block"); - Token (Name "if_statement"); - Token (Name "switch_statement"); - Token (Name "for_statement"); - Token (Name "for_in_statement"); - Token (Name "while_statement"); - Token (Name "do_statement"); - Token (Name "try_statement"); - Token (Name "with_statement"); - Token (Name "break_statement"); - Token (Name "continue_statement"); - Token (Name "return_statement"); - Token (Name "throw_statement"); - Token (Name "empty_statement"); - Token (Name "labeled_statement"); + Seq [ + Token (Name "import_clause"); + Token (Name "from_clause"); + ]; + Token (Name "string"); |]; Opt ( - Token (Name "else_clause"); + Token (Name "import_attribute"); ); + Alt [| + Token (Name "automatic_semicolon"); + Token (Literal ";"); + |]; ]; ); "initializer", @@ -1211,13 +1212,12 @@ let children_regexps : (string * Run.exp option) list = [ Seq [ Token (Literal "="); Alt [| - Token (Name "string"); + Token (Name "jsx_string"); Token (Name "jsx_expression"); Alt [| Token (Name "jsx_element"); Token (Name "jsx_self_closing_element"); |]; - Token (Name "jsx_fragment"); |]; ]; ); @@ -1229,13 +1229,16 @@ let children_regexps : (string * Run.exp option) list = [ Token (Name "jsx_opening_element"); Repeat ( Alt [| - Token (Name "jsx_text"); Alt [| - Token (Name "jsx_element"); - Token (Name "jsx_self_closing_element"); + Token (Name "jsx_text"); + Token (Name "html_character_reference"); + Alt [| + Token (Name "jsx_element"); + Token (Name "jsx_self_closing_element"); + |]; + Token (Name "jsx_expression"); |]; - Token (Name "jsx_fragment"); - Token (Name "jsx_expression"); + Token (Literal ">"); |]; ); Token (Name "jsx_closing_element"); @@ -1255,44 +1258,27 @@ let children_regexps : (string * Run.exp option) list = [ Token (Literal "}"); ]; ); - "jsx_fragment", + "jsx_opening_element", Some ( Seq [ Token (Literal "<"); - Token (Literal ">"); - Repeat ( - Alt [| - Token (Name "jsx_text"); + Opt ( + Seq [ Alt [| - Token (Name "jsx_element"); - Token (Name "jsx_self_closing_element"); + Alt [| + Token (Name "jsx_identifier"); + Token (Name "identifier"); + |]; + Token (Name "nested_identifier"); + Token (Name "jsx_namespace_name"); |]; - Token (Name "jsx_fragment"); - Token (Name "jsx_expression"); - |]; - ); - Token (Literal "<"); - Token (Literal "/"); - Token (Literal ">"); - ]; - ); - "jsx_opening_element", - Some ( - Seq [ - Token (Literal "<"); - Alt [| - Alt [| - Token (Name "jsx_identifier"); - Token (Name "identifier"); - |]; - Token (Name "nested_identifier"); - Token (Name "jsx_namespace_name"); - |]; - Repeat ( - Alt [| - Token (Name "jsx_attribute"); - Token (Name "jsx_expression"); - |]; + Repeat ( + Alt [| + Token (Name "jsx_attribute"); + Token (Name "jsx_expression"); + |]; + ); + ]; ); Token (Literal ">"); ]; @@ -1315,8 +1301,7 @@ let children_regexps : (string * Run.exp option) list = [ Token (Name "jsx_expression"); |]; ); - Token (Literal "/"); - Token (Literal ">"); + Token (Literal "/>"); ]; ); "labeled_statement", @@ -1330,31 +1315,11 @@ let children_regexps : (string * Run.exp option) list = [ Token (Literal "async"); Token (Literal "static"); Token (Literal "export"); + Token (Literal "let"); |]; |]; Token (Literal ":"); - Alt [| - Token (Name "export_statement"); - Token (Name "import_statement"); - Token (Name "debugger_statement"); - Token (Name "expression_statement"); - Token (Name "declaration"); - Token (Name "statement_block"); - Token (Name "if_statement"); - Token (Name "switch_statement"); - Token (Name "for_statement"); - Token (Name "for_in_statement"); - Token (Name "while_statement"); - Token (Name "do_statement"); - Token (Name "try_statement"); - Token (Name "with_statement"); - Token (Name "break_statement"); - Token (Name "continue_statement"); - Token (Name "return_statement"); - Token (Name "throw_statement"); - Token (Name "empty_statement"); - Token (Name "labeled_statement"); - |]; + Token (Name "statement"); ]; ); "lexical_declaration", @@ -1383,10 +1348,11 @@ let children_regexps : (string * Run.exp option) list = [ Alt [| Token (Name "expression"); Token (Name "primary_expression"); + Token (Name "import"); |]; Alt [| Token (Literal "."); - Token (Literal "?."); + Token (Name "optional_chain"); |]; Alt [| Token (Name "private_property_identifier"); @@ -1401,7 +1367,10 @@ let children_regexps : (string * Run.exp option) list = [ Token (Name "decorator"); ); Opt ( - Token (Literal "static"); + Alt [| + Token (Literal "static"); + Token (Name "tok_static_pat_3d340f6_get_pat_3d59095"); + |]; ); Opt ( Token (Literal "async"); @@ -1450,6 +1419,7 @@ let children_regexps : (string * Run.exp option) list = [ Token (Literal "async"); Token (Literal "static"); Token (Literal "export"); + Token (Literal "let"); |]; |]; |]; @@ -1470,6 +1440,7 @@ let children_regexps : (string * Run.exp option) list = [ Token (Literal "async"); Token (Literal "static"); Token (Literal "export"); + Token (Literal "let"); |]; |]; |]; @@ -1492,6 +1463,7 @@ let children_regexps : (string * Run.exp option) list = [ Token (Literal "async"); Token (Literal "static"); Token (Literal "export"); + Token (Literal "let"); |]; Token (Name "identifier"); |]; @@ -1520,6 +1492,7 @@ let children_regexps : (string * Run.exp option) list = [ Token (Literal "async"); Token (Literal "static"); Token (Literal "export"); + Token (Literal "let"); |]; |]; |]; @@ -1540,6 +1513,7 @@ let children_regexps : (string * Run.exp option) list = [ Token (Literal "async"); Token (Literal "static"); Token (Literal "export"); + Token (Literal "let"); |]; |]; |]; @@ -1597,6 +1571,7 @@ let children_regexps : (string * Run.exp option) list = [ Token (Literal "async"); Token (Literal "static"); Token (Literal "export"); + Token (Literal "let"); |]; Token (Name "destructuring_pattern"); |]; @@ -1619,6 +1594,7 @@ let children_regexps : (string * Run.exp option) list = [ Token (Literal "async"); Token (Literal "static"); Token (Literal "export"); + Token (Literal "let"); |]; Token (Name "this"); Token (Name "super"); @@ -1629,10 +1605,9 @@ let children_regexps : (string * Run.exp option) list = [ Token (Name "true"); Token (Name "false"); Token (Name "null"); - Token (Name "import"); Token (Name "object"); Token (Name "array"); - Token (Name "function"); + Token (Name "function_expression"); Token (Name "arrow_function"); Token (Name "generator_function"); Token (Name "class"); @@ -1651,6 +1626,7 @@ let children_regexps : (string * Run.exp option) list = [ Token (Literal "async"); Token (Literal "static"); Token (Literal "export"); + Token (Literal "let"); |]; |]; Token (Name "private_property_identifier"); @@ -1676,6 +1652,7 @@ let children_regexps : (string * Run.exp option) list = [ Token (Literal "async"); Token (Literal "static"); Token (Literal "export"); + Token (Literal "let"); |]; Token (Name "destructuring_pattern"); |]; @@ -1701,11 +1678,12 @@ let children_regexps : (string * Run.exp option) list = [ Some ( Seq [ Token (Name "expression"); - Token (Literal ","); - Alt [| - Token (Name "sequence_expression"); - Token (Name "expression"); - |]; + Repeat ( + Seq [ + Token (Literal ","); + Token (Name "expression"); + ]; + ); ]; ); "spread_element", @@ -1715,33 +1693,37 @@ let children_regexps : (string * Run.exp option) list = [ Token (Name "expression"); ]; ); + "statement", + Some ( + Alt [| + Token (Name "export_statement"); + Token (Name "import_statement"); + Token (Name "debugger_statement"); + Token (Name "expression_statement"); + Token (Name "declaration"); + Token (Name "statement_block"); + Token (Name "if_statement"); + Token (Name "switch_statement"); + Token (Name "for_statement"); + Token (Name "for_in_statement"); + Token (Name "while_statement"); + Token (Name "do_statement"); + Token (Name "try_statement"); + Token (Name "with_statement"); + Token (Name "break_statement"); + Token (Name "continue_statement"); + Token (Name "return_statement"); + Token (Name "throw_statement"); + Token (Name "empty_statement"); + Token (Name "labeled_statement"); + |]; + ); "statement_block", Some ( Seq [ Token (Literal "{"); Repeat ( - Alt [| - Token (Name "export_statement"); - Token (Name "import_statement"); - Token (Name "debugger_statement"); - Token (Name "expression_statement"); - Token (Name "declaration"); - Token (Name "statement_block"); - Token (Name "if_statement"); - Token (Name "switch_statement"); - Token (Name "for_statement"); - Token (Name "for_in_statement"); - Token (Name "while_statement"); - Token (Name "do_statement"); - Token (Name "try_statement"); - Token (Name "with_statement"); - Token (Name "break_statement"); - Token (Name "continue_statement"); - Token (Name "return_statement"); - Token (Name "throw_statement"); - Token (Name "empty_statement"); - Token (Name "labeled_statement"); - |]; + Token (Name "statement"); ); Token (Literal "}"); Opt ( @@ -1757,7 +1739,7 @@ let children_regexps : (string * Run.exp option) list = [ Token (Name "primary_expression"); |]; Opt ( - Token (Literal "?."); + Token (Name "optional_chain"); ); Token (Literal "["); Alt [| @@ -1790,28 +1772,7 @@ let children_regexps : (string * Run.exp option) list = [ |]; Token (Literal ":"); Repeat ( - Alt [| - Token (Name "export_statement"); - Token (Name "import_statement"); - Token (Name "debugger_statement"); - Token (Name "expression_statement"); - Token (Name "declaration"); - Token (Name "statement_block"); - Token (Name "if_statement"); - Token (Name "switch_statement"); - Token (Name "for_statement"); - Token (Name "for_in_statement"); - Token (Name "while_statement"); - Token (Name "do_statement"); - Token (Name "try_statement"); - Token (Name "with_statement"); - Token (Name "break_statement"); - Token (Name "continue_statement"); - Token (Name "return_statement"); - Token (Name "throw_statement"); - Token (Name "empty_statement"); - Token (Name "labeled_statement"); - |]; + Token (Name "statement"); ); ]; ); @@ -1821,28 +1782,7 @@ let children_regexps : (string * Run.exp option) list = [ Token (Literal "default"); Token (Literal ":"); Repeat ( - Alt [| - Token (Name "export_statement"); - Token (Name "import_statement"); - Token (Name "debugger_statement"); - Token (Name "expression_statement"); - Token (Name "declaration"); - Token (Name "statement_block"); - Token (Name "if_statement"); - Token (Name "switch_statement"); - Token (Name "for_statement"); - Token (Name "for_in_statement"); - Token (Name "while_statement"); - Token (Name "do_statement"); - Token (Name "try_statement"); - Token (Name "with_statement"); - Token (Name "break_statement"); - Token (Name "continue_statement"); - Token (Name "return_statement"); - Token (Name "throw_statement"); - Token (Name "empty_statement"); - Token (Name "labeled_statement"); - |]; + Token (Name "statement"); ); ]; ); @@ -1984,28 +1924,7 @@ let children_regexps : (string * Run.exp option) list = [ Seq [ Token (Literal "while"); Token (Name "parenthesized_expression"); - Alt [| - Token (Name "export_statement"); - Token (Name "import_statement"); - Token (Name "debugger_statement"); - Token (Name "expression_statement"); - Token (Name "declaration"); - Token (Name "statement_block"); - Token (Name "if_statement"); - Token (Name "switch_statement"); - Token (Name "for_statement"); - Token (Name "for_in_statement"); - Token (Name "while_statement"); - Token (Name "do_statement"); - Token (Name "try_statement"); - Token (Name "with_statement"); - Token (Name "break_statement"); - Token (Name "continue_statement"); - Token (Name "return_statement"); - Token (Name "throw_statement"); - Token (Name "empty_statement"); - Token (Name "labeled_statement"); - |]; + Token (Name "statement"); ]; ); "with_statement", @@ -2013,28 +1932,7 @@ let children_regexps : (string * Run.exp option) list = [ Seq [ Token (Literal "with"); Token (Name "parenthesized_expression"); - Alt [| - Token (Name "export_statement"); - Token (Name "import_statement"); - Token (Name "debugger_statement"); - Token (Name "expression_statement"); - Token (Name "declaration"); - Token (Name "statement_block"); - Token (Name "if_statement"); - Token (Name "switch_statement"); - Token (Name "for_statement"); - Token (Name "for_in_statement"); - Token (Name "while_statement"); - Token (Name "do_statement"); - Token (Name "try_statement"); - Token (Name "with_statement"); - Token (Name "break_statement"); - Token (Name "continue_statement"); - Token (Name "return_statement"); - Token (Name "throw_statement"); - Token (Name "empty_statement"); - Token (Name "labeled_statement"); - |]; + Token (Name "statement"); ]; ); "yield_expression", @@ -2059,99 +1957,69 @@ let children_regexps : (string * Run.exp option) list = [ Token (Name "hash_bang_line"); ); Repeat ( - Alt [| - Token (Name "export_statement"); - Token (Name "import_statement"); - Token (Name "debugger_statement"); - Token (Name "expression_statement"); - Token (Name "declaration"); - Token (Name "statement_block"); - Token (Name "if_statement"); - Token (Name "switch_statement"); - Token (Name "for_statement"); - Token (Name "for_in_statement"); - Token (Name "while_statement"); - Token (Name "do_statement"); - Token (Name "try_statement"); - Token (Name "with_statement"); - Token (Name "break_statement"); - Token (Name "continue_statement"); - Token (Name "return_statement"); - Token (Name "throw_statement"); - Token (Name "empty_statement"); - Token (Name "labeled_statement"); - |]; + Token (Name "statement"); ); ]; ); ] -let trans_imm_tok_slash ((kind, body) : mt) : CST.imm_tok_slash = +let trans_html_comment ((kind, body) : mt) : CST.html_comment = match body with | Leaf v -> v | Children _ -> assert false -let trans_super ((kind, body) : mt) : CST.super = +let trans_regex_flags ((kind, body) : mt) : CST.regex_flags = match body with | Leaf v -> v | Children _ -> assert false -let trans_ternary_qmark ((kind, body) : mt) : CST.ternary_qmark = - match body with - | Leaf v -> v - | Children _ -> assert false let trans_comment ((kind, body) : mt) : CST.comment = match body with | Leaf v -> v | Children _ -> assert false -let trans_jsx_identifier ((kind, body) : mt) : CST.jsx_identifier = - match body with - | Leaf v -> v - | Children _ -> assert false - -let trans_hash_bang_line ((kind, body) : mt) : CST.hash_bang_line = +let trans_unescaped_double_jsx_string_fragment ((kind, body) : mt) : CST.unescaped_double_jsx_string_fragment = match body with | Leaf v -> v | Children _ -> assert false -let trans_unescaped_double_string_fragment ((kind, body) : mt) : CST.unescaped_double_string_fragment = +let trans_template_chars ((kind, body) : mt) : CST.template_chars = match body with | Leaf v -> v | Children _ -> assert false -let trans_false_ ((kind, body) : mt) : CST.false_ = +let trans_empty_statement ((kind, body) : mt) : CST.empty_statement = match body with | Leaf v -> v | Children _ -> assert false -let trans_empty_statement ((kind, body) : mt) : CST.empty_statement = +let trans_number ((kind, body) : mt) : CST.number = match body with | Leaf v -> v | Children _ -> assert false -let trans_regex_pattern ((kind, body) : mt) : CST.regex_pattern = +let trans_automatic_semicolon ((kind, body) : mt) : CST.automatic_semicolon = match body with | Leaf v -> v | Children _ -> assert false -let trans_true_ ((kind, body) : mt) : CST.true_ = +let trans_hash_bang_line ((kind, body) : mt) : CST.hash_bang_line = match body with | Leaf v -> v | Children _ -> assert false -let trans_automatic_semicolon ((kind, body) : mt) : CST.automatic_semicolon = +let trans_imm_tok_prec_p1_slash ((kind, body) : mt) : CST.imm_tok_prec_p1_slash = match body with | Leaf v -> v | Children _ -> assert false -let trans_identifier ((kind, body) : mt) : CST.identifier = +let trans_jsx_text ((kind, body) : mt) : CST.jsx_text = match body with | Leaf v -> v | Children _ -> assert false -let trans_unescaped_single_string_fragment ((kind, body) : mt) : CST.unescaped_single_string_fragment = +let trans_ternary_qmark ((kind, body) : mt) : CST.ternary_qmark = match body with | Leaf v -> v | Children _ -> assert false @@ -2161,48 +2029,47 @@ let trans_escape_sequence ((kind, body) : mt) : CST.escape_sequence = | Leaf v -> v | Children _ -> assert false -let trans_template_chars ((kind, body) : mt) : CST.template_chars = +let trans_false_ ((kind, body) : mt) : CST.false_ = match body with | Leaf v -> v | Children _ -> assert false -let trans_import ((kind, body) : mt) : CST.import = +let trans_unescaped_double_string_fragment ((kind, body) : mt) : CST.unescaped_double_string_fragment = match body with | Leaf v -> v | Children _ -> assert false -let trans_number ((kind, body) : mt) : CST.number = +let trans_regex_pattern ((kind, body) : mt) : CST.regex_pattern = match body with | Leaf v -> v | Children _ -> assert false -let trans_undefined ((kind, body) : mt) : CST.undefined = +let trans_identifier ((kind, body) : mt) : CST.identifier = match body with | Leaf v -> v | Children _ -> assert false -let trans_this ((kind, body) : mt) : CST.this = +let trans_jsx_identifier ((kind, body) : mt) : CST.jsx_identifier = match body with | Leaf v -> v | Children _ -> assert false -let trans_regex_flags ((kind, body) : mt) : CST.regex_flags = +let trans_html_character_reference ((kind, body) : mt) : CST.html_character_reference = match body with | Leaf v -> v | Children _ -> assert false -let trans_jsx_text ((kind, body) : mt) : CST.jsx_text = +let trans_super ((kind, body) : mt) : CST.super = match body with | Leaf v -> v | Children _ -> assert false -let trans_private_property_identifier ((kind, body) : mt) : CST.private_property_identifier = +let trans_true_ ((kind, body) : mt) : CST.true_ = match body with | Leaf v -> v | Children _ -> assert false - -let trans_null ((kind, body) : mt) : CST.null = +let trans_tok_static_pat_3d340f6_get_pat_3d59095 ((kind, body) : mt) : CST.tok_static_pat_3d340f6_get_pat_3d59095 = match body with | Leaf v -> v | Children _ -> assert false @@ -2211,31 +2078,26 @@ let trans_meta_property ((kind, body) : mt) : CST.meta_property = match body with | Children v -> (match v with - | Seq [v0; v1; v2] -> - ( - Run.trans_token (Run.matcher_token v0), - Run.trans_token (Run.matcher_token v1), - Run.trans_token (Run.matcher_token v2) - ) - | _ -> assert false - ) - | Leaf _ -> assert false - -let trans_debugger_statement ((kind, body) : mt) : CST.debugger_statement = - match body with - | Children v -> - (match v with - | Seq [v0; v1] -> - ( - Run.trans_token (Run.matcher_token v0), - (match v1 with - | Alt (0, v) -> - `Auto_semi ( - trans_automatic_semicolon (Run.matcher_token v) + | Alt (0, v) -> + `New_DOT_target ( + (match v with + | Seq [v0; v1; v2] -> + ( + Run.trans_token (Run.matcher_token v0), + Run.trans_token (Run.matcher_token v1), + Run.trans_token (Run.matcher_token v2) ) - | Alt (1, v) -> - `SEMI ( - Run.trans_token (Run.matcher_token v) + | _ -> assert false + ) + ) + | Alt (1, v) -> + `Import_DOT_meta ( + (match v with + | Seq [v0; v1; v2] -> + ( + Run.trans_token (Run.matcher_token v0), + Run.trans_token (Run.matcher_token v1), + Run.trans_token (Run.matcher_token v2) ) | _ -> assert false ) @@ -2244,59 +2106,61 @@ let trans_debugger_statement ((kind, body) : mt) : CST.debugger_statement = ) | Leaf _ -> assert false +let trans_undefined ((kind, body) : mt) : CST.undefined = + match body with + | Leaf v -> v + | Children _ -> assert false - -let trans_import_export_specifier ((kind, body) : mt) : CST.import_export_specifier = +let trans_this ((kind, body) : mt) : CST.this = match body with - | Children v -> - (match v with - | Seq [v0; v1] -> - ( - trans_identifier (Run.matcher_token v0), - Run.opt - (fun v -> - (match v with - | Seq [v0; v1] -> - ( - Run.trans_token (Run.matcher_token v0), - trans_identifier (Run.matcher_token v1) - ) - | _ -> assert false - ) - ) - v1 - ) - | _ -> assert false - ) - | Leaf _ -> assert false + | Leaf v -> v + | Children _ -> assert false -let trans_jsx_namespace_name ((kind, body) : mt) : CST.jsx_namespace_name = +let trans_import ((kind, body) : mt) : CST.import = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_unescaped_single_string_fragment ((kind, body) : mt) : CST.unescaped_single_string_fragment = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_private_property_identifier ((kind, body) : mt) : CST.private_property_identifier = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_null ((kind, body) : mt) : CST.null = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_unescaped_single_jsx_string_fragment ((kind, body) : mt) : CST.unescaped_single_jsx_string_fragment = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_optional_chain ((kind, body) : mt) : CST.optional_chain = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_debugger_statement ((kind, body) : mt) : CST.debugger_statement = match body with | Children v -> (match v with - | Seq [v0; v1; v2] -> + | Seq [v0; v1] -> ( - (match v0 with - | Alt (0, v) -> - `Jsx_id ( - trans_jsx_identifier (Run.matcher_token v) - ) - | Alt (1, v) -> - `Id ( - trans_identifier (Run.matcher_token v) - ) - | _ -> assert false - ) - , - Run.trans_token (Run.matcher_token v1), - (match v2 with + Run.trans_token (Run.matcher_token v0), + (match v1 with | Alt (0, v) -> - `Jsx_id ( - trans_jsx_identifier (Run.matcher_token v) + `Auto_semi ( + trans_automatic_semicolon (Run.matcher_token v) ) | Alt (1, v) -> - `Id ( - trans_identifier (Run.matcher_token v) + `SEMI ( + Run.trans_token (Run.matcher_token v) ) | _ -> assert false ) @@ -2305,26 +2169,19 @@ let trans_jsx_namespace_name ((kind, body) : mt) : CST.jsx_namespace_name = ) | Leaf _ -> assert false -let rec trans_nested_identifier ((kind, body) : mt) : CST.nested_identifier = + +let trans_regex ((kind, body) : mt) : CST.regex = match body with | Children v -> (match v with - | Seq [v0; v1; v2] -> + | Seq [v0; v1; v2; v3] -> ( - (match v0 with - | Alt (0, v) -> - `Id ( - trans_identifier (Run.matcher_token v) - ) - | Alt (1, v) -> - `Nested_id ( - trans_nested_identifier (Run.matcher_token v) - ) - | _ -> assert false - ) - , - Run.trans_token (Run.matcher_token v1), - trans_identifier (Run.matcher_token v2) + Run.trans_token (Run.matcher_token v0), + trans_regex_pattern (Run.matcher_token v1), + trans_imm_tok_prec_p1_slash (Run.matcher_token v2), + Run.opt + (fun v -> trans_regex_flags (Run.matcher_token v)) + v3 ) | _ -> assert false ) @@ -2357,7 +2214,7 @@ let trans_continue_statement ((kind, body) : mt) : CST.continue_statement = ) | Leaf _ -> assert false -let trans_namespace_import_export ((kind, body) : mt) : CST.namespace_import_export = +let trans_namespace_import ((kind, body) : mt) : CST.namespace_import = match body with | Children v -> (match v with @@ -2396,6 +2253,31 @@ let rec trans_decorator_member_expression ((kind, body) : mt) : CST.decorator_me ) | Leaf _ -> assert false +let rec trans_nested_identifier ((kind, body) : mt) : CST.nested_identifier = + match body with + | Children v -> + (match v with + | Seq [v0; v1; v2] -> + ( + (match v0 with + | Alt (0, v) -> + `Id ( + trans_identifier (Run.matcher_token v) + ) + | Alt (1, v) -> + `Nested_id ( + trans_nested_identifier (Run.matcher_token v) + ) + | _ -> assert false + ) + , + Run.trans_token (Run.matcher_token v1), + trans_identifier (Run.matcher_token v2) + ) + | _ -> assert false + ) + | Leaf _ -> assert false + let trans_break_statement ((kind, body) : mt) : CST.break_statement = match body with | Children v -> @@ -2423,6 +2305,43 @@ let trans_break_statement ((kind, body) : mt) : CST.break_statement = ) | Leaf _ -> assert false +let trans_jsx_namespace_name ((kind, body) : mt) : CST.jsx_namespace_name = + match body with + | Children v -> + (match v with + | Seq [v0; v1; v2] -> + ( + (match v0 with + | Alt (0, v) -> + `Jsx_id ( + trans_jsx_identifier (Run.matcher_token v) + ) + | Alt (1, v) -> + `Id ( + trans_identifier (Run.matcher_token v) + ) + | _ -> assert false + ) + , + Run.trans_token (Run.matcher_token v1), + (match v2 with + | Alt (0, v) -> + `Jsx_id ( + trans_jsx_identifier (Run.matcher_token v) + ) + | Alt (1, v) -> + `Id ( + trans_identifier (Run.matcher_token v) + ) + | _ -> assert false + ) + ) + | _ -> assert false + ) + | Leaf _ -> assert false + + + let trans_string_ ((kind, body) : mt) : CST.string_ = match body with | Children v -> @@ -2485,19 +2404,199 @@ let trans_string_ ((kind, body) : mt) : CST.string_ = ) | Leaf _ -> assert false +let trans_jsx_string ((kind, body) : mt) : CST.jsx_string = + match body with + | Children v -> + (match v with + | Alt (0, v) -> + `DQUOT_rep_choice_unes_double_jsx_str_frag_DQUOT ( + (match v with + | Seq [v0; v1; v2] -> + ( + Run.trans_token (Run.matcher_token v0), + Run.repeat + (fun v -> + (match v with + | Alt (0, v) -> + `Unes_double_jsx_str_frag ( + trans_unescaped_double_jsx_string_fragment (Run.matcher_token v) + ) + | Alt (1, v) -> + `Html_char_ref ( + trans_html_character_reference (Run.matcher_token v) + ) + | _ -> assert false + ) + ) + v1 + , + Run.trans_token (Run.matcher_token v2) + ) + | _ -> assert false + ) + ) + | Alt (1, v) -> + `SQUOT_rep_choice_unes_single_jsx_str_frag_SQUOT ( + (match v with + | Seq [v0; v1; v2] -> + ( + Run.trans_token (Run.matcher_token v0), + Run.repeat + (fun v -> + (match v with + | Alt (0, v) -> + `Unes_single_jsx_str_frag ( + trans_unescaped_single_jsx_string_fragment (Run.matcher_token v) + ) + | Alt (1, v) -> + `Html_char_ref ( + trans_html_character_reference (Run.matcher_token v) + ) + | _ -> assert false + ) + ) + v1 + , + Run.trans_token (Run.matcher_token v2) + ) + | _ -> assert false + ) + ) + | _ -> assert false + ) + | Leaf _ -> assert false -let trans_regex ((kind, body) : mt) : CST.regex = + + +let trans_jsx_closing_element ((kind, body) : mt) : CST.jsx_closing_element = match body with | Children v -> (match v with - | Seq [v0; v1; v2; v3] -> + | Seq [v0; v1; v2] -> ( Run.trans_token (Run.matcher_token v0), - trans_regex_pattern (Run.matcher_token v1), - trans_imm_tok_slash (Run.matcher_token v2), Run.opt - (fun v -> trans_regex_flags (Run.matcher_token v)) - v3 + (fun v -> + (match v with + | Alt (0, v) -> + `Choice_jsx_id ( + (match v with + | Alt (0, v) -> + `Jsx_id ( + trans_jsx_identifier (Run.matcher_token v) + ) + | Alt (1, v) -> + `Id ( + trans_identifier (Run.matcher_token v) + ) + | _ -> assert false + ) + ) + | Alt (1, v) -> + `Nested_id ( + trans_nested_identifier (Run.matcher_token v) + ) + | Alt (2, v) -> + `Jsx_name_name ( + trans_jsx_namespace_name (Run.matcher_token v) + ) + | _ -> assert false + ) + ) + v1 + , + Run.trans_token (Run.matcher_token v2) + ) + | _ -> assert false + ) + | Leaf _ -> assert false + +let trans_from_clause ((kind, body) : mt) : CST.from_clause = + match body with + | Children v -> + (match v with + | Seq [v0; v1] -> + ( + Run.trans_token (Run.matcher_token v0), + trans_string_ (Run.matcher_token v1) + ) + | _ -> assert false + ) + | Leaf _ -> assert false + +let trans_module_export_name ((kind, body) : mt) : CST.module_export_name = + match body with + | Children v -> + (match v with + | Alt (0, v) -> + `Id ( + trans_identifier (Run.matcher_token v) + ) + | Alt (1, v) -> + `Str ( + trans_string_ (Run.matcher_token v) + ) + | _ -> assert false + ) + | Leaf _ -> assert false + +let trans_import_specifier ((kind, body) : mt) : CST.import_specifier = + match body with + | Children v -> + (match v with + | Alt (0, v) -> + `Id ( + trans_identifier (Run.matcher_token v) + ) + | Alt (1, v) -> + `Module_export_name_as_id ( + (match v with + | Seq [v0; v1; v2] -> + ( + trans_module_export_name (Run.matcher_token v0), + Run.trans_token (Run.matcher_token v1), + trans_identifier (Run.matcher_token v2) + ) + | _ -> assert false + ) + ) + | _ -> assert false + ) + | Leaf _ -> assert false + +let trans_export_specifier ((kind, body) : mt) : CST.export_specifier = + match body with + | Children v -> + (match v with + | Seq [v0; v1] -> + ( + trans_module_export_name (Run.matcher_token v0), + Run.opt + (fun v -> + (match v with + | Seq [v0; v1] -> + ( + Run.trans_token (Run.matcher_token v0), + trans_module_export_name (Run.matcher_token v1) + ) + | _ -> assert false + ) + ) + v1 + ) + | _ -> assert false + ) + | Leaf _ -> assert false + +let trans_namespace_export ((kind, body) : mt) : CST.namespace_export = + match body with + | Children v -> + (match v with + | Seq [v0; v1; v2] -> + ( + Run.trans_token (Run.matcher_token v0), + Run.trans_token (Run.matcher_token v1), + trans_module_export_name (Run.matcher_token v2) ) | _ -> assert false ) @@ -2515,14 +2614,14 @@ let trans_named_imports ((kind, body) : mt) : CST.named_imports = (match v with | Seq [v0; v1] -> ( - trans_import_export_specifier (Run.matcher_token v0), + trans_import_specifier (Run.matcher_token v0), Run.repeat (fun v -> (match v with | Seq [v0; v1] -> ( Run.trans_token (Run.matcher_token v0), - trans_import_export_specifier (Run.matcher_token v1) + trans_import_specifier (Run.matcher_token v1) ) | _ -> assert false ) @@ -2556,14 +2655,14 @@ let trans_export_clause ((kind, body) : mt) : CST.export_clause = (match v with | Seq [v0; v1] -> ( - trans_import_export_specifier (Run.matcher_token v0), + trans_export_specifier (Run.matcher_token v0), Run.repeat (fun v -> (match v with | Seq [v0; v1] -> ( Run.trans_token (Run.matcher_token v0), - trans_import_export_specifier (Run.matcher_token v1) + trans_export_specifier (Run.matcher_token v1) ) | _ -> assert false ) @@ -2575,66 +2674,11 @@ let trans_export_clause ((kind, body) : mt) : CST.export_clause = ) v1 , - Run.opt - (fun v -> Run.trans_token (Run.matcher_token v)) - v2 - , - Run.trans_token (Run.matcher_token v3) - ) - | _ -> assert false - ) - | Leaf _ -> assert false - - -let trans_jsx_closing_element ((kind, body) : mt) : CST.jsx_closing_element = - match body with - | Children v -> - (match v with - | Seq [v0; v1; v2; v3] -> - ( - Run.trans_token (Run.matcher_token v0), - Run.trans_token (Run.matcher_token v1), - (match v2 with - | Alt (0, v) -> - `Choice_jsx_id ( - (match v with - | Alt (0, v) -> - `Jsx_id ( - trans_jsx_identifier (Run.matcher_token v) - ) - | Alt (1, v) -> - `Id ( - trans_identifier (Run.matcher_token v) - ) - | _ -> assert false - ) - ) - | Alt (1, v) -> - `Nested_id ( - trans_nested_identifier (Run.matcher_token v) - ) - | Alt (2, v) -> - `Jsx_name_name ( - trans_jsx_namespace_name (Run.matcher_token v) - ) - | _ -> assert false - ) - , - Run.trans_token (Run.matcher_token v3) - ) - | _ -> assert false - ) - | Leaf _ -> assert false - - -let trans_from_clause ((kind, body) : mt) : CST.from_clause = - match body with - | Children v -> - (match v with - | Seq [v0; v1] -> - ( - Run.trans_token (Run.matcher_token v0), - trans_string_ (Run.matcher_token v1) + Run.opt + (fun v -> Run.trans_token (Run.matcher_token v)) + v2 + , + Run.trans_token (Run.matcher_token v3) ) | _ -> assert false ) @@ -2645,15 +2689,15 @@ let trans_import_clause ((kind, body) : mt) : CST.import_clause = | Children v -> (match v with | Alt (0, v) -> - `Name_import_export ( - trans_namespace_import_export (Run.matcher_token v) + `Name_import ( + trans_namespace_import (Run.matcher_token v) ) | Alt (1, v) -> `Named_imports ( trans_named_imports (Run.matcher_token v) ) | Alt (2, v) -> - `Id_opt_COMMA_choice_name_import_export ( + `Id_opt_COMMA_choice_name_import ( (match v with | Seq [v0; v1] -> ( @@ -2666,8 +2710,8 @@ let trans_import_clause ((kind, body) : mt) : CST.import_clause = Run.trans_token (Run.matcher_token v0), (match v1 with | Alt (0, v) -> - `Name_import_export ( - trans_namespace_import_export (Run.matcher_token v) + `Name_import ( + trans_namespace_import (Run.matcher_token v) ) | Alt (1, v) -> `Named_imports ( @@ -2688,48 +2732,6 @@ let trans_import_clause ((kind, body) : mt) : CST.import_clause = ) | Leaf _ -> assert false -let trans_import_statement ((kind, body) : mt) : CST.import_statement = - match body with - | Children v -> - (match v with - | Seq [v0; v1; v2] -> - ( - Run.trans_token (Run.matcher_token v0), - (match v1 with - | Alt (0, v) -> - `Import_clause_from_clause ( - (match v with - | Seq [v0; v1] -> - ( - trans_import_clause (Run.matcher_token v0), - trans_from_clause (Run.matcher_token v1) - ) - | _ -> assert false - ) - ) - | Alt (1, v) -> - `Str ( - trans_string_ (Run.matcher_token v) - ) - | _ -> assert false - ) - , - (match v2 with - | Alt (0, v) -> - `Auto_semi ( - trans_automatic_semicolon (Run.matcher_token v) - ) - | Alt (1, v) -> - `SEMI ( - Run.trans_token (Run.matcher_token v) - ) - | _ -> assert false - ) - ) - | _ -> assert false - ) - | Leaf _ -> assert false - let rec trans_arguments ((kind, body) : mt) : CST.arguments = match body with | Children v -> @@ -2965,6 +2967,10 @@ and trans_arrow_function ((kind, body) : mt) : CST.arrow_function = `Export ( Run.trans_token (Run.matcher_token v) ) + | Alt (5, v) -> + `Let ( + Run.trans_token (Run.matcher_token v) + ) | _ -> assert false ) ) @@ -3058,6 +3064,10 @@ and trans_assignment_expression ((kind, body) : mt) : CST.assignment_expression `Export ( Run.trans_token (Run.matcher_token v) ) + | Alt (5, v) -> + `Let ( + Run.trans_token (Run.matcher_token v) + ) | _ -> assert false ) ) @@ -3204,6 +3214,10 @@ and trans_augmented_assignment_lhs ((kind, body) : mt) : CST.augmented_assignmen `Export ( Run.trans_token (Run.matcher_token v) ) + | Alt (5, v) -> + `Let ( + Run.trans_token (Run.matcher_token v) + ) | _ -> assert false ) ) @@ -3525,11 +3539,22 @@ and trans_binary_expression ((kind, body) : mt) : CST.binary_expression = ) ) | Alt (24, v) -> - `Exp_in_exp ( + `Choice_exp_in_exp ( (match v with | Seq [v0; v1; v2] -> ( - trans_expression (Run.matcher_token v0), + (match v0 with + | Alt (0, v) -> + `Exp ( + trans_expression (Run.matcher_token v) + ) + | Alt (1, v) -> + `Priv_prop_id ( + trans_private_property_identifier (Run.matcher_token v) + ) + | _ -> assert false + ) + , Run.trans_token (Run.matcher_token v1), trans_expression (Run.matcher_token v2) ) @@ -3545,33 +3570,56 @@ and trans_call_expression ((kind, body) : mt) : CST.call_expression = | Children v -> (match v with | Alt (0, v) -> - `Exp_choice_args ( + `Choice_exp_args ( (match v with | Seq [v0; v1] -> ( - trans_expression (Run.matcher_token v0), - (match v1 with + (match v0 with | Alt (0, v) -> - `Args ( - trans_arguments (Run.matcher_token v) + `Exp ( + trans_expression (Run.matcher_token v) ) | Alt (1, v) -> - `Temp_str ( - trans_template_string (Run.matcher_token v) + `Import ( + trans_import (Run.matcher_token v) ) | _ -> assert false ) + , + trans_arguments (Run.matcher_token v1) ) | _ -> assert false ) ) | Alt (1, v) -> - `Prim_exp_QMARKDOT_args ( + `Choice_prim_exp_temp_str ( + (match v with + | Seq [v0; v1] -> + ( + (match v0 with + | Alt (0, v) -> + `Prim_exp ( + trans_primary_expression (Run.matcher_token v) + ) + | Alt (1, v) -> + `New_exp ( + trans_new_expression (Run.matcher_token v) + ) + | _ -> assert false + ) + , + trans_template_string (Run.matcher_token v1) + ) + | _ -> assert false + ) + ) + | Alt (2, v) -> + `Prim_exp_opt_chain_args ( (match v with | Seq [v0; v1; v2] -> ( trans_primary_expression (Run.matcher_token v0), - Run.trans_token (Run.matcher_token v1), + trans_optional_chain (Run.matcher_token v1), trans_arguments (Run.matcher_token v2) ) | _ -> assert false @@ -3688,6 +3736,14 @@ and trans_class_body ((kind, body) : mt) : CST.class_body = | _ -> assert false ) ) + | Alt (2, v) -> + `Class_static_blk ( + trans_class_static_block (Run.matcher_token v) + ) + | Alt (3, v) -> + `SEMI ( + Run.trans_token (Run.matcher_token v) + ) | _ -> assert false ) ) @@ -3737,6 +3793,23 @@ and trans_class_heritage ((kind, body) : mt) : CST.class_heritage = ) | Leaf _ -> assert false +and trans_class_static_block ((kind, body) : mt) : CST.class_static_block = + match body with + | Children v -> + (match v with + | Seq [v0; v1; v2] -> + ( + Run.trans_token (Run.matcher_token v0), + Run.opt + (fun v -> trans_automatic_semicolon (Run.matcher_token v)) + v1 + , + trans_statement_block (Run.matcher_token v2) + ) + | _ -> assert false + ) + | Leaf _ -> assert false + and trans_computed_property_name ((kind, body) : mt) : CST.computed_property_name = match body with | Children v -> @@ -3853,103 +3926,24 @@ and trans_do_statement ((kind, body) : mt) : CST.do_statement = | Seq [v0; v1; v2; v3; v4] -> ( Run.trans_token (Run.matcher_token v0), - (match v1 with - | Alt (0, v) -> - `Export_stmt ( - trans_export_statement (Run.matcher_token v) - ) - | Alt (1, v) -> - `Import_stmt ( - trans_import_statement (Run.matcher_token v) - ) - | Alt (2, v) -> - `Debu_stmt ( - trans_debugger_statement (Run.matcher_token v) - ) - | Alt (3, v) -> - `Exp_stmt ( - trans_expression_statement (Run.matcher_token v) - ) - | Alt (4, v) -> - `Decl ( - trans_declaration (Run.matcher_token v) - ) - | Alt (5, v) -> - `Stmt_blk ( - trans_statement_block (Run.matcher_token v) - ) - | Alt (6, v) -> - `If_stmt ( - trans_if_statement (Run.matcher_token v) - ) - | Alt (7, v) -> - `Switch_stmt ( - trans_switch_statement (Run.matcher_token v) - ) - | Alt (8, v) -> - `For_stmt ( - trans_for_statement (Run.matcher_token v) - ) - | Alt (9, v) -> - `For_in_stmt ( - trans_for_in_statement (Run.matcher_token v) - ) - | Alt (10, v) -> - `While_stmt ( - trans_while_statement (Run.matcher_token v) - ) - | Alt (11, v) -> - `Do_stmt ( - trans_do_statement (Run.matcher_token v) - ) - | Alt (12, v) -> - `Try_stmt ( - trans_try_statement (Run.matcher_token v) - ) - | Alt (13, v) -> - `With_stmt ( - trans_with_statement (Run.matcher_token v) - ) - | Alt (14, v) -> - `Brk_stmt ( - trans_break_statement (Run.matcher_token v) - ) - | Alt (15, v) -> - `Cont_stmt ( - trans_continue_statement (Run.matcher_token v) - ) - | Alt (16, v) -> - `Ret_stmt ( - trans_return_statement (Run.matcher_token v) - ) - | Alt (17, v) -> - `Throw_stmt ( - trans_throw_statement (Run.matcher_token v) - ) - | Alt (18, v) -> - `Empty_stmt ( - trans_empty_statement (Run.matcher_token v) - ) - | Alt (19, v) -> - `Labe_stmt ( - trans_labeled_statement (Run.matcher_token v) - ) - | _ -> assert false - ) - , + trans_statement (Run.matcher_token v1), Run.trans_token (Run.matcher_token v2), trans_parenthesized_expression (Run.matcher_token v3), - (match v4 with - | Alt (0, v) -> - `Auto_semi ( - trans_automatic_semicolon (Run.matcher_token v) - ) - | Alt (1, v) -> - `SEMI ( - Run.trans_token (Run.matcher_token v) + Run.opt + (fun v -> + (match v with + | Alt (0, v) -> + `Auto_semi ( + trans_automatic_semicolon (Run.matcher_token v) + ) + | Alt (1, v) -> + `SEMI ( + Run.trans_token (Run.matcher_token v) + ) + | _ -> assert false ) - | _ -> assert false - ) + ) + v4 ) | _ -> assert false ) @@ -3962,89 +3956,7 @@ and trans_else_clause ((kind, body) : mt) : CST.else_clause = | Seq [v0; v1] -> ( Run.trans_token (Run.matcher_token v0), - (match v1 with - | Alt (0, v) -> - `Export_stmt ( - trans_export_statement (Run.matcher_token v) - ) - | Alt (1, v) -> - `Import_stmt ( - trans_import_statement (Run.matcher_token v) - ) - | Alt (2, v) -> - `Debu_stmt ( - trans_debugger_statement (Run.matcher_token v) - ) - | Alt (3, v) -> - `Exp_stmt ( - trans_expression_statement (Run.matcher_token v) - ) - | Alt (4, v) -> - `Decl ( - trans_declaration (Run.matcher_token v) - ) - | Alt (5, v) -> - `Stmt_blk ( - trans_statement_block (Run.matcher_token v) - ) - | Alt (6, v) -> - `If_stmt ( - trans_if_statement (Run.matcher_token v) - ) - | Alt (7, v) -> - `Switch_stmt ( - trans_switch_statement (Run.matcher_token v) - ) - | Alt (8, v) -> - `For_stmt ( - trans_for_statement (Run.matcher_token v) - ) - | Alt (9, v) -> - `For_in_stmt ( - trans_for_in_statement (Run.matcher_token v) - ) - | Alt (10, v) -> - `While_stmt ( - trans_while_statement (Run.matcher_token v) - ) - | Alt (11, v) -> - `Do_stmt ( - trans_do_statement (Run.matcher_token v) - ) - | Alt (12, v) -> - `Try_stmt ( - trans_try_statement (Run.matcher_token v) - ) - | Alt (13, v) -> - `With_stmt ( - trans_with_statement (Run.matcher_token v) - ) - | Alt (14, v) -> - `Brk_stmt ( - trans_break_statement (Run.matcher_token v) - ) - | Alt (15, v) -> - `Cont_stmt ( - trans_continue_statement (Run.matcher_token v) - ) - | Alt (16, v) -> - `Ret_stmt ( - trans_return_statement (Run.matcher_token v) - ) - | Alt (17, v) -> - `Throw_stmt ( - trans_throw_statement (Run.matcher_token v) - ) - | Alt (18, v) -> - `Empty_stmt ( - trans_empty_statement (Run.matcher_token v) - ) - | Alt (19, v) -> - `Labe_stmt ( - trans_labeled_statement (Run.matcher_token v) - ) - | _ -> assert false - ) + trans_statement (Run.matcher_token v1) ) | _ -> assert false ) @@ -4057,96 +3969,58 @@ and trans_export_statement ((kind, body) : mt) : CST.export_statement = | Alt (0, v) -> `Export_choice_STAR_from_clause_choice_auto_semi ( (match v with - | Seq [v0; v1] -> + | Seq [v0; v1; v2] -> ( Run.trans_token (Run.matcher_token v0), (match v1 with | Alt (0, v) -> - `STAR_from_clause_choice_auto_semi ( + `STAR_from_clause ( (match v with - | Seq [v0; v1; v2] -> + | Seq [v0; v1] -> ( Run.trans_token (Run.matcher_token v0), - trans_from_clause (Run.matcher_token v1), - (match v2 with - | Alt (0, v) -> - `Auto_semi ( - trans_automatic_semicolon (Run.matcher_token v) - ) - | Alt (1, v) -> - `SEMI ( - Run.trans_token (Run.matcher_token v) - ) - | _ -> assert false - ) + trans_from_clause (Run.matcher_token v1) ) | _ -> assert false ) ) | Alt (1, v) -> - `Name_import_export_from_clause_choice_auto_semi ( + `Name_export_from_clause ( (match v with - | Seq [v0; v1; v2] -> + | Seq [v0; v1] -> ( - trans_namespace_import_export (Run.matcher_token v0), - trans_from_clause (Run.matcher_token v1), - (match v2 with - | Alt (0, v) -> - `Auto_semi ( - trans_automatic_semicolon (Run.matcher_token v) - ) - | Alt (1, v) -> - `SEMI ( - Run.trans_token (Run.matcher_token v) - ) - | _ -> assert false - ) + trans_namespace_export (Run.matcher_token v0), + trans_from_clause (Run.matcher_token v1) ) | _ -> assert false ) ) | Alt (2, v) -> - `Export_clause_from_clause_choice_auto_semi ( + `Export_clause_from_clause ( (match v with - | Seq [v0; v1; v2] -> + | Seq [v0; v1] -> ( trans_export_clause (Run.matcher_token v0), - trans_from_clause (Run.matcher_token v1), - (match v2 with - | Alt (0, v) -> - `Auto_semi ( - trans_automatic_semicolon (Run.matcher_token v) - ) - | Alt (1, v) -> - `SEMI ( - Run.trans_token (Run.matcher_token v) - ) - | _ -> assert false - ) + trans_from_clause (Run.matcher_token v1) ) | _ -> assert false ) ) | Alt (3, v) -> - `Export_clause_choice_auto_semi ( - (match v with - | Seq [v0; v1] -> - ( - trans_export_clause (Run.matcher_token v0), - (match v1 with - | Alt (0, v) -> - `Auto_semi ( - trans_automatic_semicolon (Run.matcher_token v) - ) - | Alt (1, v) -> - `SEMI ( - Run.trans_token (Run.matcher_token v) - ) - | _ -> assert false - ) - ) - | _ -> assert false - ) + `Export_clause ( + trans_export_clause (Run.matcher_token v) + ) + | _ -> assert false + ) + , + (match v2 with + | Alt (0, v) -> + `Auto_semi ( + trans_automatic_semicolon (Run.matcher_token v) + ) + | Alt (1, v) -> + `SEMI ( + Run.trans_token (Run.matcher_token v) ) | _ -> assert false ) @@ -4240,42 +4114,38 @@ and trans_expression ((kind, body) : mt) : CST.expression = ) ) | Alt (2, v) -> - `Jsx_frag ( - trans_jsx_fragment (Run.matcher_token v) - ) - | Alt (3, v) -> `Assign_exp ( trans_assignment_expression (Run.matcher_token v) ) - | Alt (4, v) -> + | Alt (3, v) -> `Augm_assign_exp ( trans_augmented_assignment_expression (Run.matcher_token v) ) - | Alt (5, v) -> + | Alt (4, v) -> `Await_exp ( trans_await_expression (Run.matcher_token v) ) - | Alt (6, v) -> + | Alt (5, v) -> `Un_exp ( trans_unary_expression (Run.matcher_token v) ) - | Alt (7, v) -> + | Alt (6, v) -> `Bin_exp ( trans_binary_expression (Run.matcher_token v) ) - | Alt (8, v) -> + | Alt (7, v) -> `Tern_exp ( trans_ternary_expression (Run.matcher_token v) ) - | Alt (9, v) -> + | Alt (8, v) -> `Update_exp ( trans_update_expression (Run.matcher_token v) ) - | Alt (10, v) -> + | Alt (9, v) -> `New_exp ( trans_new_expression (Run.matcher_token v) ) - | Alt (11, v) -> + | Alt (10, v) -> `Yield_exp ( trans_yield_expression (Run.matcher_token v) ) @@ -4412,6 +4282,10 @@ and trans_for_header ((kind, body) : mt) : CST.for_header = `Export ( Run.trans_token (Run.matcher_token v) ) + | Alt (5, v) -> + `Let ( + Run.trans_token (Run.matcher_token v) + ) | _ -> assert false ) ) @@ -4455,9 +4329,9 @@ and trans_for_header ((kind, body) : mt) : CST.for_header = ) ) | Alt (2, v) -> - `Choice_let_choice_id ( + `Choice_let_choice_id_opt_auto_semi ( (match v with - | Seq [v0; v1] -> + | Seq [v0; v1; v2] -> ( (match v0 with | Alt (0, v) -> @@ -4482,6 +4356,10 @@ and trans_for_header ((kind, body) : mt) : CST.for_header = ) | _ -> assert false ) + , + Run.opt + (fun v -> trans_automatic_semicolon (Run.matcher_token v)) + v2 ) | _ -> assert false ) @@ -4531,89 +4409,7 @@ and trans_for_in_statement ((kind, body) : mt) : CST.for_in_statement = v1 , trans_for_header (Run.matcher_token v2), - (match v3 with - | Alt (0, v) -> - `Export_stmt ( - trans_export_statement (Run.matcher_token v) - ) - | Alt (1, v) -> - `Import_stmt ( - trans_import_statement (Run.matcher_token v) - ) - | Alt (2, v) -> - `Debu_stmt ( - trans_debugger_statement (Run.matcher_token v) - ) - | Alt (3, v) -> - `Exp_stmt ( - trans_expression_statement (Run.matcher_token v) - ) - | Alt (4, v) -> - `Decl ( - trans_declaration (Run.matcher_token v) - ) - | Alt (5, v) -> - `Stmt_blk ( - trans_statement_block (Run.matcher_token v) - ) - | Alt (6, v) -> - `If_stmt ( - trans_if_statement (Run.matcher_token v) - ) - | Alt (7, v) -> - `Switch_stmt ( - trans_switch_statement (Run.matcher_token v) - ) - | Alt (8, v) -> - `For_stmt ( - trans_for_statement (Run.matcher_token v) - ) - | Alt (9, v) -> - `For_in_stmt ( - trans_for_in_statement (Run.matcher_token v) - ) - | Alt (10, v) -> - `While_stmt ( - trans_while_statement (Run.matcher_token v) - ) - | Alt (11, v) -> - `Do_stmt ( - trans_do_statement (Run.matcher_token v) - ) - | Alt (12, v) -> - `Try_stmt ( - trans_try_statement (Run.matcher_token v) - ) - | Alt (13, v) -> - `With_stmt ( - trans_with_statement (Run.matcher_token v) - ) - | Alt (14, v) -> - `Brk_stmt ( - trans_break_statement (Run.matcher_token v) - ) - | Alt (15, v) -> - `Cont_stmt ( - trans_continue_statement (Run.matcher_token v) - ) - | Alt (16, v) -> - `Ret_stmt ( - trans_return_statement (Run.matcher_token v) - ) - | Alt (17, v) -> - `Throw_stmt ( - trans_throw_statement (Run.matcher_token v) - ) - | Alt (18, v) -> - `Empty_stmt ( - trans_empty_statement (Run.matcher_token v) - ) - | Alt (19, v) -> - `Labe_stmt ( - trans_labeled_statement (Run.matcher_token v) - ) - | _ -> assert false - ) + trans_statement (Run.matcher_token v3) ) | _ -> assert false ) @@ -4629,18 +4425,42 @@ and trans_for_statement ((kind, body) : mt) : CST.for_statement = Run.trans_token (Run.matcher_token v1), (match v2 with | Alt (0, v) -> - `Lexi_decl ( - trans_lexical_declaration (Run.matcher_token v) + `Choice_lexi_decl ( + (match v with + | Alt (0, v) -> + `Lexi_decl ( + trans_lexical_declaration (Run.matcher_token v) + ) + | Alt (1, v) -> + `Var_decl ( + trans_variable_declaration (Run.matcher_token v) + ) + | _ -> assert false + ) ) | Alt (1, v) -> - `Var_decl ( - trans_variable_declaration (Run.matcher_token v) + `Choice_exp_SEMI ( + (match v with + | Seq [v0; v1] -> + ( + (match v0 with + | Alt (0, v) -> + `Exp ( + trans_expression (Run.matcher_token v) + ) + | Alt (1, v) -> + `Seq_exp ( + trans_sequence_expression (Run.matcher_token v) + ) + | _ -> assert false + ) + , + Run.trans_token (Run.matcher_token v1) + ) + | _ -> assert false + ) ) | Alt (2, v) -> - `Exp_stmt ( - trans_expression_statement (Run.matcher_token v) - ) - | Alt (3, v) -> `Empty_stmt ( trans_empty_statement (Run.matcher_token v) ) @@ -4649,8 +4469,26 @@ and trans_for_statement ((kind, body) : mt) : CST.for_statement = , (match v3 with | Alt (0, v) -> - `Exp_stmt ( - trans_expression_statement (Run.matcher_token v) + `Choice_exp_SEMI ( + (match v with + | Seq [v0; v1] -> + ( + (match v0 with + | Alt (0, v) -> + `Exp ( + trans_expression (Run.matcher_token v) + ) + | Alt (1, v) -> + `Seq_exp ( + trans_sequence_expression (Run.matcher_token v) + ) + | _ -> assert false + ) + , + Run.trans_token (Run.matcher_token v1) + ) + | _ -> assert false + ) ) | Alt (1, v) -> `Empty_stmt ( @@ -4676,89 +4514,7 @@ and trans_for_statement ((kind, body) : mt) : CST.for_statement = v4 , Run.trans_token (Run.matcher_token v5), - (match v6 with - | Alt (0, v) -> - `Export_stmt ( - trans_export_statement (Run.matcher_token v) - ) - | Alt (1, v) -> - `Import_stmt ( - trans_import_statement (Run.matcher_token v) - ) - | Alt (2, v) -> - `Debu_stmt ( - trans_debugger_statement (Run.matcher_token v) - ) - | Alt (3, v) -> - `Exp_stmt ( - trans_expression_statement (Run.matcher_token v) - ) - | Alt (4, v) -> - `Decl ( - trans_declaration (Run.matcher_token v) - ) - | Alt (5, v) -> - `Stmt_blk ( - trans_statement_block (Run.matcher_token v) - ) - | Alt (6, v) -> - `If_stmt ( - trans_if_statement (Run.matcher_token v) - ) - | Alt (7, v) -> - `Switch_stmt ( - trans_switch_statement (Run.matcher_token v) - ) - | Alt (8, v) -> - `For_stmt ( - trans_for_statement (Run.matcher_token v) - ) - | Alt (9, v) -> - `For_in_stmt ( - trans_for_in_statement (Run.matcher_token v) - ) - | Alt (10, v) -> - `While_stmt ( - trans_while_statement (Run.matcher_token v) - ) - | Alt (11, v) -> - `Do_stmt ( - trans_do_statement (Run.matcher_token v) - ) - | Alt (12, v) -> - `Try_stmt ( - trans_try_statement (Run.matcher_token v) - ) - | Alt (13, v) -> - `With_stmt ( - trans_with_statement (Run.matcher_token v) - ) - | Alt (14, v) -> - `Brk_stmt ( - trans_break_statement (Run.matcher_token v) - ) - | Alt (15, v) -> - `Cont_stmt ( - trans_continue_statement (Run.matcher_token v) - ) - | Alt (16, v) -> - `Ret_stmt ( - trans_return_statement (Run.matcher_token v) - ) - | Alt (17, v) -> - `Throw_stmt ( - trans_throw_statement (Run.matcher_token v) - ) - | Alt (18, v) -> - `Empty_stmt ( - trans_empty_statement (Run.matcher_token v) - ) - | Alt (19, v) -> - `Labe_stmt ( - trans_labeled_statement (Run.matcher_token v) - ) - | _ -> assert false - ) + trans_statement (Run.matcher_token v6) ) | _ -> assert false ) @@ -4826,45 +4582,45 @@ and trans_formal_parameters ((kind, body) : mt) : CST.formal_parameters = ) | Leaf _ -> assert false -and trans_function_ ((kind, body) : mt) : CST.function_ = +and trans_function_declaration ((kind, body) : mt) : CST.function_declaration = match body with | Children v -> (match v with - | Seq [v0; v1; v2; v3; v4] -> + | Seq [v0; v1; v2; v3; v4; v5] -> ( Run.opt (fun v -> Run.trans_token (Run.matcher_token v)) v0 , Run.trans_token (Run.matcher_token v1), - Run.opt - (fun v -> trans_identifier (Run.matcher_token v)) - v2 - , + trans_identifier (Run.matcher_token v2), trans_formal_parameters (Run.matcher_token v3), - trans_statement_block (Run.matcher_token v4) + trans_statement_block (Run.matcher_token v4), + Run.opt + (fun v -> trans_automatic_semicolon (Run.matcher_token v)) + v5 ) | _ -> assert false ) | Leaf _ -> assert false -and trans_function_declaration ((kind, body) : mt) : CST.function_declaration = +and trans_function_expression ((kind, body) : mt) : CST.function_expression = match body with | Children v -> (match v with - | Seq [v0; v1; v2; v3; v4; v5] -> + | Seq [v0; v1; v2; v3; v4] -> ( Run.opt (fun v -> Run.trans_token (Run.matcher_token v)) v0 , Run.trans_token (Run.matcher_token v1), - trans_identifier (Run.matcher_token v2), - trans_formal_parameters (Run.matcher_token v3), - trans_statement_block (Run.matcher_token v4), Run.opt - (fun v -> trans_automatic_semicolon (Run.matcher_token v)) - v5 + (fun v -> trans_identifier (Run.matcher_token v)) + v2 + , + trans_formal_parameters (Run.matcher_token v3), + trans_statement_block (Run.matcher_token v4) ) | _ -> assert false ) @@ -4924,93 +4680,69 @@ and trans_if_statement ((kind, body) : mt) : CST.if_statement = ( Run.trans_token (Run.matcher_token v0), trans_parenthesized_expression (Run.matcher_token v1), - (match v2 with + trans_statement (Run.matcher_token v2), + Run.opt + (fun v -> trans_else_clause (Run.matcher_token v)) + v3 + ) + | _ -> assert false + ) + | Leaf _ -> assert false + +and trans_import_attribute ((kind, body) : mt) : CST.import_attribute = + match body with + | Children v -> + (match v with + | Seq [v0; v1] -> + ( + Run.trans_token (Run.matcher_token v0), + trans_object_ (Run.matcher_token v1) + ) + | _ -> assert false + ) + | Leaf _ -> assert false + +and trans_import_statement ((kind, body) : mt) : CST.import_statement = + match body with + | Children v -> + (match v with + | Seq [v0; v1; v2; v3] -> + ( + Run.trans_token (Run.matcher_token v0), + (match v1 with | Alt (0, v) -> - `Export_stmt ( - trans_export_statement (Run.matcher_token v) + `Import_clause_from_clause ( + (match v with + | Seq [v0; v1] -> + ( + trans_import_clause (Run.matcher_token v0), + trans_from_clause (Run.matcher_token v1) + ) + | _ -> assert false + ) ) | Alt (1, v) -> - `Import_stmt ( - trans_import_statement (Run.matcher_token v) - ) - | Alt (2, v) -> - `Debu_stmt ( - trans_debugger_statement (Run.matcher_token v) - ) - | Alt (3, v) -> - `Exp_stmt ( - trans_expression_statement (Run.matcher_token v) - ) - | Alt (4, v) -> - `Decl ( - trans_declaration (Run.matcher_token v) - ) - | Alt (5, v) -> - `Stmt_blk ( - trans_statement_block (Run.matcher_token v) - ) - | Alt (6, v) -> - `If_stmt ( - trans_if_statement (Run.matcher_token v) - ) - | Alt (7, v) -> - `Switch_stmt ( - trans_switch_statement (Run.matcher_token v) - ) - | Alt (8, v) -> - `For_stmt ( - trans_for_statement (Run.matcher_token v) - ) - | Alt (9, v) -> - `For_in_stmt ( - trans_for_in_statement (Run.matcher_token v) - ) - | Alt (10, v) -> - `While_stmt ( - trans_while_statement (Run.matcher_token v) - ) - | Alt (11, v) -> - `Do_stmt ( - trans_do_statement (Run.matcher_token v) - ) - | Alt (12, v) -> - `Try_stmt ( - trans_try_statement (Run.matcher_token v) - ) - | Alt (13, v) -> - `With_stmt ( - trans_with_statement (Run.matcher_token v) - ) - | Alt (14, v) -> - `Brk_stmt ( - trans_break_statement (Run.matcher_token v) - ) - | Alt (15, v) -> - `Cont_stmt ( - trans_continue_statement (Run.matcher_token v) - ) - | Alt (16, v) -> - `Ret_stmt ( - trans_return_statement (Run.matcher_token v) - ) - | Alt (17, v) -> - `Throw_stmt ( - trans_throw_statement (Run.matcher_token v) + `Str ( + trans_string_ (Run.matcher_token v) ) - | Alt (18, v) -> - `Empty_stmt ( - trans_empty_statement (Run.matcher_token v) + | _ -> assert false + ) + , + Run.opt + (fun v -> trans_import_attribute (Run.matcher_token v)) + v2 + , + (match v3 with + | Alt (0, v) -> + `Auto_semi ( + trans_automatic_semicolon (Run.matcher_token v) ) - | Alt (19, v) -> - `Labe_stmt ( - trans_labeled_statement (Run.matcher_token v) + | Alt (1, v) -> + `SEMI ( + Run.trans_token (Run.matcher_token v) ) | _ -> assert false ) - , - Run.opt - (fun v -> trans_else_clause (Run.matcher_token v)) - v3 ) | _ -> assert false ) @@ -5065,8 +4797,8 @@ and trans_jsx_attribute ((kind, body) : mt) : CST.jsx_attribute = Run.trans_token (Run.matcher_token v0), (match v1 with | Alt (0, v) -> - `Str ( - trans_string_ (Run.matcher_token v) + `Jsx_str ( + trans_jsx_string (Run.matcher_token v) ) | Alt (1, v) -> `Jsx_exp ( @@ -5086,10 +4818,6 @@ and trans_jsx_attribute ((kind, body) : mt) : CST.jsx_attribute = | _ -> assert false ) ) - | Alt (3, v) -> - `Jsx_frag ( - trans_jsx_fragment (Run.matcher_token v) - ) | _ -> assert false ) ) @@ -5113,30 +4841,40 @@ and trans_jsx_element ((kind, body) : mt) : CST.jsx_element = (fun v -> (match v with | Alt (0, v) -> - `Jsx_text ( - trans_jsx_text (Run.matcher_token v) - ) - | Alt (1, v) -> - `Choice_jsx_elem ( + `Choice_jsx_text ( (match v with | Alt (0, v) -> - `Jsx_elem ( - trans_jsx_element (Run.matcher_token v) + `Jsx_text ( + trans_jsx_text (Run.matcher_token v) ) | Alt (1, v) -> - `Jsx_self_clos_elem ( - trans_jsx_self_closing_element (Run.matcher_token v) + `Html_char_ref ( + trans_html_character_reference (Run.matcher_token v) + ) + | Alt (2, v) -> + `Choice_jsx_elem ( + (match v with + | Alt (0, v) -> + `Jsx_elem ( + trans_jsx_element (Run.matcher_token v) + ) + | Alt (1, v) -> + `Jsx_self_clos_elem ( + trans_jsx_self_closing_element (Run.matcher_token v) + ) + | _ -> assert false + ) + ) + | Alt (3, v) -> + `Jsx_exp ( + trans_jsx_expression (Run.matcher_token v) ) | _ -> assert false ) ) - | Alt (2, v) -> - `Jsx_frag ( - trans_jsx_fragment (Run.matcher_token v) - ) - | Alt (3, v) -> - `Jsx_exp ( - trans_jsx_expression (Run.matcher_token v) + | Alt (1, v) -> + `GT ( + Run.trans_token (Run.matcher_token v) ) | _ -> assert false ) @@ -5182,57 +4920,72 @@ and trans_jsx_expression ((kind, body) : mt) : CST.jsx_expression = ) | Leaf _ -> assert false -and trans_jsx_fragment ((kind, body) : mt) : CST.jsx_fragment = +and trans_jsx_opening_element ((kind, body) : mt) : CST.jsx_opening_element = match body with | Children v -> (match v with - | Seq [v0; v1; v2; v3; v4; v5] -> + | Seq [v0; v1; v2] -> ( Run.trans_token (Run.matcher_token v0), - Run.trans_token (Run.matcher_token v1), - Run.repeat + Run.opt (fun v -> (match v with - | Alt (0, v) -> - `Jsx_text ( - trans_jsx_text (Run.matcher_token v) - ) - | Alt (1, v) -> - `Choice_jsx_elem ( - (match v with + | Seq [v0; v1] -> + ( + (match v0 with | Alt (0, v) -> - `Jsx_elem ( - trans_jsx_element (Run.matcher_token v) + `Choice_jsx_id ( + (match v with + | Alt (0, v) -> + `Jsx_id ( + trans_jsx_identifier (Run.matcher_token v) + ) + | Alt (1, v) -> + `Id ( + trans_identifier (Run.matcher_token v) + ) + | _ -> assert false + ) ) | Alt (1, v) -> - `Jsx_self_clos_elem ( - trans_jsx_self_closing_element (Run.matcher_token v) + `Nested_id ( + trans_nested_identifier (Run.matcher_token v) + ) + | Alt (2, v) -> + `Jsx_name_name ( + trans_jsx_namespace_name (Run.matcher_token v) ) | _ -> assert false ) - ) - | Alt (2, v) -> - `Jsx_frag ( - trans_jsx_fragment (Run.matcher_token v) - ) - | Alt (3, v) -> - `Jsx_exp ( - trans_jsx_expression (Run.matcher_token v) + , + Run.repeat + (fun v -> + (match v with + | Alt (0, v) -> + `Jsx_attr ( + trans_jsx_attribute (Run.matcher_token v) + ) + | Alt (1, v) -> + `Jsx_exp ( + trans_jsx_expression (Run.matcher_token v) + ) + | _ -> assert false + ) + ) + v1 ) | _ -> assert false ) ) - v2 + v1 , - Run.trans_token (Run.matcher_token v3), - Run.trans_token (Run.matcher_token v4), - Run.trans_token (Run.matcher_token v5) + Run.trans_token (Run.matcher_token v2) ) | _ -> assert false ) | Leaf _ -> assert false -and trans_jsx_opening_element ((kind, body) : mt) : CST.jsx_opening_element = +and trans_jsx_self_closing_element ((kind, body) : mt) : CST.jsx_self_closing_element = match body with | Children v -> (match v with @@ -5287,62 +5040,6 @@ and trans_jsx_opening_element ((kind, body) : mt) : CST.jsx_opening_element = ) | Leaf _ -> assert false -and trans_jsx_self_closing_element ((kind, body) : mt) : CST.jsx_self_closing_element = - match body with - | Children v -> - (match v with - | Seq [v0; v1; v2; v3; v4] -> - ( - Run.trans_token (Run.matcher_token v0), - (match v1 with - | Alt (0, v) -> - `Choice_jsx_id ( - (match v with - | Alt (0, v) -> - `Jsx_id ( - trans_jsx_identifier (Run.matcher_token v) - ) - | Alt (1, v) -> - `Id ( - trans_identifier (Run.matcher_token v) - ) - | _ -> assert false - ) - ) - | Alt (1, v) -> - `Nested_id ( - trans_nested_identifier (Run.matcher_token v) - ) - | Alt (2, v) -> - `Jsx_name_name ( - trans_jsx_namespace_name (Run.matcher_token v) - ) - | _ -> assert false - ) - , - Run.repeat - (fun v -> - (match v with - | Alt (0, v) -> - `Jsx_attr ( - trans_jsx_attribute (Run.matcher_token v) - ) - | Alt (1, v) -> - `Jsx_exp ( - trans_jsx_expression (Run.matcher_token v) - ) - | _ -> assert false - ) - ) - v2 - , - Run.trans_token (Run.matcher_token v3), - Run.trans_token (Run.matcher_token v4) - ) - | _ -> assert false - ) - | Leaf _ -> assert false - and trans_labeled_statement ((kind, body) : mt) : CST.labeled_statement = match body with | Children v -> @@ -5377,6 +5074,10 @@ and trans_labeled_statement ((kind, body) : mt) : CST.labeled_statement = `Export ( Run.trans_token (Run.matcher_token v) ) + | Alt (5, v) -> + `Let ( + Run.trans_token (Run.matcher_token v) + ) | _ -> assert false ) ) @@ -5384,89 +5085,7 @@ and trans_labeled_statement ((kind, body) : mt) : CST.labeled_statement = ) , Run.trans_token (Run.matcher_token v1), - (match v2 with - | Alt (0, v) -> - `Export_stmt ( - trans_export_statement (Run.matcher_token v) - ) - | Alt (1, v) -> - `Import_stmt ( - trans_import_statement (Run.matcher_token v) - ) - | Alt (2, v) -> - `Debu_stmt ( - trans_debugger_statement (Run.matcher_token v) - ) - | Alt (3, v) -> - `Exp_stmt ( - trans_expression_statement (Run.matcher_token v) - ) - | Alt (4, v) -> - `Decl ( - trans_declaration (Run.matcher_token v) - ) - | Alt (5, v) -> - `Stmt_blk ( - trans_statement_block (Run.matcher_token v) - ) - | Alt (6, v) -> - `If_stmt ( - trans_if_statement (Run.matcher_token v) - ) - | Alt (7, v) -> - `Switch_stmt ( - trans_switch_statement (Run.matcher_token v) - ) - | Alt (8, v) -> - `For_stmt ( - trans_for_statement (Run.matcher_token v) - ) - | Alt (9, v) -> - `For_in_stmt ( - trans_for_in_statement (Run.matcher_token v) - ) - | Alt (10, v) -> - `While_stmt ( - trans_while_statement (Run.matcher_token v) - ) - | Alt (11, v) -> - `Do_stmt ( - trans_do_statement (Run.matcher_token v) - ) - | Alt (12, v) -> - `Try_stmt ( - trans_try_statement (Run.matcher_token v) - ) - | Alt (13, v) -> - `With_stmt ( - trans_with_statement (Run.matcher_token v) - ) - | Alt (14, v) -> - `Brk_stmt ( - trans_break_statement (Run.matcher_token v) - ) - | Alt (15, v) -> - `Cont_stmt ( - trans_continue_statement (Run.matcher_token v) - ) - | Alt (16, v) -> - `Ret_stmt ( - trans_return_statement (Run.matcher_token v) - ) - | Alt (17, v) -> - `Throw_stmt ( - trans_throw_statement (Run.matcher_token v) - ) - | Alt (18, v) -> - `Empty_stmt ( - trans_empty_statement (Run.matcher_token v) - ) - | Alt (19, v) -> - `Labe_stmt ( - trans_labeled_statement (Run.matcher_token v) - ) - | _ -> assert false - ) + trans_statement (Run.matcher_token v2) ) | _ -> assert false ) @@ -5535,6 +5154,10 @@ and trans_member_expression ((kind, body) : mt) : CST.member_expression = `Prim_exp ( trans_primary_expression (Run.matcher_token v) ) + | Alt (2, v) -> + `Import ( + trans_import (Run.matcher_token v) + ) | _ -> assert false ) , @@ -5544,8 +5167,8 @@ and trans_member_expression ((kind, body) : mt) : CST.member_expression = Run.trans_token (Run.matcher_token v) ) | Alt (1, v) -> - `QMARKDOT ( - Run.trans_token (Run.matcher_token v) + `Opt_chain ( + trans_optional_chain (Run.matcher_token v) ) | _ -> assert false ) @@ -5577,7 +5200,19 @@ and trans_method_definition ((kind, body) : mt) : CST.method_definition = v0 , Run.opt - (fun v -> Run.trans_token (Run.matcher_token v)) + (fun v -> + (match v with + | Alt (0, v) -> + `Static ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (1, v) -> + `Tok_static_pat_3d340f6_get_pat_3d59095 ( + trans_tok_static_pat_3d340f6_get_pat_3d59095 (Run.matcher_token v) + ) + | _ -> assert false + ) + ) v1 , Run.opt @@ -5696,6 +5331,10 @@ and trans_object_ ((kind, body) : mt) : CST.object_ = `Export ( Run.trans_token (Run.matcher_token v) ) + | Alt (5, v) -> + `Let ( + Run.trans_token (Run.matcher_token v) + ) | _ -> assert false ) ) @@ -5758,6 +5397,10 @@ and trans_object_ ((kind, body) : mt) : CST.object_ = `Export ( Run.trans_token (Run.matcher_token v) ) + | Alt (5, v) -> + `Let ( + Run.trans_token (Run.matcher_token v) + ) | _ -> assert false ) ) @@ -5818,6 +5461,10 @@ and trans_object_assignment_pattern ((kind, body) : mt) : CST.object_assignment_ `Export ( Run.trans_token (Run.matcher_token v) ) + | Alt (5, v) -> + `Let ( + Run.trans_token (Run.matcher_token v) + ) | _ -> assert false ) ) @@ -5899,6 +5546,10 @@ and trans_object_pattern ((kind, body) : mt) : CST.object_pattern = `Export ( Run.trans_token (Run.matcher_token v) ) + | Alt (5, v) -> + `Let ( + Run.trans_token (Run.matcher_token v) + ) | _ -> assert false ) ) @@ -5961,6 +5612,10 @@ and trans_object_pattern ((kind, body) : mt) : CST.object_pattern = `Export ( Run.trans_token (Run.matcher_token v) ) + | Alt (5, v) -> + `Let ( + Run.trans_token (Run.matcher_token v) + ) | _ -> assert false ) ) @@ -6103,6 +5758,10 @@ and trans_pattern ((kind, body) : mt) : CST.pattern = `Export ( Run.trans_token (Run.matcher_token v) ) + | Alt (5, v) -> + `Let ( + Run.trans_token (Run.matcher_token v) + ) | _ -> assert false ) ) @@ -6174,6 +5833,10 @@ and trans_primary_expression ((kind, body) : mt) : CST.primary_expression = `Export ( Run.trans_token (Run.matcher_token v) ) + | Alt (5, v) -> + `Let ( + Run.trans_token (Run.matcher_token v) + ) | _ -> assert false ) ) @@ -6214,38 +5877,34 @@ and trans_primary_expression ((kind, body) : mt) : CST.primary_expression = trans_null (Run.matcher_token v) ) | Alt (14, v) -> - `Import ( - trans_import (Run.matcher_token v) - ) - | Alt (15, v) -> `Obj ( trans_object_ (Run.matcher_token v) ) - | Alt (16, v) -> + | Alt (15, v) -> `Array ( trans_array_ (Run.matcher_token v) ) - | Alt (17, v) -> - `Func ( - trans_function_ (Run.matcher_token v) + | Alt (16, v) -> + `Func_exp ( + trans_function_expression (Run.matcher_token v) ) - | Alt (18, v) -> + | Alt (17, v) -> `Arrow_func ( trans_arrow_function (Run.matcher_token v) ) - | Alt (19, v) -> + | Alt (18, v) -> `Gene_func ( trans_generator_function (Run.matcher_token v) ) - | Alt (20, v) -> + | Alt (19, v) -> `Class ( trans_class_ (Run.matcher_token v) ) - | Alt (21, v) -> + | Alt (20, v) -> `Meta_prop ( trans_meta_property (Run.matcher_token v) ) - | Alt (22, v) -> + | Alt (21, v) -> `Call_exp ( trans_call_expression (Run.matcher_token v) ) @@ -6287,6 +5946,10 @@ and trans_property_name ((kind, body) : mt) : CST.property_name = `Export ( Run.trans_token (Run.matcher_token v) ) + | Alt (5, v) -> + `Let ( + Run.trans_token (Run.matcher_token v) + ) | _ -> assert false ) ) @@ -6366,6 +6029,10 @@ and trans_rest_pattern ((kind, body) : mt) : CST.rest_pattern = `Export ( Run.trans_token (Run.matcher_token v) ) + | Alt (5, v) -> + `Let ( + Run.trans_token (Run.matcher_token v) + ) | _ -> assert false ) ) @@ -6423,21 +6090,21 @@ and trans_sequence_expression ((kind, body) : mt) : CST.sequence_expression = match body with | Children v -> (match v with - | Seq [v0; v1; v2] -> + | Seq [v0; v1] -> ( trans_expression (Run.matcher_token v0), - Run.trans_token (Run.matcher_token v1), - (match v2 with - | Alt (0, v) -> - `Seq_exp ( - trans_sequence_expression (Run.matcher_token v) - ) - | Alt (1, v) -> - `Exp ( - trans_expression (Run.matcher_token v) + Run.repeat + (fun v -> + (match v with + | Seq [v0; v1] -> + ( + Run.trans_token (Run.matcher_token v0), + trans_expression (Run.matcher_token v1) + ) + | _ -> assert false ) - | _ -> assert false - ) + ) + v1 ) | _ -> assert false ) @@ -6456,6 +6123,94 @@ and trans_spread_element ((kind, body) : mt) : CST.spread_element = ) | Leaf _ -> assert false +and trans_statement ((kind, body) : mt) : CST.statement = + match body with + | Children v -> + (match v with + | Alt (0, v) -> + `Export_stmt ( + trans_export_statement (Run.matcher_token v) + ) + | Alt (1, v) -> + `Import_stmt ( + trans_import_statement (Run.matcher_token v) + ) + | Alt (2, v) -> + `Debu_stmt ( + trans_debugger_statement (Run.matcher_token v) + ) + | Alt (3, v) -> + `Exp_stmt ( + trans_expression_statement (Run.matcher_token v) + ) + | Alt (4, v) -> + `Decl ( + trans_declaration (Run.matcher_token v) + ) + | Alt (5, v) -> + `Stmt_blk ( + trans_statement_block (Run.matcher_token v) + ) + | Alt (6, v) -> + `If_stmt ( + trans_if_statement (Run.matcher_token v) + ) + | Alt (7, v) -> + `Switch_stmt ( + trans_switch_statement (Run.matcher_token v) + ) + | Alt (8, v) -> + `For_stmt ( + trans_for_statement (Run.matcher_token v) + ) + | Alt (9, v) -> + `For_in_stmt ( + trans_for_in_statement (Run.matcher_token v) + ) + | Alt (10, v) -> + `While_stmt ( + trans_while_statement (Run.matcher_token v) + ) + | Alt (11, v) -> + `Do_stmt ( + trans_do_statement (Run.matcher_token v) + ) + | Alt (12, v) -> + `Try_stmt ( + trans_try_statement (Run.matcher_token v) + ) + | Alt (13, v) -> + `With_stmt ( + trans_with_statement (Run.matcher_token v) + ) + | Alt (14, v) -> + `Brk_stmt ( + trans_break_statement (Run.matcher_token v) + ) + | Alt (15, v) -> + `Cont_stmt ( + trans_continue_statement (Run.matcher_token v) + ) + | Alt (16, v) -> + `Ret_stmt ( + trans_return_statement (Run.matcher_token v) + ) + | Alt (17, v) -> + `Throw_stmt ( + trans_throw_statement (Run.matcher_token v) + ) + | Alt (18, v) -> + `Empty_stmt ( + trans_empty_statement (Run.matcher_token v) + ) + | Alt (19, v) -> + `Labe_stmt ( + trans_labeled_statement (Run.matcher_token v) + ) + | _ -> assert false + ) + | Leaf _ -> assert false + and trans_statement_block ((kind, body) : mt) : CST.statement_block = match body with | Children v -> @@ -6464,91 +6219,7 @@ and trans_statement_block ((kind, body) : mt) : CST.statement_block = ( Run.trans_token (Run.matcher_token v0), Run.repeat - (fun v -> - (match v with - | Alt (0, v) -> - `Export_stmt ( - trans_export_statement (Run.matcher_token v) - ) - | Alt (1, v) -> - `Import_stmt ( - trans_import_statement (Run.matcher_token v) - ) - | Alt (2, v) -> - `Debu_stmt ( - trans_debugger_statement (Run.matcher_token v) - ) - | Alt (3, v) -> - `Exp_stmt ( - trans_expression_statement (Run.matcher_token v) - ) - | Alt (4, v) -> - `Decl ( - trans_declaration (Run.matcher_token v) - ) - | Alt (5, v) -> - `Stmt_blk ( - trans_statement_block (Run.matcher_token v) - ) - | Alt (6, v) -> - `If_stmt ( - trans_if_statement (Run.matcher_token v) - ) - | Alt (7, v) -> - `Switch_stmt ( - trans_switch_statement (Run.matcher_token v) - ) - | Alt (8, v) -> - `For_stmt ( - trans_for_statement (Run.matcher_token v) - ) - | Alt (9, v) -> - `For_in_stmt ( - trans_for_in_statement (Run.matcher_token v) - ) - | Alt (10, v) -> - `While_stmt ( - trans_while_statement (Run.matcher_token v) - ) - | Alt (11, v) -> - `Do_stmt ( - trans_do_statement (Run.matcher_token v) - ) - | Alt (12, v) -> - `Try_stmt ( - trans_try_statement (Run.matcher_token v) - ) - | Alt (13, v) -> - `With_stmt ( - trans_with_statement (Run.matcher_token v) - ) - | Alt (14, v) -> - `Brk_stmt ( - trans_break_statement (Run.matcher_token v) - ) - | Alt (15, v) -> - `Cont_stmt ( - trans_continue_statement (Run.matcher_token v) - ) - | Alt (16, v) -> - `Ret_stmt ( - trans_return_statement (Run.matcher_token v) - ) - | Alt (17, v) -> - `Throw_stmt ( - trans_throw_statement (Run.matcher_token v) - ) - | Alt (18, v) -> - `Empty_stmt ( - trans_empty_statement (Run.matcher_token v) - ) - | Alt (19, v) -> - `Labe_stmt ( - trans_labeled_statement (Run.matcher_token v) - ) - | _ -> assert false - ) - ) + (fun v -> trans_statement (Run.matcher_token v)) v1 , Run.trans_token (Run.matcher_token v2), @@ -6579,7 +6250,7 @@ and trans_subscript_expression ((kind, body) : mt) : CST.subscript_expression = ) , Run.opt - (fun v -> Run.trans_token (Run.matcher_token v)) + (fun v -> trans_optional_chain (Run.matcher_token v)) v1 , Run.trans_token (Run.matcher_token v2), @@ -6651,91 +6322,7 @@ and trans_switch_case ((kind, body) : mt) : CST.switch_case = , Run.trans_token (Run.matcher_token v2), Run.repeat - (fun v -> - (match v with - | Alt (0, v) -> - `Export_stmt ( - trans_export_statement (Run.matcher_token v) - ) - | Alt (1, v) -> - `Import_stmt ( - trans_import_statement (Run.matcher_token v) - ) - | Alt (2, v) -> - `Debu_stmt ( - trans_debugger_statement (Run.matcher_token v) - ) - | Alt (3, v) -> - `Exp_stmt ( - trans_expression_statement (Run.matcher_token v) - ) - | Alt (4, v) -> - `Decl ( - trans_declaration (Run.matcher_token v) - ) - | Alt (5, v) -> - `Stmt_blk ( - trans_statement_block (Run.matcher_token v) - ) - | Alt (6, v) -> - `If_stmt ( - trans_if_statement (Run.matcher_token v) - ) - | Alt (7, v) -> - `Switch_stmt ( - trans_switch_statement (Run.matcher_token v) - ) - | Alt (8, v) -> - `For_stmt ( - trans_for_statement (Run.matcher_token v) - ) - | Alt (9, v) -> - `For_in_stmt ( - trans_for_in_statement (Run.matcher_token v) - ) - | Alt (10, v) -> - `While_stmt ( - trans_while_statement (Run.matcher_token v) - ) - | Alt (11, v) -> - `Do_stmt ( - trans_do_statement (Run.matcher_token v) - ) - | Alt (12, v) -> - `Try_stmt ( - trans_try_statement (Run.matcher_token v) - ) - | Alt (13, v) -> - `With_stmt ( - trans_with_statement (Run.matcher_token v) - ) - | Alt (14, v) -> - `Brk_stmt ( - trans_break_statement (Run.matcher_token v) - ) - | Alt (15, v) -> - `Cont_stmt ( - trans_continue_statement (Run.matcher_token v) - ) - | Alt (16, v) -> - `Ret_stmt ( - trans_return_statement (Run.matcher_token v) - ) - | Alt (17, v) -> - `Throw_stmt ( - trans_throw_statement (Run.matcher_token v) - ) - | Alt (18, v) -> - `Empty_stmt ( - trans_empty_statement (Run.matcher_token v) - ) - | Alt (19, v) -> - `Labe_stmt ( - trans_labeled_statement (Run.matcher_token v) - ) - | _ -> assert false - ) - ) + (fun v -> trans_statement (Run.matcher_token v)) v3 ) | _ -> assert false @@ -6751,91 +6338,7 @@ and trans_switch_default ((kind, body) : mt) : CST.switch_default = Run.trans_token (Run.matcher_token v0), Run.trans_token (Run.matcher_token v1), Run.repeat - (fun v -> - (match v with - | Alt (0, v) -> - `Export_stmt ( - trans_export_statement (Run.matcher_token v) - ) - | Alt (1, v) -> - `Import_stmt ( - trans_import_statement (Run.matcher_token v) - ) - | Alt (2, v) -> - `Debu_stmt ( - trans_debugger_statement (Run.matcher_token v) - ) - | Alt (3, v) -> - `Exp_stmt ( - trans_expression_statement (Run.matcher_token v) - ) - | Alt (4, v) -> - `Decl ( - trans_declaration (Run.matcher_token v) - ) - | Alt (5, v) -> - `Stmt_blk ( - trans_statement_block (Run.matcher_token v) - ) - | Alt (6, v) -> - `If_stmt ( - trans_if_statement (Run.matcher_token v) - ) - | Alt (7, v) -> - `Switch_stmt ( - trans_switch_statement (Run.matcher_token v) - ) - | Alt (8, v) -> - `For_stmt ( - trans_for_statement (Run.matcher_token v) - ) - | Alt (9, v) -> - `For_in_stmt ( - trans_for_in_statement (Run.matcher_token v) - ) - | Alt (10, v) -> - `While_stmt ( - trans_while_statement (Run.matcher_token v) - ) - | Alt (11, v) -> - `Do_stmt ( - trans_do_statement (Run.matcher_token v) - ) - | Alt (12, v) -> - `Try_stmt ( - trans_try_statement (Run.matcher_token v) - ) - | Alt (13, v) -> - `With_stmt ( - trans_with_statement (Run.matcher_token v) - ) - | Alt (14, v) -> - `Brk_stmt ( - trans_break_statement (Run.matcher_token v) - ) - | Alt (15, v) -> - `Cont_stmt ( - trans_continue_statement (Run.matcher_token v) - ) - | Alt (16, v) -> - `Ret_stmt ( - trans_return_statement (Run.matcher_token v) - ) - | Alt (17, v) -> - `Throw_stmt ( - trans_throw_statement (Run.matcher_token v) - ) - | Alt (18, v) -> - `Empty_stmt ( - trans_empty_statement (Run.matcher_token v) - ) - | Alt (19, v) -> - `Labe_stmt ( - trans_labeled_statement (Run.matcher_token v) - ) - | _ -> assert false - ) - ) + (fun v -> trans_statement (Run.matcher_token v)) v2 ) | _ -> assert false @@ -7151,89 +6654,7 @@ and trans_while_statement ((kind, body) : mt) : CST.while_statement = ( Run.trans_token (Run.matcher_token v0), trans_parenthesized_expression (Run.matcher_token v1), - (match v2 with - | Alt (0, v) -> - `Export_stmt ( - trans_export_statement (Run.matcher_token v) - ) - | Alt (1, v) -> - `Import_stmt ( - trans_import_statement (Run.matcher_token v) - ) - | Alt (2, v) -> - `Debu_stmt ( - trans_debugger_statement (Run.matcher_token v) - ) - | Alt (3, v) -> - `Exp_stmt ( - trans_expression_statement (Run.matcher_token v) - ) - | Alt (4, v) -> - `Decl ( - trans_declaration (Run.matcher_token v) - ) - | Alt (5, v) -> - `Stmt_blk ( - trans_statement_block (Run.matcher_token v) - ) - | Alt (6, v) -> - `If_stmt ( - trans_if_statement (Run.matcher_token v) - ) - | Alt (7, v) -> - `Switch_stmt ( - trans_switch_statement (Run.matcher_token v) - ) - | Alt (8, v) -> - `For_stmt ( - trans_for_statement (Run.matcher_token v) - ) - | Alt (9, v) -> - `For_in_stmt ( - trans_for_in_statement (Run.matcher_token v) - ) - | Alt (10, v) -> - `While_stmt ( - trans_while_statement (Run.matcher_token v) - ) - | Alt (11, v) -> - `Do_stmt ( - trans_do_statement (Run.matcher_token v) - ) - | Alt (12, v) -> - `Try_stmt ( - trans_try_statement (Run.matcher_token v) - ) - | Alt (13, v) -> - `With_stmt ( - trans_with_statement (Run.matcher_token v) - ) - | Alt (14, v) -> - `Brk_stmt ( - trans_break_statement (Run.matcher_token v) - ) - | Alt (15, v) -> - `Cont_stmt ( - trans_continue_statement (Run.matcher_token v) - ) - | Alt (16, v) -> - `Ret_stmt ( - trans_return_statement (Run.matcher_token v) - ) - | Alt (17, v) -> - `Throw_stmt ( - trans_throw_statement (Run.matcher_token v) - ) - | Alt (18, v) -> - `Empty_stmt ( - trans_empty_statement (Run.matcher_token v) - ) - | Alt (19, v) -> - `Labe_stmt ( - trans_labeled_statement (Run.matcher_token v) - ) - | _ -> assert false - ) + trans_statement (Run.matcher_token v2) ) | _ -> assert false ) @@ -7247,89 +6668,7 @@ and trans_with_statement ((kind, body) : mt) : CST.with_statement = ( Run.trans_token (Run.matcher_token v0), trans_parenthesized_expression (Run.matcher_token v1), - (match v2 with - | Alt (0, v) -> - `Export_stmt ( - trans_export_statement (Run.matcher_token v) - ) - | Alt (1, v) -> - `Import_stmt ( - trans_import_statement (Run.matcher_token v) - ) - | Alt (2, v) -> - `Debu_stmt ( - trans_debugger_statement (Run.matcher_token v) - ) - | Alt (3, v) -> - `Exp_stmt ( - trans_expression_statement (Run.matcher_token v) - ) - | Alt (4, v) -> - `Decl ( - trans_declaration (Run.matcher_token v) - ) - | Alt (5, v) -> - `Stmt_blk ( - trans_statement_block (Run.matcher_token v) - ) - | Alt (6, v) -> - `If_stmt ( - trans_if_statement (Run.matcher_token v) - ) - | Alt (7, v) -> - `Switch_stmt ( - trans_switch_statement (Run.matcher_token v) - ) - | Alt (8, v) -> - `For_stmt ( - trans_for_statement (Run.matcher_token v) - ) - | Alt (9, v) -> - `For_in_stmt ( - trans_for_in_statement (Run.matcher_token v) - ) - | Alt (10, v) -> - `While_stmt ( - trans_while_statement (Run.matcher_token v) - ) - | Alt (11, v) -> - `Do_stmt ( - trans_do_statement (Run.matcher_token v) - ) - | Alt (12, v) -> - `Try_stmt ( - trans_try_statement (Run.matcher_token v) - ) - | Alt (13, v) -> - `With_stmt ( - trans_with_statement (Run.matcher_token v) - ) - | Alt (14, v) -> - `Brk_stmt ( - trans_break_statement (Run.matcher_token v) - ) - | Alt (15, v) -> - `Cont_stmt ( - trans_continue_statement (Run.matcher_token v) - ) - | Alt (16, v) -> - `Ret_stmt ( - trans_return_statement (Run.matcher_token v) - ) - | Alt (17, v) -> - `Throw_stmt ( - trans_throw_statement (Run.matcher_token v) - ) - | Alt (18, v) -> - `Empty_stmt ( - trans_empty_statement (Run.matcher_token v) - ) - | Alt (19, v) -> - `Labe_stmt ( - trans_labeled_statement (Run.matcher_token v) - ) - | _ -> assert false - ) + trans_statement (Run.matcher_token v2) ) | _ -> assert false ) @@ -7373,9 +6712,6 @@ and trans_yield_expression ((kind, body) : mt) : CST.yield_expression = - - - let trans_program ((kind, body) : mt) : CST.program = match body with | Children v -> @@ -7387,97 +6723,15 @@ let trans_program ((kind, body) : mt) : CST.program = v0 , Run.repeat - (fun v -> - (match v with - | Alt (0, v) -> - `Export_stmt ( - trans_export_statement (Run.matcher_token v) - ) - | Alt (1, v) -> - `Import_stmt ( - trans_import_statement (Run.matcher_token v) - ) - | Alt (2, v) -> - `Debu_stmt ( - trans_debugger_statement (Run.matcher_token v) - ) - | Alt (3, v) -> - `Exp_stmt ( - trans_expression_statement (Run.matcher_token v) - ) - | Alt (4, v) -> - `Decl ( - trans_declaration (Run.matcher_token v) - ) - | Alt (5, v) -> - `Stmt_blk ( - trans_statement_block (Run.matcher_token v) - ) - | Alt (6, v) -> - `If_stmt ( - trans_if_statement (Run.matcher_token v) - ) - | Alt (7, v) -> - `Switch_stmt ( - trans_switch_statement (Run.matcher_token v) - ) - | Alt (8, v) -> - `For_stmt ( - trans_for_statement (Run.matcher_token v) - ) - | Alt (9, v) -> - `For_in_stmt ( - trans_for_in_statement (Run.matcher_token v) - ) - | Alt (10, v) -> - `While_stmt ( - trans_while_statement (Run.matcher_token v) - ) - | Alt (11, v) -> - `Do_stmt ( - trans_do_statement (Run.matcher_token v) - ) - | Alt (12, v) -> - `Try_stmt ( - trans_try_statement (Run.matcher_token v) - ) - | Alt (13, v) -> - `With_stmt ( - trans_with_statement (Run.matcher_token v) - ) - | Alt (14, v) -> - `Brk_stmt ( - trans_break_statement (Run.matcher_token v) - ) - | Alt (15, v) -> - `Cont_stmt ( - trans_continue_statement (Run.matcher_token v) - ) - | Alt (16, v) -> - `Ret_stmt ( - trans_return_statement (Run.matcher_token v) - ) - | Alt (17, v) -> - `Throw_stmt ( - trans_throw_statement (Run.matcher_token v) - ) - | Alt (18, v) -> - `Empty_stmt ( - trans_empty_statement (Run.matcher_token v) - ) - | Alt (19, v) -> - `Labe_stmt ( - trans_labeled_statement (Run.matcher_token v) - ) - | _ -> assert false - ) - ) + (fun v -> trans_statement (Run.matcher_token v)) v1 ) | _ -> assert false ) | Leaf _ -> assert false + + (* Costly operation that translates a whole tree or subtree. @@ -7504,6 +6758,10 @@ let translate_extra src (node : Tree_sitter_output_t.node) : CST.extra option = (match translate_tree src node trans_comment with | None -> None | Some x -> Some (`Comment (Run.get_loc node, x))) + | "html_comment" -> + (match translate_tree src node trans_html_comment with + | None -> None + | Some x -> Some (`Html_comment (Run.get_loc node, x))) | _ -> None let translate_root src root_node = diff --git a/lib/bindings.c b/lib/bindings.c index 90bb78c..6776858 100644 --- a/lib/bindings.c +++ b/lib/bindings.c @@ -9,6 +9,7 @@ #include #include #include +#include #include #include #include @@ -40,12 +41,26 @@ CAMLprim value octs_create_parser_javascript(value unit) { CAMLparam0(); CAMLlocal1(v); - parser_W parserWrapper; TSParser *parser = ts_parser_new(); + + // Fail loudly on an ABI version mismatch: ts_parser_set_language returns + // false (and assigns no language) when the compiled grammar's ABI version + // is outside the linked runtime's supported range. Raising here -- before + // allocating the boxed parser value -- avoids silently handing back a + // parser that yields empty parse trees, and keeps the cleanup path + // unambiguous (no half-initialized custom block for the finalizer to see). + if (!ts_parser_set_language(parser, tree_sitter_javascript())) { + ts_parser_delete(parser); + caml_failwith( + "ts_parser_set_language failed for javascript: the compiled " + "grammar's ABI version is incompatible with the linked tree-sitter " + "runtime"); + } + + parser_W parserWrapper; parserWrapper.parser = parser; v = caml_alloc_custom(&parser_custom_ops, sizeof(parser_W), 0, 1); memcpy(Data_custom_val(v), &parserWrapper, sizeof(parser_W)); - ts_parser_set_language(parser, tree_sitter_javascript()); CAMLreturn(v); }; diff --git a/lib/parser.c b/lib/parser.c index e77356f..5b8bbd9 100644 --- a/lib/parser.c +++ b/lib/parser.c @@ -1,54 +1,53 @@ -#include +#include "tree_sitter/parser.h" #if defined(__GNUC__) || defined(__clang__) -#pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif -#define LANGUAGE_VERSION 13 -#define STATE_COUNT 1442 -#define LARGE_STATE_COUNT 269 -#define SYMBOL_COUNT 241 -#define ALIAS_COUNT 1 -#define TOKEN_COUNT 125 -#define EXTERNAL_TOKEN_COUNT 3 -#define FIELD_COUNT 35 -#define MAX_ALIAS_SEQUENCE_LENGTH 7 -#define PRODUCTION_ID_COUNT 85 +#define LANGUAGE_VERSION 14 +#define STATE_COUNT 1642 +#define LARGE_STATE_COUNT 305 +#define SYMBOL_COUNT 259 +#define ALIAS_COUNT 2 +#define TOKEN_COUNT 133 +#define EXTERNAL_TOKEN_COUNT 8 +#define FIELD_COUNT 36 +#define MAX_ALIAS_SEQUENCE_LENGTH 9 +#define PRODUCTION_ID_COUNT 97 -enum { +enum ts_symbol_identifiers { sym_identifier = 1, sym_hash_bang_line = 2, anon_sym_export = 3, anon_sym_STAR = 4, anon_sym_SEMI = 5, anon_sym_default = 6, - anon_sym_LBRACE = 7, - anon_sym_COMMA = 8, - anon_sym_RBRACE = 9, - anon_sym_as = 10, + anon_sym_as = 7, + anon_sym_LBRACE = 8, + anon_sym_COMMA = 9, + anon_sym_RBRACE = 10, anon_sym_import = 11, anon_sym_from = 12, - anon_sym_var = 13, - anon_sym_let = 14, - anon_sym_const = 15, - anon_sym_else = 16, - anon_sym_if = 17, - anon_sym_switch = 18, - anon_sym_for = 19, - anon_sym_LPAREN = 20, - anon_sym_RPAREN = 21, - anon_sym_await = 22, - anon_sym_get = 23, - anon_sym_set = 24, - anon_sym_async = 25, - anon_sym_static = 26, - anon_sym_in = 27, - anon_sym_of = 28, - anon_sym_while = 29, - anon_sym_do = 30, - anon_sym_try = 31, - anon_sym_with = 32, + anon_sym_with = 13, + anon_sym_var = 14, + anon_sym_let = 15, + anon_sym_const = 16, + anon_sym_else = 17, + anon_sym_if = 18, + anon_sym_switch = 19, + anon_sym_for = 20, + anon_sym_LPAREN = 21, + anon_sym_RPAREN = 22, + anon_sym_await = 23, + anon_sym_get = 24, + anon_sym_set = 25, + anon_sym_async = 26, + anon_sym_static = 27, + anon_sym_in = 28, + anon_sym_of = 29, + anon_sym_while = 30, + anon_sym_do = 31, + anon_sym_try = 32, anon_sym_break = 33, anon_sym_continue = 34, anon_sym_debugger = 35, @@ -62,202 +61,221 @@ enum { anon_sym_EQ = 43, anon_sym_LBRACK = 44, anon_sym_RBRACK = 45, - anon_sym_LT = 46, - anon_sym_GT = 47, - anon_sym_SLASH = 48, - sym_jsx_text = 49, - sym_jsx_identifier = 50, - anon_sym_DOT = 51, - anon_sym_class = 52, - anon_sym_extends = 53, - anon_sym_function = 54, - anon_sym_EQ_GT = 55, - anon_sym_QMARK_DOT = 56, - anon_sym_new = 57, - anon_sym_PLUS_EQ = 58, - anon_sym_DASH_EQ = 59, - anon_sym_STAR_EQ = 60, - anon_sym_SLASH_EQ = 61, - anon_sym_PERCENT_EQ = 62, - anon_sym_CARET_EQ = 63, - anon_sym_AMP_EQ = 64, - anon_sym_PIPE_EQ = 65, - anon_sym_GT_GT_EQ = 66, - anon_sym_GT_GT_GT_EQ = 67, - anon_sym_LT_LT_EQ = 68, - anon_sym_STAR_STAR_EQ = 69, - anon_sym_AMP_AMP_EQ = 70, - anon_sym_PIPE_PIPE_EQ = 71, - anon_sym_QMARK_QMARK_EQ = 72, - anon_sym_DOT_DOT_DOT = 73, - anon_sym_AMP_AMP = 74, - anon_sym_PIPE_PIPE = 75, - anon_sym_GT_GT = 76, - anon_sym_GT_GT_GT = 77, - anon_sym_LT_LT = 78, - anon_sym_AMP = 79, - anon_sym_CARET = 80, - anon_sym_PIPE = 81, - anon_sym_PLUS = 82, - anon_sym_DASH = 83, - anon_sym_PERCENT = 84, - anon_sym_STAR_STAR = 85, - anon_sym_LT_EQ = 86, - anon_sym_EQ_EQ = 87, - anon_sym_EQ_EQ_EQ = 88, - anon_sym_BANG_EQ = 89, - anon_sym_BANG_EQ_EQ = 90, - anon_sym_GT_EQ = 91, - anon_sym_QMARK_QMARK = 92, - anon_sym_instanceof = 93, - anon_sym_BANG = 94, - anon_sym_TILDE = 95, - anon_sym_typeof = 96, - anon_sym_void = 97, - anon_sym_delete = 98, - anon_sym_PLUS_PLUS = 99, - anon_sym_DASH_DASH = 100, - anon_sym_DQUOTE = 101, - anon_sym_SQUOTE = 102, - sym_unescaped_double_string_fragment = 103, - sym_unescaped_single_string_fragment = 104, - sym_escape_sequence = 105, - sym_comment = 106, - anon_sym_BQUOTE = 107, - anon_sym_DOLLAR_LBRACE = 108, - anon_sym_SLASH2 = 109, - sym_regex_pattern = 110, - sym_regex_flags = 111, - sym_number = 112, - sym_private_property_identifier = 113, - anon_sym_target = 114, - sym_this = 115, - sym_super = 116, - sym_true = 117, - sym_false = 118, - sym_null = 119, - sym_undefined = 120, - anon_sym_AT = 121, - sym_automatic_semicolon = 122, - sym_template_chars = 123, - sym_ternary_qmark = 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_export = 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_primary_expression = 165, - sym_yield_expression = 166, - sym_object = 167, - sym_object_pattern = 168, - sym_assignment_pattern = 169, - sym_object_assignment_pattern = 170, - sym_array = 171, - sym_array_pattern = 172, - sym_jsx_element = 173, - sym_jsx_fragment = 174, - sym_jsx_expression = 175, - sym_jsx_opening_element = 176, - sym_nested_identifier = 177, - sym_jsx_namespace_name = 178, - sym_jsx_closing_element = 179, - sym_jsx_self_closing_element = 180, - sym_jsx_attribute = 181, - sym_class = 182, - sym_class_declaration = 183, - sym_class_heritage = 184, - sym_function = 185, - sym_function_declaration = 186, - sym_generator_function = 187, - sym_generator_function_declaration = 188, - sym_arrow_function = 189, - sym_call_expression = 190, - sym_new_expression = 191, - sym_await_expression = 192, - sym_member_expression = 193, - sym_subscript_expression = 194, - sym_assignment_expression = 195, - sym_augmented_assignment_lhs = 196, - sym_augmented_assignment_expression = 197, - sym_initializer = 198, - sym_destructuring_pattern = 199, - sym_spread_element = 200, - sym_ternary_expression = 201, - sym_binary_expression = 202, - sym_unary_expression = 203, - sym_update_expression = 204, - sym_sequence_expression = 205, - sym_string = 206, - sym_template_string = 207, - sym_template_substitution = 208, - sym_regex = 209, - sym_meta_property = 210, - sym_arguments = 211, - sym_decorator = 212, - sym_decorator_member_expression = 213, - sym_decorator_call_expression = 214, - sym_class_body = 215, - sym_field_definition = 216, - sym_formal_parameters = 217, - sym_pattern = 218, - sym_rest_pattern = 219, - sym_method_definition = 220, - sym_pair = 221, - sym_pair_pattern = 222, - sym_property_name = 223, - sym_computed_property_name = 224, - aux_sym_program_repeat1 = 225, - aux_sym_export_statement_repeat1 = 226, - aux_sym_export_clause_repeat1 = 227, - aux_sym_variable_declaration_repeat1 = 228, - aux_sym_switch_body_repeat1 = 229, - aux_sym_object_repeat1 = 230, - aux_sym_object_pattern_repeat1 = 231, - aux_sym_array_repeat1 = 232, - aux_sym_array_pattern_repeat1 = 233, - aux_sym_jsx_element_repeat1 = 234, - aux_sym_jsx_opening_element_repeat1 = 235, - aux_sym_string_repeat1 = 236, - aux_sym_string_repeat2 = 237, - aux_sym_template_string_repeat1 = 238, - aux_sym_class_body_repeat1 = 239, - aux_sym_formal_parameters_repeat1 = 240, - alias_sym_imm_tok_slash = 241, + anon_sym_GT = 46, + sym_html_character_reference = 47, + anon_sym_LT = 48, + sym_jsx_identifier = 49, + anon_sym_DOT = 50, + anon_sym_LT_SLASH = 51, + anon_sym_SLASH_GT = 52, + anon_sym_DQUOTE = 53, + anon_sym_SQUOTE = 54, + sym_unescaped_double_jsx_string_fragment = 55, + sym_unescaped_single_jsx_string_fragment = 56, + anon_sym_class = 57, + anon_sym_extends = 58, + anon_sym_function = 59, + anon_sym_EQ_GT = 60, + sym_optional_chain = 61, + anon_sym_new = 62, + anon_sym_PLUS_EQ = 63, + anon_sym_DASH_EQ = 64, + anon_sym_STAR_EQ = 65, + anon_sym_SLASH_EQ = 66, + anon_sym_PERCENT_EQ = 67, + anon_sym_CARET_EQ = 68, + anon_sym_AMP_EQ = 69, + anon_sym_PIPE_EQ = 70, + anon_sym_GT_GT_EQ = 71, + anon_sym_GT_GT_GT_EQ = 72, + anon_sym_LT_LT_EQ = 73, + anon_sym_STAR_STAR_EQ = 74, + anon_sym_AMP_AMP_EQ = 75, + anon_sym_PIPE_PIPE_EQ = 76, + anon_sym_QMARK_QMARK_EQ = 77, + anon_sym_DOT_DOT_DOT = 78, + anon_sym_AMP_AMP = 79, + anon_sym_PIPE_PIPE = 80, + anon_sym_GT_GT = 81, + anon_sym_GT_GT_GT = 82, + anon_sym_LT_LT = 83, + anon_sym_AMP = 84, + anon_sym_CARET = 85, + anon_sym_PIPE = 86, + anon_sym_PLUS = 87, + anon_sym_DASH = 88, + anon_sym_SLASH = 89, + anon_sym_PERCENT = 90, + anon_sym_STAR_STAR = 91, + anon_sym_LT_EQ = 92, + anon_sym_EQ_EQ = 93, + anon_sym_EQ_EQ_EQ = 94, + anon_sym_BANG_EQ = 95, + anon_sym_BANG_EQ_EQ = 96, + anon_sym_GT_EQ = 97, + anon_sym_QMARK_QMARK = 98, + anon_sym_instanceof = 99, + anon_sym_BANG = 100, + anon_sym_TILDE = 101, + anon_sym_typeof = 102, + anon_sym_void = 103, + anon_sym_delete = 104, + anon_sym_PLUS_PLUS = 105, + anon_sym_DASH_DASH = 106, + sym_unescaped_double_string_fragment = 107, + sym_unescaped_single_string_fragment = 108, + sym_escape_sequence = 109, + sym_comment = 110, + anon_sym_BQUOTE = 111, + anon_sym_DOLLAR_LBRACE = 112, + anon_sym_SLASH2 = 113, + sym_regex_pattern = 114, + sym_regex_flags = 115, + sym_number = 116, + sym_private_property_identifier = 117, + anon_sym_target = 118, + anon_sym_meta = 119, + sym_this = 120, + sym_super = 121, + sym_true = 122, + sym_false = 123, + sym_null = 124, + sym_undefined = 125, + anon_sym_AT = 126, + aux_sym_method_definition_token1 = 127, + sym_automatic_semicolon = 128, + sym_template_chars = 129, + sym_ternary_qmark = 130, + sym_html_comment = 131, + sym_jsx_text = 132, + sym_program = 133, + sym_export_statement = 134, + sym_namespace_export = 135, + sym_export_clause = 136, + sym_export_specifier = 137, + sym_module_export_name = 138, + sym_declaration = 139, + sym_import = 140, + sym_import_statement = 141, + sym_import_clause = 142, + sym_from_clause = 143, + sym_namespace_import = 144, + sym_named_imports = 145, + sym_import_specifier = 146, + sym_import_attribute = 147, + sym_statement = 148, + sym_expression_statement = 149, + sym_variable_declaration = 150, + sym_lexical_declaration = 151, + sym_variable_declarator = 152, + sym_statement_block = 153, + sym_else_clause = 154, + sym_if_statement = 155, + sym_switch_statement = 156, + sym_for_statement = 157, + sym_for_in_statement = 158, + sym_for_header = 159, + sym_while_statement = 160, + sym_do_statement = 161, + sym_try_statement = 162, + sym_with_statement = 163, + sym_break_statement = 164, + sym_continue_statement = 165, + sym_debugger_statement = 166, + sym_return_statement = 167, + sym_throw_statement = 168, + sym_empty_statement = 169, + sym_labeled_statement = 170, + sym_switch_body = 171, + sym_switch_case = 172, + sym_switch_default = 173, + sym_catch_clause = 174, + sym_finally_clause = 175, + sym_parenthesized_expression = 176, + sym_expression = 177, + sym_primary_expression = 178, + sym_yield_expression = 179, + sym_object = 180, + sym_object_pattern = 181, + sym_assignment_pattern = 182, + sym_object_assignment_pattern = 183, + sym_array = 184, + sym_array_pattern = 185, + sym_jsx_element = 186, + sym_jsx_expression = 187, + sym_jsx_opening_element = 188, + sym_nested_identifier = 189, + sym_jsx_namespace_name = 190, + sym_jsx_closing_element = 191, + sym_jsx_self_closing_element = 192, + sym_jsx_attribute = 193, + sym_jsx_string = 194, + sym_class = 195, + sym_class_declaration = 196, + sym_class_heritage = 197, + sym_function_expression = 198, + sym_function_declaration = 199, + sym_generator_function = 200, + sym_generator_function_declaration = 201, + sym_arrow_function = 202, + sym_call_expression = 203, + sym_new_expression = 204, + sym_await_expression = 205, + sym_member_expression = 206, + sym_subscript_expression = 207, + sym_assignment_expression = 208, + sym_augmented_assignment_lhs = 209, + sym_augmented_assignment_expression = 210, + sym_initializer = 211, + sym_destructuring_pattern = 212, + sym_spread_element = 213, + sym_ternary_expression = 214, + sym_binary_expression = 215, + sym_unary_expression = 216, + sym_update_expression = 217, + sym_sequence_expression = 218, + sym_string = 219, + sym_template_string = 220, + sym_template_substitution = 221, + sym_regex = 222, + sym_meta_property = 223, + sym_arguments = 224, + sym_decorator = 225, + sym_decorator_member_expression = 226, + sym_decorator_call_expression = 227, + sym_class_body = 228, + sym_field_definition = 229, + sym_formal_parameters = 230, + sym_class_static_block = 231, + sym_pattern = 232, + sym_rest_pattern = 233, + sym_method_definition = 234, + sym_pair = 235, + sym_pair_pattern = 236, + sym_property_name = 237, + sym_computed_property_name = 238, + aux_sym_program_repeat1 = 239, + aux_sym_export_statement_repeat1 = 240, + aux_sym_export_clause_repeat1 = 241, + aux_sym_named_imports_repeat1 = 242, + aux_sym_variable_declaration_repeat1 = 243, + aux_sym_switch_body_repeat1 = 244, + aux_sym_object_repeat1 = 245, + aux_sym_object_pattern_repeat1 = 246, + aux_sym_array_repeat1 = 247, + aux_sym_array_pattern_repeat1 = 248, + aux_sym_jsx_element_repeat1 = 249, + aux_sym_jsx_opening_element_repeat1 = 250, + aux_sym_jsx_string_repeat1 = 251, + aux_sym_jsx_string_repeat2 = 252, + aux_sym_sequence_expression_repeat1 = 253, + aux_sym_string_repeat1 = 254, + aux_sym_string_repeat2 = 255, + aux_sym_template_string_repeat1 = 256, + aux_sym_class_body_repeat1 = 257, + aux_sym_formal_parameters_repeat1 = 258, + alias_sym_imm_tok_prec_p1_slash = 259, + alias_sym_tok_static_pat_3d340f6_get_pat_3d59095 = 260, }; static const char * const ts_symbol_names[] = { @@ -268,12 +286,13 @@ static const char * const ts_symbol_names[] = { [anon_sym_STAR] = "*", [anon_sym_SEMI] = ";", [anon_sym_default] = "default", + [anon_sym_as] = "as", [anon_sym_LBRACE] = "{", [anon_sym_COMMA] = ",", [anon_sym_RBRACE] = "}", - [anon_sym_as] = "as", [anon_sym_import] = "import", [anon_sym_from] = "from", + [anon_sym_with] = "with", [anon_sym_var] = "var", [anon_sym_let] = "let", [anon_sym_const] = "const", @@ -293,7 +312,6 @@ static const char * const ts_symbol_names[] = { [anon_sym_while] = "while", [anon_sym_do] = "do", [anon_sym_try] = "try", - [anon_sym_with] = "with", [anon_sym_break] = "break", [anon_sym_continue] = "continue", [anon_sym_debugger] = "debugger", @@ -307,17 +325,22 @@ static const char * const ts_symbol_names[] = { [anon_sym_EQ] = "=", [anon_sym_LBRACK] = "[", [anon_sym_RBRACK] = "]", - [anon_sym_LT] = "<", [anon_sym_GT] = ">", - [anon_sym_SLASH] = "/", - [sym_jsx_text] = "jsx_text", + [sym_html_character_reference] = "html_character_reference", + [anon_sym_LT] = "<", [sym_jsx_identifier] = "jsx_identifier", [anon_sym_DOT] = ".", + [anon_sym_LT_SLASH] = "", + [anon_sym_DQUOTE] = "\"", + [anon_sym_SQUOTE] = "'", + [sym_unescaped_double_jsx_string_fragment] = "unescaped_double_jsx_string_fragment", + [sym_unescaped_single_jsx_string_fragment] = "unescaped_single_jsx_string_fragment", [anon_sym_class] = "class", [anon_sym_extends] = "extends", [anon_sym_function] = "function", [anon_sym_EQ_GT] = "=>", - [anon_sym_QMARK_DOT] = "\?.", + [sym_optional_chain] = "optional_chain", [anon_sym_new] = "new", [anon_sym_PLUS_EQ] = "+=", [anon_sym_DASH_EQ] = "-=", @@ -345,6 +368,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_PIPE] = "|", [anon_sym_PLUS] = "+", [anon_sym_DASH] = "-", + [anon_sym_SLASH] = "/", [anon_sym_PERCENT] = "%", [anon_sym_STAR_STAR] = "**", [anon_sym_LT_EQ] = "<=", @@ -362,8 +386,6 @@ static const char * const ts_symbol_names[] = { [anon_sym_delete] = "delete", [anon_sym_PLUS_PLUS] = "++", [anon_sym_DASH_DASH] = "--", - [anon_sym_DQUOTE] = "\"", - [anon_sym_SQUOTE] = "'", [sym_unescaped_double_string_fragment] = "unescaped_double_string_fragment", [sym_unescaped_single_string_fragment] = "unescaped_single_string_fragment", [sym_escape_sequence] = "escape_sequence", @@ -376,6 +398,7 @@ static const char * const ts_symbol_names[] = { [sym_number] = "number", [sym_private_property_identifier] = "private_property_identifier", [anon_sym_target] = "target", + [anon_sym_meta] = "meta", [sym_this] = "this", [sym_super] = "super", [sym_true] = "true", @@ -383,20 +406,28 @@ static const char * const ts_symbol_names[] = { [sym_null] = "null", [sym_undefined] = "undefined", [anon_sym_AT] = "@", + [aux_sym_method_definition_token1] = "method_definition_token1", [sym_automatic_semicolon] = "automatic_semicolon", [sym_template_chars] = "template_chars", [sym_ternary_qmark] = "ternary_qmark", + [sym_html_comment] = "html_comment", + [sym_jsx_text] = "jsx_text", [sym_program] = "program", [sym_export_statement] = "export_statement", + [sym_namespace_export] = "namespace_export", [sym_export_clause] = "export_clause", - [sym_import_export_specifier] = "import_export_specifier", + [sym_export_specifier] = "export_specifier", + [sym_module_export_name] = "module_export_name", [sym_declaration] = "declaration", [sym_import] = "import", [sym_import_statement] = "import_statement", [sym_import_clause] = "import_clause", [sym_from_clause] = "from_clause", - [sym_namespace_import_export] = "namespace_import_export", + [sym_namespace_import] = "namespace_import", [sym_named_imports] = "named_imports", + [sym_import_specifier] = "import_specifier", + [sym_import_attribute] = "import_attribute", + [sym_statement] = "statement", [sym_expression_statement] = "expression_statement", [sym_variable_declaration] = "variable_declaration", [sym_lexical_declaration] = "lexical_declaration", @@ -435,7 +466,6 @@ static const char * const ts_symbol_names[] = { [sym_array] = "array", [sym_array_pattern] = "array_pattern", [sym_jsx_element] = "jsx_element", - [sym_jsx_fragment] = "jsx_fragment", [sym_jsx_expression] = "jsx_expression", [sym_jsx_opening_element] = "jsx_opening_element", [sym_nested_identifier] = "nested_identifier", @@ -443,10 +473,11 @@ static const char * const ts_symbol_names[] = { [sym_jsx_closing_element] = "jsx_closing_element", [sym_jsx_self_closing_element] = "jsx_self_closing_element", [sym_jsx_attribute] = "jsx_attribute", + [sym_jsx_string] = "jsx_string", [sym_class] = "class", [sym_class_declaration] = "class_declaration", [sym_class_heritage] = "class_heritage", - [sym_function] = "function", + [sym_function_expression] = "function_expression", [sym_function_declaration] = "function_declaration", [sym_generator_function] = "generator_function", [sym_generator_function_declaration] = "generator_function_declaration", @@ -479,6 +510,7 @@ static const char * const ts_symbol_names[] = { [sym_class_body] = "class_body", [sym_field_definition] = "field_definition", [sym_formal_parameters] = "formal_parameters", + [sym_class_static_block] = "class_static_block", [sym_pattern] = "pattern", [sym_rest_pattern] = "rest_pattern", [sym_method_definition] = "method_definition", @@ -489,6 +521,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_program_repeat1] = "program_repeat1", [aux_sym_export_statement_repeat1] = "export_statement_repeat1", [aux_sym_export_clause_repeat1] = "export_clause_repeat1", + [aux_sym_named_imports_repeat1] = "named_imports_repeat1", [aux_sym_variable_declaration_repeat1] = "variable_declaration_repeat1", [aux_sym_switch_body_repeat1] = "switch_body_repeat1", [aux_sym_object_repeat1] = "object_repeat1", @@ -497,12 +530,16 @@ static const char * const ts_symbol_names[] = { [aux_sym_array_pattern_repeat1] = "array_pattern_repeat1", [aux_sym_jsx_element_repeat1] = "jsx_element_repeat1", [aux_sym_jsx_opening_element_repeat1] = "jsx_opening_element_repeat1", + [aux_sym_jsx_string_repeat1] = "jsx_string_repeat1", + [aux_sym_jsx_string_repeat2] = "jsx_string_repeat2", + [aux_sym_sequence_expression_repeat1] = "sequence_expression_repeat1", [aux_sym_string_repeat1] = "string_repeat1", [aux_sym_string_repeat2] = "string_repeat2", [aux_sym_template_string_repeat1] = "template_string_repeat1", [aux_sym_class_body_repeat1] = "class_body_repeat1", [aux_sym_formal_parameters_repeat1] = "formal_parameters_repeat1", - [alias_sym_imm_tok_slash] = "imm_tok_slash", + [alias_sym_imm_tok_prec_p1_slash] = "imm_tok_prec_p1_slash", + [alias_sym_tok_static_pat_3d340f6_get_pat_3d59095] = "tok_static_pat_3d340f6_get_pat_3d59095", }; static const TSSymbol ts_symbol_map[] = { @@ -513,12 +550,13 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_STAR] = anon_sym_STAR, [anon_sym_SEMI] = anon_sym_SEMI, [anon_sym_default] = anon_sym_default, + [anon_sym_as] = anon_sym_as, [anon_sym_LBRACE] = anon_sym_LBRACE, [anon_sym_COMMA] = anon_sym_COMMA, [anon_sym_RBRACE] = anon_sym_RBRACE, - [anon_sym_as] = anon_sym_as, [anon_sym_import] = anon_sym_import, [anon_sym_from] = anon_sym_from, + [anon_sym_with] = anon_sym_with, [anon_sym_var] = anon_sym_var, [anon_sym_let] = anon_sym_let, [anon_sym_const] = anon_sym_const, @@ -538,7 +576,6 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_while] = anon_sym_while, [anon_sym_do] = anon_sym_do, [anon_sym_try] = anon_sym_try, - [anon_sym_with] = anon_sym_with, [anon_sym_break] = anon_sym_break, [anon_sym_continue] = anon_sym_continue, [anon_sym_debugger] = anon_sym_debugger, @@ -552,17 +589,22 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_EQ] = anon_sym_EQ, [anon_sym_LBRACK] = anon_sym_LBRACK, [anon_sym_RBRACK] = anon_sym_RBRACK, - [anon_sym_LT] = anon_sym_LT, [anon_sym_GT] = anon_sym_GT, - [anon_sym_SLASH] = anon_sym_SLASH, - [sym_jsx_text] = sym_jsx_text, + [sym_html_character_reference] = sym_html_character_reference, + [anon_sym_LT] = anon_sym_LT, [sym_jsx_identifier] = sym_jsx_identifier, [anon_sym_DOT] = anon_sym_DOT, + [anon_sym_LT_SLASH] = anon_sym_LT_SLASH, + [anon_sym_SLASH_GT] = anon_sym_SLASH_GT, + [anon_sym_DQUOTE] = anon_sym_DQUOTE, + [anon_sym_SQUOTE] = anon_sym_SQUOTE, + [sym_unescaped_double_jsx_string_fragment] = sym_unescaped_double_jsx_string_fragment, + [sym_unescaped_single_jsx_string_fragment] = sym_unescaped_single_jsx_string_fragment, [anon_sym_class] = anon_sym_class, [anon_sym_extends] = anon_sym_extends, [anon_sym_function] = anon_sym_function, [anon_sym_EQ_GT] = anon_sym_EQ_GT, - [anon_sym_QMARK_DOT] = anon_sym_QMARK_DOT, + [sym_optional_chain] = sym_optional_chain, [anon_sym_new] = anon_sym_new, [anon_sym_PLUS_EQ] = anon_sym_PLUS_EQ, [anon_sym_DASH_EQ] = anon_sym_DASH_EQ, @@ -590,6 +632,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_PIPE] = anon_sym_PIPE, [anon_sym_PLUS] = anon_sym_PLUS, [anon_sym_DASH] = anon_sym_DASH, + [anon_sym_SLASH] = anon_sym_SLASH, [anon_sym_PERCENT] = anon_sym_PERCENT, [anon_sym_STAR_STAR] = anon_sym_STAR_STAR, [anon_sym_LT_EQ] = anon_sym_LT_EQ, @@ -607,8 +650,6 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_delete] = anon_sym_delete, [anon_sym_PLUS_PLUS] = anon_sym_PLUS_PLUS, [anon_sym_DASH_DASH] = anon_sym_DASH_DASH, - [anon_sym_DQUOTE] = anon_sym_DQUOTE, - [anon_sym_SQUOTE] = anon_sym_SQUOTE, [sym_unescaped_double_string_fragment] = sym_unescaped_double_string_fragment, [sym_unescaped_single_string_fragment] = sym_unescaped_single_string_fragment, [sym_escape_sequence] = sym_escape_sequence, @@ -621,6 +662,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_number] = sym_number, [sym_private_property_identifier] = sym_private_property_identifier, [anon_sym_target] = anon_sym_target, + [anon_sym_meta] = anon_sym_meta, [sym_this] = sym_this, [sym_super] = sym_super, [sym_true] = sym_true, @@ -628,20 +670,28 @@ static const TSSymbol ts_symbol_map[] = { [sym_null] = sym_null, [sym_undefined] = sym_undefined, [anon_sym_AT] = anon_sym_AT, + [aux_sym_method_definition_token1] = aux_sym_method_definition_token1, [sym_automatic_semicolon] = sym_automatic_semicolon, [sym_template_chars] = sym_template_chars, [sym_ternary_qmark] = sym_ternary_qmark, + [sym_html_comment] = sym_html_comment, + [sym_jsx_text] = sym_jsx_text, [sym_program] = sym_program, [sym_export_statement] = sym_export_statement, + [sym_namespace_export] = sym_namespace_export, [sym_export_clause] = sym_export_clause, - [sym_import_export_specifier] = sym_import_export_specifier, + [sym_export_specifier] = sym_export_specifier, + [sym_module_export_name] = sym_module_export_name, [sym_declaration] = sym_declaration, [sym_import] = sym_import, [sym_import_statement] = sym_import_statement, [sym_import_clause] = sym_import_clause, [sym_from_clause] = sym_from_clause, - [sym_namespace_import_export] = sym_namespace_import_export, + [sym_namespace_import] = sym_namespace_import, [sym_named_imports] = sym_named_imports, + [sym_import_specifier] = sym_import_specifier, + [sym_import_attribute] = sym_import_attribute, + [sym_statement] = sym_statement, [sym_expression_statement] = sym_expression_statement, [sym_variable_declaration] = sym_variable_declaration, [sym_lexical_declaration] = sym_lexical_declaration, @@ -680,7 +730,6 @@ static const TSSymbol ts_symbol_map[] = { [sym_array] = sym_array, [sym_array_pattern] = sym_array_pattern, [sym_jsx_element] = sym_jsx_element, - [sym_jsx_fragment] = sym_jsx_fragment, [sym_jsx_expression] = sym_jsx_expression, [sym_jsx_opening_element] = sym_jsx_opening_element, [sym_nested_identifier] = sym_nested_identifier, @@ -688,10 +737,11 @@ static const TSSymbol ts_symbol_map[] = { [sym_jsx_closing_element] = sym_jsx_closing_element, [sym_jsx_self_closing_element] = sym_jsx_self_closing_element, [sym_jsx_attribute] = sym_jsx_attribute, + [sym_jsx_string] = sym_jsx_string, [sym_class] = sym_class, [sym_class_declaration] = sym_class_declaration, [sym_class_heritage] = sym_class_heritage, - [sym_function] = sym_function, + [sym_function_expression] = sym_function_expression, [sym_function_declaration] = sym_function_declaration, [sym_generator_function] = sym_generator_function, [sym_generator_function_declaration] = sym_generator_function_declaration, @@ -724,6 +774,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_class_body] = sym_class_body, [sym_field_definition] = sym_field_definition, [sym_formal_parameters] = sym_formal_parameters, + [sym_class_static_block] = sym_class_static_block, [sym_pattern] = sym_pattern, [sym_rest_pattern] = sym_rest_pattern, [sym_method_definition] = sym_method_definition, @@ -734,6 +785,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_program_repeat1] = aux_sym_program_repeat1, [aux_sym_export_statement_repeat1] = aux_sym_export_statement_repeat1, [aux_sym_export_clause_repeat1] = aux_sym_export_clause_repeat1, + [aux_sym_named_imports_repeat1] = aux_sym_named_imports_repeat1, [aux_sym_variable_declaration_repeat1] = aux_sym_variable_declaration_repeat1, [aux_sym_switch_body_repeat1] = aux_sym_switch_body_repeat1, [aux_sym_object_repeat1] = aux_sym_object_repeat1, @@ -742,12 +794,16 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_array_pattern_repeat1] = aux_sym_array_pattern_repeat1, [aux_sym_jsx_element_repeat1] = aux_sym_jsx_element_repeat1, [aux_sym_jsx_opening_element_repeat1] = aux_sym_jsx_opening_element_repeat1, + [aux_sym_jsx_string_repeat1] = aux_sym_jsx_string_repeat1, + [aux_sym_jsx_string_repeat2] = aux_sym_jsx_string_repeat2, + [aux_sym_sequence_expression_repeat1] = aux_sym_sequence_expression_repeat1, [aux_sym_string_repeat1] = aux_sym_string_repeat1, [aux_sym_string_repeat2] = aux_sym_string_repeat2, [aux_sym_template_string_repeat1] = aux_sym_template_string_repeat1, [aux_sym_class_body_repeat1] = aux_sym_class_body_repeat1, [aux_sym_formal_parameters_repeat1] = aux_sym_formal_parameters_repeat1, - [alias_sym_imm_tok_slash] = alias_sym_imm_tok_slash, + [alias_sym_imm_tok_prec_p1_slash] = alias_sym_imm_tok_prec_p1_slash, + [alias_sym_tok_static_pat_3d340f6_get_pat_3d59095] = alias_sym_tok_static_pat_3d340f6_get_pat_3d59095, }; static const TSSymbolMetadata ts_symbol_metadata[] = { @@ -779,6 +835,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_as] = { + .visible = true, + .named = false, + }, [anon_sym_LBRACE] = { .visible = true, .named = false, @@ -791,15 +851,15 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_as] = { + [anon_sym_import] = { .visible = true, .named = false, }, - [anon_sym_import] = { + [anon_sym_from] = { .visible = true, .named = false, }, - [anon_sym_from] = { + [anon_sym_with] = { .visible = true, .named = false, }, @@ -879,10 +939,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_with] = { - .visible = true, - .named = false, - }, [anon_sym_break] = { .visible = true, .named = false, @@ -935,30 +991,50 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_GT] = { + .visible = true, + .named = false, + }, + [sym_html_character_reference] = { + .visible = true, + .named = true, + }, [anon_sym_LT] = { .visible = true, .named = false, }, - [anon_sym_GT] = { + [sym_jsx_identifier] = { + .visible = true, + .named = true, + }, + [anon_sym_DOT] = { .visible = true, .named = false, }, - [anon_sym_SLASH] = { + [anon_sym_LT_SLASH] = { .visible = true, .named = false, }, - [sym_jsx_text] = { + [anon_sym_SLASH_GT] = { .visible = true, - .named = true, + .named = false, }, - [sym_jsx_identifier] = { + [anon_sym_DQUOTE] = { .visible = true, - .named = true, + .named = false, }, - [anon_sym_DOT] = { + [anon_sym_SQUOTE] = { .visible = true, .named = false, }, + [sym_unescaped_double_jsx_string_fragment] = { + .visible = true, + .named = true, + }, + [sym_unescaped_single_jsx_string_fragment] = { + .visible = true, + .named = true, + }, [anon_sym_class] = { .visible = true, .named = false, @@ -975,9 +1051,9 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_QMARK_DOT] = { + [sym_optional_chain] = { .visible = true, - .named = false, + .named = true, }, [anon_sym_new] = { .visible = true, @@ -1087,6 +1163,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_SLASH] = { + .visible = true, + .named = false, + }, [anon_sym_PERCENT] = { .visible = true, .named = false, @@ -1155,14 +1235,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_DQUOTE] = { - .visible = true, - .named = false, - }, - [anon_sym_SQUOTE] = { - .visible = true, - .named = false, - }, [sym_unescaped_double_string_fragment] = { .visible = true, .named = true, @@ -1211,6 +1283,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_meta] = { + .visible = true, + .named = false, + }, [sym_this] = { .visible = true, .named = true, @@ -1239,6 +1315,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [aux_sym_method_definition_token1] = { + .visible = false, + .named = false, + }, [sym_automatic_semicolon] = { .visible = true, .named = true, @@ -1251,6 +1331,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_html_comment] = { + .visible = true, + .named = true, + }, + [sym_jsx_text] = { + .visible = true, + .named = true, + }, [sym_program] = { .visible = true, .named = true, @@ -1259,11 +1347,19 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_namespace_export] = { + .visible = true, + .named = true, + }, [sym_export_clause] = { .visible = true, .named = true, }, - [sym_import_export_specifier] = { + [sym_export_specifier] = { + .visible = true, + .named = true, + }, + [sym_module_export_name] = { .visible = true, .named = true, }, @@ -1287,7 +1383,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_namespace_import_export] = { + [sym_namespace_import] = { .visible = true, .named = true, }, @@ -1295,6 +1391,18 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_import_specifier] = { + .visible = true, + .named = true, + }, + [sym_import_attribute] = { + .visible = true, + .named = true, + }, + [sym_statement] = { + .visible = true, + .named = true, + }, [sym_expression_statement] = { .visible = true, .named = true, @@ -1447,10 +1555,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_jsx_fragment] = { - .visible = true, - .named = true, - }, [sym_jsx_expression] = { .visible = true, .named = true, @@ -1479,6 +1583,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_jsx_string] = { + .visible = true, + .named = true, + }, [sym_class] = { .visible = true, .named = true, @@ -1491,7 +1599,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_function] = { + [sym_function_expression] = { .visible = true, .named = true, }, @@ -1623,6 +1731,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_class_static_block] = { + .visible = true, + .named = true, + }, [sym_pattern] = { .visible = true, .named = true, @@ -1663,6 +1775,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_named_imports_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_variable_declaration_repeat1] = { .visible = false, .named = false, @@ -1695,6 +1811,18 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_jsx_string_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_jsx_string_repeat2] = { + .visible = false, + .named = false, + }, + [aux_sym_sequence_expression_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_string_repeat1] = { .visible = false, .named = false, @@ -1715,13 +1843,17 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [alias_sym_imm_tok_slash] = { + [alias_sym_imm_tok_prec_p1_slash] = { + .visible = true, + .named = true, + }, + [alias_sym_tok_static_pat_3d340f6_get_pat_3d59095] = { .visible = true, .named = true, }, }; -enum { +enum ts_field_identifiers { field_alias = 1, field_alternative = 2, field_argument = 3, @@ -1750,13 +1882,14 @@ enum { field_object = 26, field_open_tag = 27, field_operator = 28, - field_parameter = 29, - field_parameters = 30, - field_pattern = 31, - field_property = 32, - field_right = 33, - field_source = 34, - field_value = 35, + field_optional_chain = 29, + field_parameter = 30, + field_parameters = 31, + field_pattern = 32, + field_property = 33, + field_right = 34, + field_source = 35, + field_value = 36, }; static const char * const ts_field_names[] = { @@ -1789,6 +1922,7 @@ static const char * const ts_field_names[] = { [field_object] = "object", [field_open_tag] = "open_tag", [field_operator] = "operator", + [field_optional_chain] = "optional_chain", [field_parameter] = "parameter", [field_parameters] = "parameters", [field_pattern] = "pattern", @@ -1814,11 +1948,11 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [13] = {.index = 18, .length = 2}, [14] = {.index = 20, .length = 2}, [15] = {.index = 22, .length = 1}, - [16] = {.index = 23, .length = 1}, - [17] = {.index = 24, .length = 2}, + [16] = {.index = 23, .length = 2}, + [17] = {.index = 25, .length = 1}, [18] = {.index = 26, .length = 2}, - [19] = {.index = 28, .length = 1}, - [20] = {.index = 29, .length = 2}, + [19] = {.index = 28, .length = 2}, + [20] = {.index = 30, .length = 1}, [21] = {.index = 31, .length = 2}, [22] = {.index = 33, .length = 2}, [23] = {.index = 35, .length = 2}, @@ -1827,62 +1961,74 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [26] = {.index = 39, .length = 1}, [27] = {.index = 40, .length = 1}, [28] = {.index = 41, .length = 1}, - [29] = {.index = 42, .length = 1}, - [30] = {.index = 43, .length = 2}, - [31] = {.index = 45, .length = 2}, - [32] = {.index = 47, .length = 2}, + [29] = {.index = 42, .length = 2}, + [30] = {.index = 44, .length = 2}, + [31] = {.index = 46, .length = 2}, + [32] = {.index = 48, .length = 1}, [33] = {.index = 49, .length = 3}, [34] = {.index = 52, .length = 2}, - [35] = {.index = 54, .length = 2}, - [36] = {.index = 56, .length = 2}, - [37] = {.index = 58, .length = 2}, - [38] = {.index = 60, .length = 2}, - [39] = {.index = 62, .length = 2}, - [40] = {.index = 64, .length = 1}, - [41] = {.index = 65, .length = 2}, - [42] = {.index = 67, .length = 3}, - [43] = {.index = 70, .length = 1}, - [44] = {.index = 71, .length = 3}, - [45] = {.index = 74, .length = 1}, - [46] = {.index = 75, .length = 2}, - [47] = {.index = 77, .length = 2}, - [48] = {.index = 79, .length = 2}, - [49] = {.index = 81, .length = 3}, - [50] = {.index = 84, .length = 2}, - [51] = {.index = 86, .length = 2}, - [52] = {.index = 88, .length = 2}, - [53] = {.index = 90, .length = 1}, - [54] = {.index = 91, .length = 2}, - [55] = {.index = 93, .length = 1}, - [56] = {.index = 94, .length = 2}, - [57] = {.index = 96, .length = 2}, - [58] = {.index = 98, .length = 3}, - [59] = {.index = 101, .length = 2}, - [60] = {.index = 103, .length = 2}, - [61] = {.index = 105, .length = 3}, - [62] = {.index = 108, .length = 2}, - [63] = {.index = 110, .length = 2}, - [64] = {.index = 112, .length = 4}, + [35] = {.index = 54, .length = 3}, + [36] = {.index = 57, .length = 3}, + [37] = {.index = 60, .length = 2}, + [38] = {.index = 62, .length = 2}, + [39] = {.index = 64, .length = 2}, + [40] = {.index = 66, .length = 2}, + [41] = {.index = 68, .length = 1}, + [42] = {.index = 69, .length = 2}, + [43] = {.index = 71, .length = 3}, + [44] = {.index = 74, .length = 1}, + [45] = {.index = 75, .length = 3}, + [46] = {.index = 78, .length = 1}, + [47] = {.index = 79, .length = 2}, + [48] = {.index = 81, .length = 2}, + [49] = {.index = 83, .length = 2}, + [50] = {.index = 85, .length = 2}, + [51] = {.index = 87, .length = 3}, + [52] = {.index = 90, .length = 2}, + [53] = {.index = 92, .length = 2}, + [54] = {.index = 94, .length = 1}, + [55] = {.index = 95, .length = 2}, + [56] = {.index = 97, .length = 1}, + [57] = {.index = 98, .length = 2}, + [58] = {.index = 100, .length = 2}, + [59] = {.index = 102, .length = 3}, + [60] = {.index = 105, .length = 2}, + [61] = {.index = 107, .length = 2}, + [62] = {.index = 109, .length = 2}, + [63] = {.index = 111, .length = 3}, + [64] = {.index = 114, .length = 2}, [65] = {.index = 116, .length = 2}, - [66] = {.index = 118, .length = 3}, - [67] = {.index = 121, .length = 2}, - [68] = {.index = 123, .length = 2}, - [69] = {.index = 125, .length = 3}, - [70] = {.index = 128, .length = 2}, - [71] = {.index = 130, .length = 1}, - [72] = {.index = 131, .length = 2}, - [73] = {.index = 133, .length = 3}, - [74] = {.index = 136, .length = 4}, - [75] = {.index = 140, .length = 3}, - [76] = {.index = 143, .length = 3}, - [77] = {.index = 146, .length = 3}, - [78] = {.index = 149, .length = 4}, - [79] = {.index = 153, .length = 2}, - [80] = {.index = 155, .length = 4}, - [81] = {.index = 159, .length = 4}, - [82] = {.index = 163, .length = 2}, - [83] = {.index = 165, .length = 4}, - [84] = {.index = 169, .length = 4}, + [66] = {.index = 102, .length = 3}, + [67] = {.index = 118, .length = 4}, + [68] = {.index = 122, .length = 2}, + [69] = {.index = 124, .length = 3}, + [70] = {.index = 127, .length = 2}, + [71] = {.index = 129, .length = 3}, + [72] = {.index = 132, .length = 3}, + [73] = {.index = 135, .length = 2}, + [74] = {.index = 137, .length = 3}, + [75] = {.index = 124, .length = 3}, + [76] = {.index = 140, .length = 4}, + [77] = {.index = 140, .length = 4}, + [78] = {.index = 144, .length = 3}, + [79] = {.index = 147, .length = 3}, + [80] = {.index = 150, .length = 3}, + [81] = {.index = 150, .length = 3}, + [82] = {.index = 153, .length = 4}, + [83] = {.index = 153, .length = 4}, + [84] = {.index = 157, .length = 2}, + [85] = {.index = 159, .length = 4}, + [86] = {.index = 163, .length = 4}, + [87] = {.index = 167, .length = 4}, + [88] = {.index = 171, .length = 3}, + [89] = {.index = 174, .length = 2}, + [90] = {.index = 176, .length = 4}, + [91] = {.index = 176, .length = 4}, + [92] = {.index = 180, .length = 4}, + [93] = {.index = 184, .length = 5}, + [94] = {.index = 189, .length = 4}, + [95] = {.index = 193, .length = 4}, + [96] = {.index = 197, .length = 5}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -1900,11 +2046,11 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_argument, 1}, {field_operator, 0}, [7] = - {field_argument, 0}, - {field_operator, 1}, - [9] = {field_arguments, 1}, {field_function, 0}, + [9] = + {field_argument, 0}, + {field_operator, 1}, [11] = {field_close_tag, 1}, {field_open_tag, 0}, @@ -1925,27 +2071,27 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [22] = {field_source, 1}, [23] = + {field_body, 2}, + {field_object, 1}, + [25] = {field_kind, 0}, - [24] = + [26] = {field_condition, 1}, {field_consequence, 2}, - [26] = + [28] = {field_body, 2}, {field_value, 1}, - [28] = + [30] = {field_body, 2}, - [29] = + [31] = {field_body, 2}, {field_condition, 1}, - [31] = + [33] = {field_body, 1}, {field_handler, 2}, - [33] = + [35] = {field_body, 1}, {field_finalizer, 2}, - [35] = - {field_body, 2}, - {field_object, 1}, [37] = {field_label, 1}, [38] = @@ -1953,20 +2099,20 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [39] = {field_attribute, 0}, [40] = - {field_pattern, 1}, - [41] = {field_member, 0}, - [42] = + [41] = {field_property, 0}, - [43] = + [42] = {field_body, 2}, {field_name, 1}, - [45] = + [44] = {field_body, 2}, {field_parameters, 1}, - [47] = + [46] = {field_arguments, 2}, {field_constructor, 1}, + [48] = + {field_pattern, 1}, [49] = {field_left, 0}, {field_operator, 1}, @@ -1975,183 +2121,236 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_object, 0}, {field_property, 2}, [54] = + {field_object, 0}, + {field_optional_chain, 1}, + {field_property, 2}, + [57] = {field_arguments, 2}, {field_function, 0}, - [56] = + {field_optional_chain, 1}, + [60] = {field_close_tag, 2}, {field_open_tag, 0}, - [58] = + [62] = {field_body, 2}, {field_parameters, 0}, - [60] = + [64] = {field_declaration, 2}, {field_decorator, 0, .inherited = true}, - [62] = + [66] = {field_body, 2}, {field_decorator, 0, .inherited = true}, - [64] = + [68] = {field_value, 2}, - [65] = + [69] = {field_key, 0}, {field_value, 2}, - [67] = + [71] = {field_body, 2}, {field_name, 0}, {field_parameters, 1}, - [70] = + [74] = {field_value, 1}, - [71] = + [75] = {field_alternative, 3}, {field_condition, 1}, {field_consequence, 2}, - [74] = + [78] = {field_body, 3}, - [75] = + [79] = {field_body, 3}, {field_parameter, 1}, - [77] = + [81] = {field_body, 3}, {field_parameters, 2}, - [79] = + [83] = {field_body, 3}, {field_parameters, 1}, - [81] = + [85] = + {field_body, 1}, + {field_condition, 3}, + [87] = {field_body, 1}, {field_finalizer, 3}, {field_handler, 2}, - [84] = + [90] = {field_attribute, 2, .inherited = true}, {field_name, 1}, - [86] = + [92] = {field_attribute, 0, .inherited = true}, {field_attribute, 1, .inherited = true}, - [88] = - {field_flags, 3}, - {field_pattern, 1}, - [90] = + [94] = {field_property, 1}, - [91] = + [95] = {field_decorator, 0, .inherited = true}, {field_property, 1}, - [93] = + [97] = {field_member, 1, .inherited = true}, - [94] = + [98] = {field_member, 0, .inherited = true}, {field_member, 1, .inherited = true}, - [96] = + [100] = {field_body, 3}, {field_name, 1}, - [98] = + [102] = {field_body, 3}, {field_name, 1}, {field_parameters, 2}, - [101] = + [105] = + {field_flags, 3}, + {field_pattern, 1}, + [107] = {field_index, 2}, {field_object, 0}, - [103] = + [109] = {field_declaration, 3}, {field_decorator, 0, .inherited = true}, - [105] = + [111] = {field_body, 3}, {field_decorator, 0, .inherited = true}, {field_name, 2}, - [108] = + [114] = {field_body, 3}, {field_decorator, 0, .inherited = true}, - [110] = + [116] = {field_alias, 2}, {field_name, 0}, - [112] = + [118] = {field_body, 3}, {field_decorator, 0, .inherited = true}, {field_name, 1}, {field_parameters, 2}, - [116] = + [122] = {field_body, 4}, {field_parameters, 3}, - [118] = + [124] = {field_body, 4}, {field_name, 2}, {field_parameters, 3}, - [121] = - {field_body, 1}, - {field_condition, 3}, - [123] = + [127] = {field_decorator, 0, .inherited = true}, {field_property, 2}, - [125] = + [129] = {field_alternative, 4}, {field_condition, 0}, {field_consequence, 2}, - [128] = + [132] = {field_index, 3}, {field_object, 0}, - [130] = - {field_name, 2}, - [131] = + {field_optional_chain, 1}, + [135] = {field_decorator, 0, .inherited = true}, {field_value, 3}, - [133] = + [137] = {field_body, 4}, {field_decorator, 0, .inherited = true}, {field_name, 2}, - [136] = + [140] = {field_body, 4}, {field_decorator, 0, .inherited = true}, {field_name, 2}, {field_parameters, 3}, - [140] = + [144] = {field_left, 1}, {field_operator, 2}, {field_right, 3}, - [143] = + [147] = {field_body, 5}, {field_condition, 3}, {field_initializer, 2}, - [146] = + [150] = {field_body, 5}, {field_name, 3}, {field_parameters, 4}, - [149] = + [153] = {field_body, 5}, {field_decorator, 0, .inherited = true}, {field_name, 3}, {field_parameters, 4}, - [153] = + [157] = {field_body, 3}, {field_value, 1}, - [155] = + [159] = {field_kind, 1}, {field_left, 2}, {field_operator, 3}, {field_right, 4}, - [159] = + [163] = {field_body, 6}, {field_condition, 3}, {field_increment, 4}, {field_initializer, 2}, - [163] = + [167] = + {field_body, 6}, + {field_condition, 3}, + {field_condition, 4}, + {field_initializer, 2}, + [171] = + {field_body, 6}, + {field_condition, 4}, + {field_initializer, 2}, + [174] = {field_body, 4}, {field_parameter, 2}, - [165] = + [176] = {field_body, 6}, {field_decorator, 0, .inherited = true}, {field_name, 4}, {field_parameters, 5}, - [169] = + [180] = {field_kind, 1}, {field_left, 2}, {field_operator, 4}, {field_right, 5}, + [184] = + {field_body, 7}, + {field_condition, 3}, + {field_condition, 4}, + {field_increment, 5}, + {field_initializer, 2}, + [189] = + {field_body, 7}, + {field_condition, 4}, + {field_increment, 5}, + {field_initializer, 2}, + [193] = + {field_body, 7}, + {field_condition, 4}, + {field_condition, 5}, + {field_initializer, 2}, + [197] = + {field_body, 8}, + {field_condition, 4}, + {field_condition, 5}, + {field_increment, 6}, + {field_initializer, 2}, }; static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { [0] = {0}, - [27] = { - [2] = alias_sym_imm_tok_slash, + [32] = { + [2] = alias_sym_imm_tok_prec_p1_slash, }, - [52] = { - [2] = alias_sym_imm_tok_slash, + [60] = { + [2] = alias_sym_imm_tok_prec_p1_slash, + }, + [66] = { + [0] = alias_sym_tok_static_pat_3d340f6_get_pat_3d59095, + }, + [75] = { + [0] = alias_sym_tok_static_pat_3d340f6_get_pat_3d59095, + }, + [77] = { + [1] = alias_sym_tok_static_pat_3d340f6_get_pat_3d59095, + }, + [81] = { + [0] = alias_sym_tok_static_pat_3d340f6_get_pat_3d59095, + }, + [83] = { + [1] = alias_sym_tok_static_pat_3d340f6_get_pat_3d59095, + }, + [91] = { + [1] = alias_sym_tok_static_pat_3d340f6_get_pat_3d59095, }, }; @@ -2159,1975 +2358,4047 @@ static const uint16_t ts_non_terminal_alias_map[] = { 0, }; -static inline bool anon_sym_BANG_character_set_1(int32_t c) { - return (c < 8192 - ? (c < ' ' - ? (c < '\r' - ? (c >= '\t' && c <= '\n') - : c <= '\r') - : (c <= ' ' || (c < 5760 - ? c == 160 - : c <= 5760))) - : (c <= 8203 || (c < 12288 - ? (c < 8287 - ? c == 8239 - : c <= 8288) - : (c <= 12288 || c == 65279)))); -} - -static inline bool sym_regex_pattern_character_set_1(int32_t c) { - return (c < 8192 - ? (c < ' ' - ? (c < '\r' - ? c == '\t' - : c <= '\r') - : (c <= ' ' || (c < 5760 - ? c == 160 - : c <= 5760))) - : (c <= 8203 || (c < 12288 - ? (c < 8287 - ? c == 8239 - : c <= 8288) - : (c <= 12288 || c == 65279)))); -} - -static inline bool sym_identifier_character_set_1(int32_t c) { - return (c < 160 - ? (c < ':' - ? (c < 0 - ? c == 0 - : (c <= '#' || (c >= '%' && c <= '/'))) - : (c <= '@' || (c < '`' - ? (c >= '[' && c <= '^') - : (c <= '`' || (c >= '{' && c <= '~'))))) - : (c <= 160 || (c < 8287 - ? (c < 8192 - ? c == 5760 - : (c <= 8203 || c == 8239)) - : (c <= 8288 || (c < 65279 - ? c == 12288 - : c <= 65279))))); -} - -static inline bool sym_identifier_character_set_2(int32_t c) { - return (c < 160 - ? (c < ':' - ? (c < 0 - ? c == 0 - : (c <= '#' || (c >= '%' && c <= '/'))) - : (c <= '@' || (c < '`' - ? (c >= '[' && c <= '^') - : c <= '~'))) - : (c <= 160 || (c < 8287 - ? (c < 8192 - ? c == 5760 - : (c <= 8203 || c == 8239)) - : (c <= 8288 || (c < 65279 - ? c == 12288 - : c <= 65279))))); -} +static const TSStateId ts_primary_state_ids[STATE_COUNT] = { + [0] = 0, + [1] = 1, + [2] = 2, + [3] = 2, + [4] = 2, + [5] = 2, + [6] = 2, + [7] = 7, + [8] = 8, + [9] = 9, + [10] = 10, + [11] = 11, + [12] = 12, + [13] = 13, + [14] = 12, + [15] = 15, + [16] = 16, + [17] = 12, + [18] = 15, + [19] = 15, + [20] = 12, + [21] = 15, + [22] = 15, + [23] = 12, + [24] = 24, + [25] = 25, + [26] = 26, + [27] = 27, + [28] = 28, + [29] = 29, + [30] = 30, + [31] = 31, + [32] = 32, + [33] = 33, + [34] = 34, + [35] = 35, + [36] = 36, + [37] = 25, + [38] = 26, + [39] = 32, + [40] = 29, + [41] = 31, + [42] = 42, + [43] = 43, + [44] = 44, + [45] = 43, + [46] = 34, + [47] = 47, + [48] = 47, + [49] = 36, + [50] = 33, + [51] = 44, + [52] = 35, + [53] = 30, + [54] = 42, + [55] = 27, + [56] = 56, + [57] = 56, + [58] = 56, + [59] = 56, + [60] = 56, + [61] = 61, + [62] = 62, + [63] = 63, + [64] = 64, + [65] = 65, + [66] = 66, + [67] = 67, + [68] = 68, + [69] = 69, + [70] = 70, + [71] = 71, + [72] = 72, + [73] = 73, + [74] = 74, + [75] = 75, + [76] = 76, + [77] = 76, + [78] = 78, + [79] = 76, + [80] = 76, + [81] = 76, + [82] = 76, + [83] = 83, + [84] = 84, + [85] = 84, + [86] = 83, + [87] = 87, + [88] = 88, + [89] = 88, + [90] = 90, + [91] = 90, + [92] = 92, + [93] = 93, + [94] = 93, + [95] = 95, + [96] = 96, + [97] = 97, + [98] = 98, + [99] = 99, + [100] = 97, + [101] = 97, + [102] = 102, + [103] = 103, + [104] = 104, + [105] = 105, + [106] = 105, + [107] = 107, + [108] = 108, + [109] = 109, + [110] = 110, + [111] = 108, + [112] = 109, + [113] = 113, + [114] = 114, + [115] = 113, + [116] = 116, + [117] = 117, + [118] = 117, + [119] = 119, + [120] = 114, + [121] = 116, + [122] = 122, + [123] = 123, + [124] = 124, + [125] = 125, + [126] = 126, + [127] = 122, + [128] = 122, + [129] = 124, + [130] = 130, + [131] = 131, + [132] = 132, + [133] = 133, + [134] = 134, + [135] = 135, + [136] = 125, + [137] = 131, + [138] = 138, + [139] = 134, + [140] = 130, + [141] = 122, + [142] = 132, + [143] = 133, + [144] = 124, + [145] = 131, + [146] = 134, + [147] = 147, + [148] = 124, + [149] = 138, + [150] = 133, + [151] = 125, + [152] = 125, + [153] = 134, + [154] = 154, + [155] = 125, + [156] = 156, + [157] = 134, + [158] = 131, + [159] = 124, + [160] = 122, + [161] = 131, + [162] = 162, + [163] = 163, + [164] = 164, + [165] = 165, + [166] = 166, + [167] = 167, + [168] = 168, + [169] = 169, + [170] = 162, + [171] = 171, + [172] = 172, + [173] = 173, + [174] = 174, + [175] = 175, + [176] = 176, + [177] = 163, + [178] = 178, + [179] = 179, + [180] = 178, + [181] = 181, + [182] = 182, + [183] = 183, + [184] = 184, + [185] = 163, + [186] = 186, + [187] = 182, + [188] = 186, + [189] = 186, + [190] = 176, + [191] = 183, + [192] = 181, + [193] = 193, + [194] = 164, + [195] = 179, + [196] = 196, + [197] = 165, + [198] = 182, + [199] = 175, + [200] = 200, + [201] = 163, + [202] = 166, + [203] = 174, + [204] = 172, + [205] = 171, + [206] = 206, + [207] = 169, + [208] = 168, + [209] = 167, + [210] = 166, + [211] = 165, + [212] = 164, + [213] = 183, + [214] = 167, + [215] = 193, + [216] = 216, + [217] = 176, + [218] = 168, + [219] = 219, + [220] = 169, + [221] = 193, + [222] = 178, + [223] = 179, + [224] = 193, + [225] = 225, + [226] = 181, + [227] = 175, + [228] = 200, + [229] = 174, + [230] = 162, + [231] = 178, + [232] = 171, + [233] = 233, + [234] = 176, + [235] = 182, + [236] = 175, + [237] = 174, + [238] = 186, + [239] = 172, + [240] = 172, + [241] = 174, + [242] = 175, + [243] = 176, + [244] = 163, + [245] = 179, + [246] = 178, + [247] = 181, + [248] = 181, + [249] = 172, + [250] = 186, + [251] = 251, + [252] = 182, + [253] = 179, + [254] = 225, + [255] = 183, + [256] = 183, + [257] = 171, + [258] = 196, + [259] = 171, + [260] = 162, + [261] = 169, + [262] = 168, + [263] = 167, + [264] = 196, + [265] = 162, + [266] = 166, + [267] = 169, + [268] = 165, + [269] = 164, + [270] = 193, + [271] = 164, + [272] = 165, + [273] = 273, + [274] = 166, + [275] = 167, + [276] = 168, + [277] = 277, + [278] = 277, + [279] = 279, + [280] = 279, + [281] = 277, + [282] = 282, + [283] = 283, + [284] = 283, + [285] = 282, + [286] = 282, + [287] = 283, + [288] = 288, + [289] = 288, + [290] = 288, + [291] = 288, + [292] = 64, + [293] = 293, + [294] = 294, + [295] = 288, + [296] = 63, + [297] = 297, + [298] = 293, + [299] = 288, + [300] = 294, + [301] = 301, + [302] = 302, + [303] = 294, + [304] = 297, + [305] = 62, + [306] = 306, + [307] = 65, + [308] = 302, + [309] = 309, + [310] = 293, + [311] = 309, + [312] = 288, + [313] = 313, + [314] = 314, + [315] = 315, + [316] = 316, + [317] = 317, + [318] = 318, + [319] = 319, + [320] = 320, + [321] = 288, + [322] = 306, + [323] = 288, + [324] = 324, + [325] = 316, + [326] = 64, + [327] = 61, + [328] = 62, + [329] = 63, + [330] = 330, + [331] = 331, + [332] = 66, + [333] = 333, + [334] = 334, + [335] = 335, + [336] = 336, + [337] = 337, + [338] = 65, + [339] = 339, + [340] = 340, + [341] = 341, + [342] = 342, + [343] = 343, + [344] = 344, + [345] = 345, + [346] = 346, + [347] = 347, + [348] = 348, + [349] = 349, + [350] = 350, + [351] = 351, + [352] = 352, + [353] = 353, + [354] = 354, + [355] = 355, + [356] = 356, + [357] = 357, + [358] = 358, + [359] = 359, + [360] = 360, + [361] = 361, + [362] = 362, + [363] = 363, + [364] = 364, + [365] = 365, + [366] = 366, + [367] = 367, + [368] = 368, + [369] = 369, + [370] = 370, + [371] = 371, + [372] = 372, + [373] = 373, + [374] = 374, + [375] = 375, + [376] = 376, + [377] = 377, + [378] = 378, + [379] = 379, + [380] = 380, + [381] = 381, + [382] = 382, + [383] = 383, + [384] = 384, + [385] = 385, + [386] = 386, + [387] = 387, + [388] = 388, + [389] = 389, + [390] = 390, + [391] = 391, + [392] = 392, + [393] = 393, + [394] = 394, + [395] = 395, + [396] = 396, + [397] = 397, + [398] = 398, + [399] = 399, + [400] = 400, + [401] = 401, + [402] = 402, + [403] = 403, + [404] = 399, + [405] = 405, + [406] = 334, + [407] = 399, + [408] = 408, + [409] = 409, + [410] = 408, + [411] = 403, + [412] = 412, + [413] = 408, + [414] = 405, + [415] = 334, + [416] = 402, + [417] = 401, + [418] = 403, + [419] = 419, + [420] = 420, + [421] = 421, + [422] = 334, + [423] = 423, + [424] = 400, + [425] = 425, + [426] = 408, + [427] = 408, + [428] = 419, + [429] = 408, + [430] = 425, + [431] = 431, + [432] = 432, + [433] = 421, + [434] = 434, + [435] = 432, + [436] = 403, + [437] = 403, + [438] = 438, + [439] = 425, + [440] = 431, + [441] = 408, + [442] = 432, + [443] = 434, + [444] = 408, + [445] = 408, + [446] = 438, + [447] = 403, + [448] = 448, + [449] = 449, + [450] = 67, + [451] = 451, + [452] = 452, + [453] = 453, + [454] = 454, + [455] = 455, + [456] = 456, + [457] = 63, + [458] = 64, + [459] = 459, + [460] = 460, + [461] = 461, + [462] = 462, + [463] = 463, + [464] = 62, + [465] = 465, + [466] = 466, + [467] = 467, + [468] = 61, + [469] = 469, + [470] = 470, + [471] = 471, + [472] = 472, + [473] = 473, + [474] = 474, + [475] = 475, + [476] = 476, + [477] = 477, + [478] = 478, + [479] = 479, + [480] = 65, + [481] = 481, + [482] = 482, + [483] = 483, + [484] = 484, + [485] = 485, + [486] = 486, + [487] = 487, + [488] = 488, + [489] = 489, + [490] = 490, + [491] = 491, + [492] = 492, + [493] = 493, + [494] = 494, + [495] = 495, + [496] = 496, + [497] = 497, + [498] = 498, + [499] = 499, + [500] = 500, + [501] = 501, + [502] = 502, + [503] = 503, + [504] = 504, + [505] = 505, + [506] = 506, + [507] = 507, + [508] = 508, + [509] = 509, + [510] = 510, + [511] = 511, + [512] = 512, + [513] = 513, + [514] = 514, + [515] = 66, + [516] = 483, + [517] = 448, + [518] = 518, + [519] = 519, + [520] = 520, + [521] = 521, + [522] = 522, + [523] = 523, + [524] = 524, + [525] = 525, + [526] = 526, + [527] = 527, + [528] = 528, + [529] = 529, + [530] = 530, + [531] = 531, + [532] = 532, + [533] = 533, + [534] = 460, + [535] = 535, + [536] = 536, + [537] = 537, + [538] = 538, + [539] = 449, + [540] = 462, + [541] = 541, + [542] = 455, + [543] = 460, + [544] = 544, + [545] = 494, + [546] = 453, + [547] = 456, + [548] = 67, + [549] = 451, + [550] = 452, + [551] = 481, + [552] = 483, + [553] = 455, + [554] = 67, + [555] = 454, + [556] = 462, + [557] = 522, + [558] = 491, + [559] = 463, + [560] = 469, + [561] = 470, + [562] = 471, + [563] = 472, + [564] = 473, + [565] = 528, + [566] = 475, + [567] = 567, + [568] = 532, + [569] = 541, + [570] = 535, + [571] = 533, + [572] = 461, + [573] = 504, + [574] = 536, + [575] = 531, + [576] = 530, + [577] = 529, + [578] = 507, + [579] = 508, + [580] = 538, + [581] = 467, + [582] = 485, + [583] = 526, + [584] = 524, + [585] = 537, + [586] = 510, + [587] = 523, + [588] = 522, + [589] = 486, + [590] = 496, + [591] = 511, + [592] = 592, + [593] = 497, + [594] = 498, + [595] = 512, + [596] = 525, + [597] = 513, + [598] = 519, + [599] = 514, + [600] = 487, + [601] = 488, + [602] = 500, + [603] = 518, + [604] = 70, + [605] = 489, + [606] = 502, + [607] = 493, + [608] = 492, + [609] = 476, + [610] = 455, + [611] = 479, + [612] = 509, + [613] = 503, + [614] = 505, + [615] = 537, + [616] = 455, + [617] = 501, + [618] = 521, + [619] = 525, + [620] = 538, + [621] = 536, + [622] = 518, + [623] = 478, + [624] = 499, + [625] = 466, + [626] = 519, + [627] = 523, + [628] = 524, + [629] = 459, + [630] = 462, + [631] = 483, + [632] = 460, + [633] = 526, + [634] = 495, + [635] = 529, + [636] = 530, + [637] = 472, + [638] = 520, + [639] = 531, + [640] = 533, + [641] = 535, + [642] = 541, + [643] = 532, + [644] = 69, + [645] = 528, + [646] = 75, + [647] = 527, + [648] = 74, + [649] = 484, + [650] = 527, + [651] = 482, + [652] = 477, + [653] = 567, + [654] = 474, + [655] = 72, + [656] = 490, + [657] = 465, + [658] = 506, + [659] = 71, + [660] = 520, + [661] = 521, + [662] = 68, + [663] = 73, + [664] = 460, + [665] = 665, + [666] = 666, + [667] = 667, + [668] = 668, + [669] = 592, + [670] = 670, + [671] = 671, + [672] = 672, + [673] = 483, + [674] = 674, + [675] = 675, + [676] = 462, + [677] = 677, + [678] = 525, + [679] = 544, + [680] = 680, + [681] = 675, + [682] = 682, + [683] = 524, + [684] = 684, + [685] = 685, + [686] = 686, + [687] = 522, + [688] = 519, + [689] = 689, + [690] = 518, + [691] = 526, + [692] = 529, + [693] = 693, + [694] = 567, + [695] = 695, + [696] = 696, + [697] = 536, + [698] = 698, + [699] = 699, + [700] = 689, + [701] = 698, + [702] = 682, + [703] = 686, + [704] = 537, + [705] = 705, + [706] = 530, + [707] = 483, + [708] = 708, + [709] = 709, + [710] = 710, + [711] = 462, + [712] = 705, + [713] = 710, + [714] = 538, + [715] = 531, + [716] = 533, + [717] = 535, + [718] = 541, + [719] = 684, + [720] = 532, + [721] = 721, + [722] = 721, + [723] = 723, + [724] = 723, + [725] = 725, + [726] = 528, + [727] = 699, + [728] = 684, + [729] = 527, + [730] = 523, + [731] = 520, + [732] = 521, + [733] = 460, + [734] = 721, + [735] = 721, + [736] = 736, + [737] = 737, + [738] = 725, + [739] = 696, + [740] = 737, + [741] = 741, + [742] = 519, + [743] = 522, + [744] = 524, + [745] = 526, + [746] = 529, + [747] = 741, + [748] = 537, + [749] = 536, + [750] = 518, + [751] = 741, + [752] = 535, + [753] = 741, + [754] = 665, + [755] = 741, + [756] = 533, + [757] = 757, + [758] = 758, + [759] = 541, + [760] = 532, + [761] = 528, + [762] = 523, + [763] = 741, + [764] = 472, + [765] = 455, + [766] = 520, + [767] = 521, + [768] = 538, + [769] = 525, + [770] = 530, + [771] = 771, + [772] = 527, + [773] = 531, + [774] = 774, + [775] = 775, + [776] = 776, + [777] = 775, + [778] = 775, + [779] = 775, + [780] = 675, + [781] = 775, + [782] = 776, + [783] = 783, + [784] = 784, + [785] = 785, + [786] = 784, + [787] = 787, + [788] = 788, + [789] = 788, + [790] = 788, + [791] = 791, + [792] = 791, + [793] = 793, + [794] = 794, + [795] = 795, + [796] = 791, + [797] = 794, + [798] = 798, + [799] = 799, + [800] = 800, + [801] = 799, + [802] = 800, + [803] = 799, + [804] = 800, + [805] = 799, + [806] = 800, + [807] = 799, + [808] = 800, + [809] = 799, + [810] = 800, + [811] = 811, + [812] = 811, + [813] = 813, + [814] = 811, + [815] = 811, + [816] = 811, + [817] = 811, + [818] = 818, + [819] = 819, + [820] = 820, + [821] = 821, + [822] = 822, + [823] = 823, + [824] = 824, + [825] = 825, + [826] = 826, + [827] = 827, + [828] = 828, + [829] = 829, + [830] = 830, + [831] = 831, + [832] = 832, + [833] = 833, + [834] = 834, + [835] = 835, + [836] = 836, + [837] = 837, + [838] = 838, + [839] = 839, + [840] = 840, + [841] = 841, + [842] = 842, + [843] = 843, + [844] = 844, + [845] = 845, + [846] = 846, + [847] = 847, + [848] = 848, + [849] = 849, + [850] = 850, + [851] = 851, + [852] = 852, + [853] = 853, + [854] = 854, + [855] = 855, + [856] = 64, + [857] = 857, + [858] = 858, + [859] = 859, + [860] = 860, + [861] = 861, + [862] = 862, + [863] = 863, + [864] = 864, + [865] = 865, + [866] = 866, + [867] = 867, + [868] = 868, + [869] = 63, + [870] = 870, + [871] = 871, + [872] = 872, + [873] = 873, + [874] = 874, + [875] = 875, + [876] = 876, + [877] = 877, + [878] = 65, + [879] = 833, + [880] = 880, + [881] = 881, + [882] = 882, + [883] = 883, + [884] = 877, + [885] = 885, + [886] = 886, + [887] = 881, + [888] = 888, + [889] = 829, + [890] = 62, + [891] = 831, + [892] = 892, + [893] = 893, + [894] = 894, + [895] = 895, + [896] = 896, + [897] = 897, + [898] = 898, + [899] = 899, + [900] = 900, + [901] = 901, + [902] = 902, + [903] = 903, + [904] = 896, + [905] = 897, + [906] = 894, + [907] = 907, + [908] = 908, + [909] = 895, + [910] = 837, + [911] = 839, + [912] = 840, + [913] = 834, + [914] = 907, + [915] = 915, + [916] = 901, + [917] = 491, + [918] = 918, + [919] = 839, + [920] = 898, + [921] = 501, + [922] = 475, + [923] = 902, + [924] = 903, + [925] = 915, + [926] = 926, + [927] = 927, + [928] = 927, + [929] = 900, + [930] = 918, + [931] = 899, + [932] = 838, + [933] = 933, + [934] = 934, + [935] = 935, + [936] = 936, + [937] = 937, + [938] = 938, + [939] = 935, + [940] = 935, + [941] = 941, + [942] = 942, + [943] = 943, + [944] = 944, + [945] = 942, + [946] = 935, + [947] = 943, + [948] = 948, + [949] = 936, + [950] = 944, + [951] = 937, + [952] = 948, + [953] = 953, + [954] = 935, + [955] = 938, + [956] = 956, + [957] = 941, + [958] = 953, + [959] = 956, + [960] = 934, + [961] = 961, + [962] = 961, + [963] = 961, + [964] = 964, + [965] = 965, + [966] = 964, + [967] = 961, + [968] = 964, + [969] = 964, + [970] = 970, + [971] = 970, + [972] = 972, + [973] = 970, + [974] = 970, + [975] = 975, + [976] = 975, + [977] = 977, + [978] = 977, + [979] = 977, + [980] = 975, + [981] = 977, + [982] = 975, + [983] = 983, + [984] = 984, + [985] = 985, + [986] = 986, + [987] = 983, + [988] = 988, + [989] = 983, + [990] = 990, + [991] = 988, + [992] = 990, + [993] = 990, + [994] = 986, + [995] = 995, + [996] = 984, + [997] = 988, + [998] = 986, + [999] = 988, + [1000] = 983, + [1001] = 986, + [1002] = 984, + [1003] = 990, + [1004] = 984, + [1005] = 1005, + [1006] = 1006, + [1007] = 1007, + [1008] = 1007, + [1009] = 1009, + [1010] = 1010, + [1011] = 1011, + [1012] = 1012, + [1013] = 1007, + [1014] = 1014, + [1015] = 1015, + [1016] = 1016, + [1017] = 1017, + [1018] = 1018, + [1019] = 1019, + [1020] = 1007, + [1021] = 1021, + [1022] = 1007, + [1023] = 1007, + [1024] = 1024, + [1025] = 1025, + [1026] = 1026, + [1027] = 1027, + [1028] = 1028, + [1029] = 1029, + [1030] = 1030, + [1031] = 1031, + [1032] = 481, + [1033] = 1033, + [1034] = 1034, + [1035] = 1035, + [1036] = 1036, + [1037] = 1037, + [1038] = 1038, + [1039] = 492, + [1040] = 467, + [1041] = 1041, + [1042] = 1042, + [1043] = 497, + [1044] = 498, + [1045] = 1045, + [1046] = 511, + [1047] = 512, + [1048] = 513, + [1049] = 514, + [1050] = 1036, + [1051] = 1051, + [1052] = 499, + [1053] = 1053, + [1054] = 1010, + [1055] = 1055, + [1056] = 1015, + [1057] = 1019, + [1058] = 1058, + [1059] = 1059, + [1060] = 1060, + [1061] = 494, + [1062] = 1062, + [1063] = 1063, + [1064] = 1064, + [1065] = 1065, + [1066] = 1066, + [1067] = 1067, + [1068] = 1068, + [1069] = 1069, + [1070] = 1070, + [1071] = 1009, + [1072] = 1060, + [1073] = 1073, + [1074] = 1074, + [1075] = 1029, + [1076] = 1076, + [1077] = 1077, + [1078] = 1078, + [1079] = 1079, + [1080] = 1080, + [1081] = 1081, + [1082] = 1082, + [1083] = 1080, + [1084] = 1084, + [1085] = 1085, + [1086] = 1086, + [1087] = 1087, + [1088] = 1088, + [1089] = 1089, + [1090] = 1074, + [1091] = 481, + [1092] = 1092, + [1093] = 499, + [1094] = 514, + [1095] = 513, + [1096] = 1096, + [1097] = 1097, + [1098] = 1080, + [1099] = 1099, + [1100] = 512, + [1101] = 1101, + [1102] = 1051, + [1103] = 1088, + [1104] = 1104, + [1105] = 1079, + [1106] = 1106, + [1107] = 511, + [1108] = 1087, + [1109] = 498, + [1110] = 1080, + [1111] = 497, + [1112] = 1089, + [1113] = 1097, + [1114] = 467, + [1115] = 1089, + [1116] = 1116, + [1117] = 1104, + [1118] = 492, + [1119] = 1081, + [1120] = 1120, + [1121] = 1121, + [1122] = 1122, + [1123] = 1084, + [1124] = 1120, + [1125] = 1089, + [1126] = 494, + [1127] = 1127, + [1128] = 1128, + [1129] = 1129, + [1130] = 1130, + [1131] = 1131, + [1132] = 1132, + [1133] = 1133, + [1134] = 1134, + [1135] = 1135, + [1136] = 1130, + [1137] = 1134, + [1138] = 1138, + [1139] = 1139, + [1140] = 1140, + [1141] = 1141, + [1142] = 1142, + [1143] = 1143, + [1144] = 1144, + [1145] = 1145, + [1146] = 1146, + [1147] = 1028, + [1148] = 1148, + [1149] = 1149, + [1150] = 1150, + [1151] = 1146, + [1152] = 1152, + [1153] = 1153, + [1154] = 1142, + [1155] = 1155, + [1156] = 1156, + [1157] = 1131, + [1158] = 1158, + [1159] = 1159, + [1160] = 1139, + [1161] = 1161, + [1162] = 1132, + [1163] = 1133, + [1164] = 1135, + [1165] = 1165, + [1166] = 1132, + [1167] = 1133, + [1168] = 1168, + [1169] = 1169, + [1170] = 1170, + [1171] = 1171, + [1172] = 1172, + [1173] = 1076, + [1174] = 1042, + [1175] = 1012, + [1176] = 1176, + [1177] = 1165, + [1178] = 1140, + [1179] = 1179, + [1180] = 1180, + [1181] = 1181, + [1182] = 1182, + [1183] = 1183, + [1184] = 1184, + [1185] = 1179, + [1186] = 1138, + [1187] = 1156, + [1188] = 1134, + [1189] = 1189, + [1190] = 1086, + [1191] = 1130, + [1192] = 1134, + [1193] = 1193, + [1194] = 1153, + [1195] = 1133, + [1196] = 1176, + [1197] = 1132, + [1198] = 1198, + [1199] = 1199, + [1200] = 1130, + [1201] = 1201, + [1202] = 1202, + [1203] = 1203, + [1204] = 1204, + [1205] = 1205, + [1206] = 1206, + [1207] = 1207, + [1208] = 1206, + [1209] = 324, + [1210] = 1210, + [1211] = 1211, + [1212] = 1212, + [1213] = 1213, + [1214] = 1214, + [1215] = 1215, + [1216] = 1216, + [1217] = 1217, + [1218] = 1218, + [1219] = 1206, + [1220] = 1220, + [1221] = 1220, + [1222] = 1222, + [1223] = 1202, + [1224] = 1224, + [1225] = 1225, + [1226] = 1226, + [1227] = 1227, + [1228] = 1220, + [1229] = 1229, + [1230] = 1230, + [1231] = 1225, + [1232] = 1232, + [1233] = 1233, + [1234] = 1234, + [1235] = 1235, + [1236] = 1222, + [1237] = 1237, + [1238] = 1202, + [1239] = 1237, + [1240] = 1222, + [1241] = 1241, + [1242] = 1242, + [1243] = 1243, + [1244] = 1244, + [1245] = 1245, + [1246] = 1220, + [1247] = 1247, + [1248] = 1248, + [1249] = 1249, + [1250] = 1218, + [1251] = 1224, + [1252] = 1243, + [1253] = 1244, + [1254] = 1254, + [1255] = 1255, + [1256] = 1247, + [1257] = 1257, + [1258] = 1257, + [1259] = 1259, + [1260] = 1260, + [1261] = 1261, + [1262] = 1262, + [1263] = 1263, + [1264] = 1264, + [1265] = 1265, + [1266] = 1266, + [1267] = 1267, + [1268] = 1268, + [1269] = 1269, + [1270] = 1270, + [1271] = 1271, + [1272] = 1272, + [1273] = 1241, + [1274] = 1247, + [1275] = 1237, + [1276] = 1224, + [1277] = 1249, + [1278] = 1278, + [1279] = 1279, + [1280] = 1254, + [1281] = 1248, + [1282] = 1261, + [1283] = 1283, + [1284] = 1284, + [1285] = 1278, + [1286] = 1286, + [1287] = 1267, + [1288] = 1265, + [1289] = 1234, + [1290] = 1284, + [1291] = 1286, + [1292] = 1272, + [1293] = 1293, + [1294] = 1294, + [1295] = 1295, + [1296] = 1296, + [1297] = 1297, + [1298] = 1298, + [1299] = 1299, + [1300] = 1300, + [1301] = 1301, + [1302] = 1302, + [1303] = 1303, + [1304] = 1304, + [1305] = 1305, + [1306] = 1306, + [1307] = 1307, + [1308] = 1308, + [1309] = 1309, + [1310] = 1310, + [1311] = 1311, + [1312] = 1312, + [1313] = 1313, + [1314] = 1314, + [1315] = 1315, + [1316] = 1316, + [1317] = 1317, + [1318] = 1318, + [1319] = 1319, + [1320] = 1320, + [1321] = 1321, + [1322] = 1322, + [1323] = 1323, + [1324] = 1324, + [1325] = 1325, + [1326] = 1326, + [1327] = 1327, + [1328] = 1323, + [1329] = 1321, + [1330] = 1313, + [1331] = 1312, + [1332] = 1332, + [1333] = 1333, + [1334] = 1334, + [1335] = 1335, + [1336] = 1336, + [1337] = 1337, + [1338] = 1338, + [1339] = 1339, + [1340] = 1340, + [1341] = 1305, + [1342] = 1327, + [1343] = 1343, + [1344] = 1344, + [1345] = 1345, + [1346] = 1346, + [1347] = 1347, + [1348] = 1348, + [1349] = 1349, + [1350] = 1350, + [1351] = 1351, + [1352] = 1352, + [1353] = 1353, + [1354] = 1326, + [1355] = 1335, + [1356] = 1356, + [1357] = 1357, + [1358] = 1358, + [1359] = 1359, + [1360] = 1360, + [1361] = 1361, + [1362] = 1339, + [1363] = 1363, + [1364] = 1364, + [1365] = 1365, + [1366] = 1366, + [1367] = 1367, + [1368] = 1368, + [1369] = 1369, + [1370] = 1318, + [1371] = 1314, + [1372] = 1307, + [1373] = 1339, + [1374] = 1374, + [1375] = 1305, + [1376] = 1305, + [1377] = 1377, + [1378] = 1378, + [1379] = 1379, + [1380] = 1380, + [1381] = 1381, + [1382] = 1382, + [1383] = 1383, + [1384] = 1382, + [1385] = 1385, + [1386] = 1339, + [1387] = 1387, + [1388] = 1297, + [1389] = 1389, + [1390] = 1303, + [1391] = 1391, + [1392] = 1392, + [1393] = 1310, + [1394] = 1394, + [1395] = 1325, + [1396] = 1308, + [1397] = 1299, + [1398] = 1398, + [1399] = 1399, + [1400] = 1398, + [1401] = 1333, + [1402] = 1402, + [1403] = 1403, + [1404] = 1374, + [1405] = 1402, + [1406] = 1356, + [1407] = 1407, + [1408] = 1369, + [1409] = 1409, + [1410] = 1410, + [1411] = 1322, + [1412] = 1320, + [1413] = 1319, + [1414] = 1414, + [1415] = 1334, + [1416] = 1416, + [1417] = 1417, + [1418] = 1418, + [1419] = 1419, + [1420] = 1420, + [1421] = 1336, + [1422] = 1337, + [1423] = 1423, + [1424] = 1129, + [1425] = 1425, + [1426] = 1426, + [1427] = 1427, + [1428] = 1338, + [1429] = 1368, + [1430] = 1340, + [1431] = 1343, + [1432] = 1377, + [1433] = 1433, + [1434] = 1434, + [1435] = 1435, + [1436] = 1435, + [1437] = 1381, + [1438] = 1438, + [1439] = 1366, + [1440] = 1440, + [1441] = 1441, + [1442] = 1442, + [1443] = 1358, + [1444] = 1444, + [1445] = 1445, + [1446] = 503, + [1447] = 1447, + [1448] = 1448, + [1449] = 1449, + [1450] = 1304, + [1451] = 1451, + [1452] = 1452, + [1453] = 1158, + [1454] = 1344, + [1455] = 461, + [1456] = 1456, + [1457] = 1365, + [1458] = 1458, + [1459] = 1364, + [1460] = 1460, + [1461] = 1461, + [1462] = 1462, + [1463] = 1463, + [1464] = 1363, + [1465] = 1361, + [1466] = 1360, + [1467] = 1467, + [1468] = 1345, + [1469] = 1462, + [1470] = 1461, + [1471] = 1460, + [1472] = 1456, + [1473] = 1438, + [1474] = 1474, + [1475] = 1475, + [1476] = 1306, + [1477] = 1309, + [1478] = 1478, + [1479] = 1317, + [1480] = 1480, + [1481] = 1481, + [1482] = 1458, + [1483] = 1463, + [1484] = 1474, + [1485] = 1475, + [1486] = 1480, + [1487] = 1487, + [1488] = 1488, + [1489] = 1489, + [1490] = 1490, + [1491] = 1491, + [1492] = 1293, + [1493] = 1493, + [1494] = 1494, + [1495] = 1359, + [1496] = 1346, + [1497] = 1497, + [1498] = 1347, + [1499] = 1499, + [1500] = 1487, + [1501] = 1427, + [1502] = 1426, + [1503] = 1425, + [1504] = 1414, + [1505] = 1409, + [1506] = 1407, + [1507] = 1488, + [1508] = 1348, + [1509] = 1489, + [1510] = 1510, + [1511] = 1490, + [1512] = 1512, + [1513] = 1332, + [1514] = 1380, + [1515] = 1491, + [1516] = 1516, + [1517] = 1493, + [1518] = 1494, + [1519] = 1357, + [1520] = 1520, + [1521] = 1521, + [1522] = 1434, + [1523] = 1523, + [1524] = 1524, + [1525] = 1525, + [1526] = 1526, + [1527] = 1527, + [1528] = 1528, + [1529] = 1467, + [1530] = 1294, + [1531] = 1531, + [1532] = 1532, + [1533] = 1445, + [1534] = 1349, + [1535] = 1350, + [1536] = 1399, + [1537] = 1537, + [1538] = 1538, + [1539] = 1447, + [1540] = 1351, + [1541] = 1541, + [1542] = 1352, + [1543] = 1499, + [1544] = 1544, + [1545] = 1545, + [1546] = 1546, + [1547] = 1547, + [1548] = 1548, + [1549] = 1549, + [1550] = 1550, + [1551] = 1551, + [1552] = 1552, + [1553] = 1551, + [1554] = 1554, + [1555] = 1550, + [1556] = 1556, + [1557] = 1557, + [1558] = 1556, + [1559] = 1559, + [1560] = 1560, + [1561] = 1561, + [1562] = 1562, + [1563] = 1563, + [1564] = 1545, + [1565] = 1565, + [1566] = 1566, + [1567] = 1567, + [1568] = 1568, + [1569] = 1569, + [1570] = 1570, + [1571] = 1552, + [1572] = 1551, + [1573] = 1573, + [1574] = 1550, + [1575] = 1575, + [1576] = 1576, + [1577] = 1544, + [1578] = 1578, + [1579] = 1579, + [1580] = 1580, + [1581] = 1547, + [1582] = 1576, + [1583] = 1583, + [1584] = 1584, + [1585] = 1546, + [1586] = 1586, + [1587] = 1552, + [1588] = 1588, + [1589] = 1589, + [1590] = 1556, + [1591] = 1591, + [1592] = 1592, + [1593] = 1593, + [1594] = 1556, + [1595] = 1595, + [1596] = 1596, + [1597] = 1597, + [1598] = 1598, + [1599] = 1599, + [1600] = 1600, + [1601] = 1601, + [1602] = 1602, + [1603] = 1562, + [1604] = 1559, + [1605] = 1605, + [1606] = 1606, + [1607] = 1560, + [1608] = 1608, + [1609] = 1608, + [1610] = 1608, + [1611] = 1569, + [1612] = 1591, + [1613] = 1596, + [1614] = 1614, + [1615] = 1578, + [1616] = 1606, + [1617] = 1578, + [1618] = 1608, + [1619] = 1591, + [1620] = 1586, + [1621] = 1621, + [1622] = 1591, + [1623] = 1552, + [1624] = 1547, + [1625] = 1550, + [1626] = 1547, + [1627] = 1546, + [1628] = 1546, + [1629] = 1629, + [1630] = 1547, + [1631] = 1578, + [1632] = 1632, + [1633] = 1546, + [1634] = 1634, + [1635] = 1550, + [1636] = 1636, + [1637] = 1551, + [1638] = 1552, + [1639] = 1568, + [1640] = 1561, + [1641] = 1551, +}; -static inline bool sym_identifier_character_set_3(int32_t c) { - return (c < 8192 - ? (c < 160 - ? (c < 0 - ? c == 0 - : c <= '~') - : (c <= 160 || c == 5760)) - : (c <= 8203 || (c < 12288 - ? (c < 8287 - ? c == 8239 - : c <= 8288) - : (c <= 12288 || c == 65279)))); -} +static TSCharacterRange extras_character_set_1[] = { + {'\t', '\r'}, {' ', ' '}, {0xa0, 0xa0}, {0x1680, 0x1680}, {0x2000, 0x200b}, {0x2028, 0x2029}, {0x202f, 0x202f}, {0x205f, 0x2060}, + {0x3000, 0x3000}, {0xfeff, 0xfeff}, +}; -static inline bool sym_identifier_character_set_4(int32_t c) { - return (c < 160 - ? (c < ':' - ? (c < 0 - ? c == 0 - : (c <= '#' || (c >= '%' && c <= '/'))) - : (c <= '@' || (c < '`' - ? (c >= '[' && c <= '^') - : (c <= '`' || (c >= '|' && c <= '~'))))) - : (c <= 160 || (c < 8287 - ? (c < 8192 - ? c == 5760 - : (c <= 8203 || c == 8239)) - : (c <= 8288 || (c < 65279 - ? c == 12288 - : c <= 65279))))); -} +static TSCharacterRange sym_identifier_character_set_1[] = { + {'$', '$'}, {'A', 'Z'}, {'\\', '\\'}, {'_', '_'}, {'a', 'z'}, {0x7f, 0x9f}, {0xa1, 0x167f}, {0x1681, 0x1fff}, + {0x200c, 0x2027}, {0x202a, 0x202e}, {0x2030, 0x205e}, {0x2061, 0x2fff}, {0x3001, 0xfefe}, {0xff00, 0x10ffff}, +}; -static inline bool sym_private_property_identifier_character_set_1(int32_t c) { - return (c < 160 - ? (c < '[' - ? (c < 0 - ? c == 0 - : (c <= '#' || (c >= '%' && c <= '@'))) - : (c <= '^' || (c < '{' - ? c == '`' - : c <= '~'))) - : (c <= 160 || (c < 8287 - ? (c < 8192 - ? c == 5760 - : (c <= 8203 || c == 8239)) - : (c <= 8288 || (c < 65279 - ? c == 12288 - : c <= 65279))))); -} +static TSCharacterRange sym_identifier_character_set_2[] = { + {'$', '$'}, {'0', '9'}, {'A', 'Z'}, {'\\', '\\'}, {'_', '_'}, {'a', 'z'}, {0x7f, 0x9f}, {0xa1, 0x167f}, + {0x1681, 0x1fff}, {0x200c, 0x2027}, {0x202a, 0x202e}, {0x2030, 0x205e}, {0x2061, 0x2fff}, {0x3001, 0xfefe}, {0xff00, 0x10ffff}, +}; static bool ts_lex(TSLexer *lexer, TSStateId state) { START_LEXER(); eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(67); - if (lookahead == '!') ADVANCE(154); - if (lookahead == '"') ADVANCE(158); - if (lookahead == '#') ADVANCE(2); - if (lookahead == '$') ADVANCE(195); - if (lookahead == '%') ADVANCE(142); - if (lookahead == '&') ADVANCE(131); - if (lookahead == '\'') ADVANCE(159); - if (lookahead == '(') ADVANCE(76); - if (lookahead == ')') ADVANCE(77); - if (lookahead == '*') ADVANCE(70); - if (lookahead == '+') ADVANCE(138); - if (lookahead == ',') ADVANCE(74); - if (lookahead == '-') ADVANCE(140); - if (lookahead == '.') ADVANCE(101); - if (lookahead == '/') ADVANCE(180); - if (lookahead == '0') ADVANCE(185); - if (lookahead == ':') ADVANCE(78); - if (lookahead == ';') ADVANCE(72); - if (lookahead == '<') ADVANCE(86); - if (lookahead == '=') ADVANCE(81); - if (lookahead == '>') ADVANCE(89); - if (lookahead == '?') ADVANCE(16); - if (lookahead == '@') ADVANCE(198); - if (lookahead == '[') ADVANCE(83); - if (lookahead == '\\') ADVANCE(25); - if (lookahead == ']') ADVANCE(84); - if (lookahead == '^') ADVANCE(134); - if (lookahead == '`') ADVANCE(178); - if (lookahead == '{') ADVANCE(73); - if (lookahead == '|') ADVANCE(135); - if (lookahead == '}') ADVANCE(75); - if (lookahead == '~') ADVANCE(155); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(186); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(64) - if (lookahead != 0 && - lookahead > 31) ADVANCE(196); + if (eof) ADVANCE(126); + ADVANCE_MAP( + '!', 226, + '"', 159, + '#', 3, + '$', 273, + '%', 214, + '&', 201, + '\'', 160, + '(', 135, + ')', 136, + '*', 129, + '+', 208, + ',', 133, + '-', 210, + '.', 155, + '/', 253, + '0', 258, + ':', 137, + ';', 131, + '<', 150, + '=', 140, + '>', 145, + '?', 28, + '@', 277, + '[', 142, + '\\', 80, + ']', 143, + '^', 204, + '`', 251, + 's', 271, + '{', 132, + '|', 205, + '}', 134, + '~', 227, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(259); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(123); + if (lookahead > '@') ADVANCE(275); END_STATE(); case 1: - if (lookahead == '\n') SKIP(20) - if (lookahead == '/') ADVANCE(12); - if (lookahead == '[') ADVANCE(24); - if (lookahead == '\\') ADVANCE(63); - if (sym_regex_pattern_character_set_1(lookahead)) ADVANCE(181); - if (lookahead != 0) ADVANCE(182); + if (lookahead == '\n') ADVANCE(278); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1); END_STATE(); case 2: - if (lookahead == '!') ADVANCE(68); - if (lookahead == '\\') ADVANCE(26); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(197); + if (lookahead == '\n') SKIP(33); + if (lookahead == '/') ADVANCE(21); + if (lookahead == '[') ADVANCE(76); + if (lookahead == '\\') ADVANCE(122); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(254); + if (lookahead != 0) ADVANCE(255); END_STATE(); case 3: - if (lookahead == '!') ADVANCE(153); - if (lookahead == '"') ADVANCE(158); - if (lookahead == '\'') ADVANCE(159); - if (lookahead == '(') ADVANCE(76); - if (lookahead == '+') ADVANCE(137); - if (lookahead == '-') ADVANCE(139); - if (lookahead == '.') ADVANCE(102); - if (lookahead == '/') ADVANCE(91); - if (lookahead == '0') ADVANCE(185); - if (lookahead == ':') ADVANCE(78); - if (lookahead == '<') ADVANCE(85); - if (lookahead == '>') ADVANCE(88); - if (lookahead == '@') ADVANCE(198); - if (lookahead == '[') ADVANCE(83); - if (lookahead == '\\') ADVANCE(27); - if (lookahead == '`') ADVANCE(178); - if (lookahead == '{') ADVANCE(73); - if (lookahead == '~') ADVANCE(155); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(186); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(3) - if (lookahead != 0 && - lookahead > '#' && - (lookahead < '%' || '?' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '|' && - lookahead != '}') ADVANCE(196); + if (lookahead == '!') ADVANCE(127); + if (lookahead == '\\') ADVANCE(81); + if (set_contains(sym_identifier_character_set_1, 14, lookahead)) ADVANCE(276); END_STATE(); case 4: - if (lookahead == '!') ADVANCE(21); - if (lookahead == '"') ADVANCE(158); - if (lookahead == '#') ADVANCE(23); - if (lookahead == '%') ADVANCE(142); - if (lookahead == '&') ADVANCE(131); - if (lookahead == '\'') ADVANCE(159); - if (lookahead == '(') ADVANCE(76); - if (lookahead == ')') ADVANCE(77); - if (lookahead == '*') ADVANCE(70); - if (lookahead == '+') ADVANCE(138); - if (lookahead == ',') ADVANCE(74); - if (lookahead == '-') ADVANCE(140); - if (lookahead == '.') ADVANCE(102); - if (lookahead == '/') ADVANCE(92); - if (lookahead == '0') ADVANCE(185); - if (lookahead == ':') ADVANCE(78); - if (lookahead == ';') ADVANCE(72); - if (lookahead == '<') ADVANCE(86); - if (lookahead == '=') ADVANCE(81); - if (lookahead == '>') ADVANCE(89); - if (lookahead == '?') ADVANCE(16); - if (lookahead == '@') ADVANCE(198); - if (lookahead == '[') ADVANCE(83); - if (lookahead == '\\') ADVANCE(27); - if (lookahead == ']') ADVANCE(84); - if (lookahead == '^') ADVANCE(134); - if (lookahead == '`') ADVANCE(178); - if (lookahead == '{') ADVANCE(73); - if (lookahead == '|') ADVANCE(135); - if (lookahead == '}') ADVANCE(75); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(186); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(4) - if (lookahead != 0 && - lookahead > 31 && - lookahead != '~') ADVANCE(196); + ADVANCE_MAP( + '!', 225, + '"', 159, + '#', 75, + '\'', 160, + '(', 135, + '*', 128, + '+', 207, + ',', 133, + '-', 209, + '.', 27, + '/', 211, + '0', 258, + ';', 131, + '<', 148, + '@', 277, + '[', 142, + '\\', 82, + '`', 251, + 's', 271, + '{', 132, + '}', 134, + '~', 227, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(259); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(4); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(275); END_STATE(); case 5: - if (lookahead == '!') ADVANCE(21); - if (lookahead == '%') ADVANCE(141); - if (lookahead == '&') ADVANCE(132); - if (lookahead == '(') ADVANCE(76); - if (lookahead == ')') ADVANCE(77); - if (lookahead == '*') ADVANCE(71); - if (lookahead == '+') ADVANCE(137); - if (lookahead == ',') ADVANCE(74); - if (lookahead == '-') ADVANCE(139); - if (lookahead == '.') ADVANCE(100); - if (lookahead == '/') ADVANCE(91); - if (lookahead == ':') ADVANCE(78); - if (lookahead == ';') ADVANCE(72); - if (lookahead == '<') ADVANCE(87); - if (lookahead == '=') ADVANCE(22); - if (lookahead == '>') ADVANCE(90); - if (lookahead == '?') ADVANCE(17); - if (lookahead == '[') ADVANCE(83); - if (lookahead == '\\') ADVANCE(27); - if (lookahead == ']') ADVANCE(84); - if (lookahead == '^') ADVANCE(133); - if (lookahead == '`') ADVANCE(178); - if (lookahead == '{') ADVANCE(73); - if (lookahead == '|') ADVANCE(136); - if (lookahead == '}') ADVANCE(75); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(6) - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(183); - if (lookahead != 0 && - lookahead > '#' && - (lookahead < '\'' || '@' < lookahead) && - lookahead != '~') ADVANCE(196); + ADVANCE_MAP( + '!', 225, + '"', 159, + '#', 75, + '\'', 160, + '(', 135, + '+', 207, + '-', 209, + '.', 156, + '/', 211, + '0', 258, + ':', 137, + '<', 148, + '>', 144, + '@', 277, + '[', 142, + '\\', 82, + '`', 251, + '{', 132, + '~', 227, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(259); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(5); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(275); END_STATE(); case 6: - if (lookahead == '!') ADVANCE(21); - if (lookahead == '%') ADVANCE(141); - if (lookahead == '&') ADVANCE(132); - if (lookahead == '(') ADVANCE(76); - if (lookahead == ')') ADVANCE(77); - if (lookahead == '*') ADVANCE(71); - if (lookahead == '+') ADVANCE(137); - if (lookahead == ',') ADVANCE(74); - if (lookahead == '-') ADVANCE(139); - if (lookahead == '.') ADVANCE(100); - if (lookahead == '/') ADVANCE(91); - if (lookahead == ':') ADVANCE(78); - if (lookahead == ';') ADVANCE(72); - if (lookahead == '<') ADVANCE(87); - if (lookahead == '=') ADVANCE(22); - if (lookahead == '>') ADVANCE(90); - if (lookahead == '?') ADVANCE(17); - if (lookahead == '[') ADVANCE(83); - if (lookahead == '\\') ADVANCE(27); - if (lookahead == ']') ADVANCE(84); - if (lookahead == '^') ADVANCE(133); - if (lookahead == '`') ADVANCE(178); - if (lookahead == '{') ADVANCE(73); - if (lookahead == '|') ADVANCE(136); - if (lookahead == '}') ADVANCE(75); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(6) - if (lookahead != 0 && - lookahead > '#' && - (lookahead < '\'' || '@' < lookahead) && - lookahead != '~') ADVANCE(196); + ADVANCE_MAP( + '!', 73, + '"', 159, + '#', 75, + '%', 214, + '&', 201, + '\'', 160, + '(', 135, + ')', 136, + '*', 129, + '+', 208, + ',', 133, + '-', 210, + '.', 156, + '/', 212, + '0', 258, + ':', 137, + ';', 131, + '<', 151, + '=', 140, + '>', 145, + '?', 28, + '@', 277, + '[', 142, + '\\', 82, + ']', 143, + '^', 204, + '`', 251, + '{', 132, + '|', 205, + '}', 134, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(259); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(6); + if (lookahead > '#' && + (lookahead < '{' || '~' < lookahead)) ADVANCE(275); END_STATE(); case 7: - if (lookahead == '"') ADVANCE(158); - if (lookahead == '/') ADVANCE(161); - if (lookahead == '\\') ADVANCE(28); - if (anon_sym_BANG_character_set_1(lookahead)) ADVANCE(164); - if (lookahead != 0) ADVANCE(165); + ADVANCE_MAP( + '!', 73, + '%', 213, + '&', 202, + '(', 135, + ')', 136, + '*', 130, + '+', 207, + ',', 133, + '-', 209, + '.', 154, + '/', 211, + ':', 137, + ';', 131, + '<', 152, + '=', 74, + '>', 146, + '?', 29, + '[', 142, + '\\', 82, + ']', 143, + '^', 203, + '`', 251, + '{', 132, + '|', 206, + '}', 134, + ); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(256); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(8); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '`' || '~' < lookahead)) ADVANCE(275); END_STATE(); case 8: - if (lookahead == '$') ADVANCE(29); - if (lookahead == '/') ADVANCE(180); - if (lookahead == '\\') ADVANCE(28); - if (lookahead == '`') ADVANCE(178); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(9) + ADVANCE_MAP( + '!', 73, + '%', 213, + '&', 202, + '(', 135, + ')', 136, + '*', 130, + '+', 207, + ',', 133, + '-', 209, + '.', 154, + '/', 211, + ':', 137, + ';', 131, + '<', 152, + '=', 74, + '>', 146, + '?', 29, + '[', 142, + '\\', 82, + ']', 143, + '^', 203, + '`', 251, + '{', 132, + '|', 206, + '}', 134, + ); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(8); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(275); END_STATE(); case 9: - if (lookahead == '$') ADVANCE(29); - if (lookahead == '/') ADVANCE(12); - if (lookahead == '`') ADVANCE(178); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(9) + ADVANCE_MAP( + '"', 159, + '#', 75, + '&', 13, + '\'', 160, + '(', 135, + '*', 128, + '.', 156, + '/', 21, + '0', 258, + '<', 149, + '>', 144, + '@', 277, + '[', 142, + '\\', 82, + 's', 271, + '{', 132, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(259); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(9); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || '~' < lookahead)) ADVANCE(275); END_STATE(); case 10: - if (lookahead == '\'') ADVANCE(159); - if (lookahead == '/') ADVANCE(167); - if (lookahead == '\\') ADVANCE(28); - if (anon_sym_BANG_character_set_1(lookahead)) ADVANCE(170); - if (lookahead != 0) ADVANCE(171); + if (lookahead == '"') ADVANCE(159); + if (lookahead == '&') ADVANCE(15); + if (lookahead == '/') ADVANCE(162); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(161); + if (lookahead != 0) ADVANCE(163); END_STATE(); case 11: - if (lookahead == '(') ADVANCE(76); - if (lookahead == '.') ADVANCE(100); - if (lookahead == '/') ADVANCE(91); - if (lookahead == ':') ADVANCE(78); - if (lookahead == '=') ADVANCE(79); - if (lookahead == '>') ADVANCE(88); - if (lookahead == '\\') ADVANCE(27); - if (lookahead == '{') ADVANCE(73); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(11) - if (lookahead == '$' || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(194); - if (lookahead != 0 && - lookahead > '~') ADVANCE(196); + if (lookahead == '"') ADVANCE(159); + if (lookahead == '/') ADVANCE(21); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(11); END_STATE(); case 12: - if (lookahead == '*') ADVANCE(14); - if (lookahead == '/') ADVANCE(177); + if (lookahead == '"') ADVANCE(159); + if (lookahead == '/') ADVANCE(230); + if (lookahead == '\\') ADVANCE(83); + if (lookahead == '\n' || + lookahead == '\r') SKIP(11); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(233); + if (lookahead != 0) ADVANCE(235); END_STATE(); case 13: - if (lookahead == '*') ADVANCE(13); - if (lookahead == '/') ADVANCE(176); - if (lookahead != 0) ADVANCE(14); + if (lookahead == '#') ADVANCE(94); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(72); END_STATE(); case 14: - if (lookahead == '*') ADVANCE(13); - if (lookahead != 0) ADVANCE(14); + if (lookahead == '#') ADVANCE(94); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(72); + if (lookahead != 0) ADVANCE(169); END_STATE(); case 15: - if (lookahead == '.') ADVANCE(18); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(192); + if (lookahead == '#') ADVANCE(94); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(72); + if (lookahead != 0) ADVANCE(163); END_STATE(); case 16: - if (lookahead == '.') ADVANCE(104); - if (lookahead == '?') ADVANCE(152); + if (lookahead == '$') ADVANCE(84); + if (lookahead == '/') ADVANCE(21); + if (lookahead == '\\') ADVANCE(83); + if (lookahead == '`') ADVANCE(251); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(17); END_STATE(); case 17: - if (lookahead == '.') ADVANCE(104); - if (lookahead == '?') ADVANCE(151); + if (lookahead == '$') ADVANCE(84); + if (lookahead == '/') ADVANCE(21); + if (lookahead == '`') ADVANCE(251); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(17); END_STATE(); case 18: - if (lookahead == '.') ADVANCE(120); + if (lookahead == '&') ADVANCE(14); + if (lookahead == '\'') ADVANCE(160); + if (lookahead == '/') ADVANCE(168); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(167); + if (lookahead != 0) ADVANCE(169); END_STATE(); case 19: - if (lookahead == '/') ADVANCE(94); - if (lookahead == '<') ADVANCE(85); - if (lookahead == '{') ADVANCE(73); - if (anon_sym_BANG_character_set_1(lookahead)) ADVANCE(97); - if (lookahead != 0 && - lookahead != '>' && - lookahead != '}') ADVANCE(98); + if (lookahead == '\'') ADVANCE(160); + if (lookahead == '/') ADVANCE(21); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(19); END_STATE(); case 20: - if (lookahead == '/') ADVANCE(12); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(20) + if (lookahead == '\'') ADVANCE(160); + if (lookahead == '/') ADVANCE(236); + if (lookahead == '\\') ADVANCE(83); + if (lookahead == '\n' || + lookahead == '\r') SKIP(19); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(239); + if (lookahead != 0) ADVANCE(241); END_STATE(); case 21: - if (lookahead == '=') ADVANCE(148); + if (lookahead == '*') ADVANCE(24); + if (lookahead == '/') ADVANCE(250); END_STATE(); case 22: - if (lookahead == '=') ADVANCE(146); + if (lookahead == '*') ADVANCE(24); + if (lookahead == '/') ADVANCE(250); + if (lookahead == '>') ADVANCE(158); END_STATE(); case 23: - if (lookahead == '\\') ADVANCE(26); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(197); + if (lookahead == '*') ADVANCE(23); + if (lookahead == '/') ADVANCE(247); + if (lookahead != 0) ADVANCE(24); END_STATE(); case 24: - if (lookahead == '\\') ADVANCE(62); - if (lookahead == ']') ADVANCE(182); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(24); + if (lookahead == '*') ADVANCE(23); + if (lookahead != 0) ADVANCE(24); END_STATE(); case 25: - if (lookahead == 'u') ADVANCE(30); - if (lookahead == 'x') ADVANCE(54); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(175); - if (lookahead != 0) ADVANCE(172); + if (lookahead == '*') ADVANCE(170); + if (lookahead == '#' || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(24); + if (lookahead != 0) ADVANCE(171); END_STATE(); case 26: - if (lookahead == 'u') ADVANCE(31); + if (lookahead == '*') ADVANCE(164); + if (lookahead == '#' || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(24); + if (lookahead != 0) ADVANCE(165); END_STATE(); case 27: - if (lookahead == 'u') ADVANCE(32); + if (lookahead == '.') ADVANCE(30); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(264); END_STATE(); case 28: - if (lookahead == 'u') ADVANCE(33); - if (lookahead == 'x') ADVANCE(54); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(175); - if (lookahead != 0) ADVANCE(172); + if (lookahead == '.') ADVANCE(174); + if (lookahead == '?') ADVANCE(224); END_STATE(); case 29: - if (lookahead == '{') ADVANCE(179); + if (lookahead == '.') ADVANCE(174); + if (lookahead == '?') ADVANCE(223); END_STATE(); case 30: - if (lookahead == '{') ADVANCE(49); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(59); + if (lookahead == '.') ADVANCE(190); END_STATE(); case 31: - if (lookahead == '{') ADVANCE(52); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(60); + if (lookahead == '.') ADVANCE(154); + if (lookahead == '/') ADVANCE(22); + if (lookahead == ':') ADVANCE(137); + if (lookahead == '=') ADVANCE(138); + if (lookahead == '>') ADVANCE(144); + if (lookahead == '\\') ADVANCE(82); + if (lookahead == '{') ADVANCE(132); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(31); + if (lookahead == '$' || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(267); + if (lookahead > '~') ADVANCE(275); END_STATE(); case 32: - if (lookahead == '{') ADVANCE(53); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(61); + if (lookahead == '/') ADVANCE(253); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(33); END_STATE(); case 33: - if (lookahead == '{') ADVANCE(55); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(51); + if (lookahead == '/') ADVANCE(21); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(33); END_STATE(); case 34: - if (lookahead == '}') ADVANCE(196); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(34); + if (lookahead == ';') ADVANCE(147); END_STATE(); case 35: - if (lookahead == '}') ADVANCE(197); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(35); + if (lookahead == ';') ADVANCE(147); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(34); END_STATE(); case 36: - if (lookahead == '}') ADVANCE(172); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(36); + if (lookahead == ';') ADVANCE(147); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(35); END_STATE(); case 37: - if (lookahead == '}') ADVANCE(173); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(37); + if (lookahead == ';') ADVANCE(147); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(36); END_STATE(); case 38: - if (lookahead == '+' || - lookahead == '-') ADVANCE(44); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(191); + if (lookahead == ';') ADVANCE(147); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(37); END_STATE(); case 39: - if (lookahead == '0' || - lookahead == '1') ADVANCE(187); + if (lookahead == ';') ADVANCE(147); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(34); END_STATE(); case 40: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(188); + if (lookahead == ';') ADVANCE(147); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(39); END_STATE(); case 41: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(186); + if (lookahead == ';') ADVANCE(147); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(40); END_STATE(); case 42: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(192); + if (lookahead == ';') ADVANCE(147); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(41); END_STATE(); case 43: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(190); + if (lookahead == ';') ADVANCE(147); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(42); END_STATE(); case 44: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(191); + if (lookahead == ';') ADVANCE(147); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(34); END_STATE(); case 45: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(196); + if (lookahead == ';') ADVANCE(147); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(44); END_STATE(); case 46: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(197); + if (lookahead == ';') ADVANCE(147); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(45); END_STATE(); case 47: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(172); + if (lookahead == ';') ADVANCE(147); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(46); END_STATE(); case 48: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(189); + if (lookahead == ';') ADVANCE(147); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(47); END_STATE(); case 49: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(37); + if (lookahead == ';') ADVANCE(147); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 50: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(173); + if (lookahead == ';') ADVANCE(147); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(49); END_STATE(); case 51: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(54); + if (lookahead == ';') ADVANCE(147); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(50); END_STATE(); case 52: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(35); + if (lookahead == ';') ADVANCE(147); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(51); END_STATE(); case 53: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(34); + if (lookahead == ';') ADVANCE(147); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(52); END_STATE(); case 54: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(47); + if (lookahead == ';') ADVANCE(147); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(53); END_STATE(); case 55: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(36); + if (lookahead == ';') ADVANCE(147); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(54); END_STATE(); case 56: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(50); + if (lookahead == ';') ADVANCE(147); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(55); END_STATE(); case 57: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(46); + if (lookahead == ';') ADVANCE(147); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(56); END_STATE(); case 58: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(45); + if (lookahead == ';') ADVANCE(147); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(57); END_STATE(); case 59: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(56); + if (lookahead == ';') ADVANCE(147); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(58); END_STATE(); case 60: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(57); + if (lookahead == ';') ADVANCE(147); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(59); END_STATE(); case 61: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(58); + if (lookahead == ';') ADVANCE(147); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(60); END_STATE(); case 62: - if (lookahead != 0 && - lookahead != '\n') ADVANCE(24); + if (lookahead == ';') ADVANCE(147); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(61); END_STATE(); case 63: - if (lookahead != 0 && - lookahead != '\n') ADVANCE(182); + if (lookahead == ';') ADVANCE(147); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(62); END_STATE(); case 64: - if (eof) ADVANCE(67); - if (lookahead == '!') ADVANCE(154); - if (lookahead == '"') ADVANCE(158); - if (lookahead == '#') ADVANCE(2); - if (lookahead == '$') ADVANCE(195); - if (lookahead == '%') ADVANCE(142); - if (lookahead == '&') ADVANCE(131); - if (lookahead == '\'') ADVANCE(159); - if (lookahead == '(') ADVANCE(76); - if (lookahead == ')') ADVANCE(77); - if (lookahead == '*') ADVANCE(70); - if (lookahead == '+') ADVANCE(138); - if (lookahead == ',') ADVANCE(74); - if (lookahead == '-') ADVANCE(140); - if (lookahead == '.') ADVANCE(101); - if (lookahead == '/') ADVANCE(91); - if (lookahead == '0') ADVANCE(185); - if (lookahead == ':') ADVANCE(78); - if (lookahead == ';') ADVANCE(72); - if (lookahead == '<') ADVANCE(86); - if (lookahead == '=') ADVANCE(81); - if (lookahead == '>') ADVANCE(89); - if (lookahead == '?') ADVANCE(16); - if (lookahead == '@') ADVANCE(198); - if (lookahead == '[') ADVANCE(83); - if (lookahead == '\\') ADVANCE(27); - if (lookahead == ']') ADVANCE(84); - if (lookahead == '^') ADVANCE(134); - if (lookahead == '`') ADVANCE(178); - if (lookahead == '{') ADVANCE(73); - if (lookahead == '|') ADVANCE(135); - if (lookahead == '}') ADVANCE(75); - if (lookahead == '~') ADVANCE(155); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(186); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(64) - if (lookahead != 0 && - lookahead > 31) ADVANCE(196); + if (lookahead == ';') ADVANCE(147); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(63); END_STATE(); case 65: - if (eof) ADVANCE(67); - if (lookahead == '!') ADVANCE(154); - if (lookahead == '"') ADVANCE(158); - if (lookahead == '#') ADVANCE(23); - if (lookahead == '%') ADVANCE(141); - if (lookahead == '&') ADVANCE(132); - if (lookahead == '\'') ADVANCE(159); - if (lookahead == '(') ADVANCE(76); - if (lookahead == ')') ADVANCE(77); - if (lookahead == '*') ADVANCE(71); - if (lookahead == '+') ADVANCE(137); - if (lookahead == ',') ADVANCE(74); - if (lookahead == '-') ADVANCE(139); - if (lookahead == '.') ADVANCE(102); - if (lookahead == '/') ADVANCE(91); - if (lookahead == '0') ADVANCE(185); - if (lookahead == ':') ADVANCE(78); - if (lookahead == ';') ADVANCE(72); - if (lookahead == '<') ADVANCE(87); - if (lookahead == '=') ADVANCE(80); - if (lookahead == '>') ADVANCE(90); - if (lookahead == '?') ADVANCE(17); - if (lookahead == '@') ADVANCE(198); - if (lookahead == '[') ADVANCE(83); - if (lookahead == '\\') ADVANCE(27); - if (lookahead == ']') ADVANCE(84); - if (lookahead == '^') ADVANCE(133); - if (lookahead == '`') ADVANCE(178); - if (lookahead == '{') ADVANCE(73); - if (lookahead == '|') ADVANCE(136); - if (lookahead == '}') ADVANCE(75); - if (lookahead == '~') ADVANCE(155); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(186); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(65) - if (lookahead != 0 && - lookahead > 31) ADVANCE(196); + if (lookahead == ';') ADVANCE(147); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(64); END_STATE(); case 66: - if (eof) ADVANCE(67); - if (lookahead == '!') ADVANCE(153); - if (lookahead == '"') ADVANCE(158); - if (lookahead == '#') ADVANCE(2); - if (lookahead == '\'') ADVANCE(159); - if (lookahead == '(') ADVANCE(76); - if (lookahead == ')') ADVANCE(77); - if (lookahead == '*') ADVANCE(69); - if (lookahead == '+') ADVANCE(137); - if (lookahead == ',') ADVANCE(74); - if (lookahead == '-') ADVANCE(139); - if (lookahead == '.') ADVANCE(15); - if (lookahead == '/') ADVANCE(91); - if (lookahead == '0') ADVANCE(185); - if (lookahead == ':') ADVANCE(78); - if (lookahead == ';') ADVANCE(72); - if (lookahead == '<') ADVANCE(85); - if (lookahead == '=') ADVANCE(82); - if (lookahead == '>') ADVANCE(88); - if (lookahead == '@') ADVANCE(198); - if (lookahead == '[') ADVANCE(83); - if (lookahead == '\\') ADVANCE(27); - if (lookahead == ']') ADVANCE(84); - if (lookahead == '`') ADVANCE(178); - if (lookahead == '{') ADVANCE(73); - if (lookahead == '}') ADVANCE(75); - if (lookahead == '~') ADVANCE(155); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(186); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(66) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || '?' < lookahead) && - lookahead != '^' && - lookahead != '|') ADVANCE(196); + if (lookahead == ';') ADVANCE(147); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(65); END_STATE(); case 67: - ACCEPT_TOKEN(ts_builtin_sym_end); + if (lookahead == ';') ADVANCE(147); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(66); END_STATE(); case 68: - ACCEPT_TOKEN(sym_hash_bang_line); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(68); + if (lookahead == ';') ADVANCE(147); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(67); END_STATE(); case 69: - ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == ';') ADVANCE(147); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(68); END_STATE(); case 70: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(144); - if (lookahead == '=') ADVANCE(107); + if (lookahead == ';') ADVANCE(147); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(69); END_STATE(); case 71: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(143); + if (lookahead == ';') ADVANCE(147); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(70); END_STATE(); case 72: - ACCEPT_TOKEN(anon_sym_SEMI); + if (lookahead == ';') ADVANCE(147); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(71); END_STATE(); case 73: - ACCEPT_TOKEN(anon_sym_LBRACE); + if (lookahead == '=') ADVANCE(220); END_STATE(); case 74: - ACCEPT_TOKEN(anon_sym_COMMA); + if (lookahead == '=') ADVANCE(218); END_STATE(); case 75: - ACCEPT_TOKEN(anon_sym_RBRACE); + if (lookahead == '\\') ADVANCE(81); + if (set_contains(sym_identifier_character_set_1, 14, lookahead)) ADVANCE(276); END_STATE(); case 76: - ACCEPT_TOKEN(anon_sym_LPAREN); + if (lookahead == '\\') ADVANCE(121); + if (lookahead == ']') ADVANCE(255); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(76); END_STATE(); case 77: - ACCEPT_TOKEN(anon_sym_RPAREN); + if (lookahead == 'e') ADVANCE(79); END_STATE(); case 78: - ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == 'g') ADVANCE(77); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(78); END_STATE(); case 79: - ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == 't') ADVANCE(1); END_STATE(); case 80: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(146); + if (lookahead == 'u') ADVANCE(85); + if (lookahead == 'x') ADVANCE(111); + if (lookahead == '\r' || + lookahead == '?') ADVANCE(244); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(246); + if (lookahead != 0) ADVANCE(242); END_STATE(); case 81: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(146); - if (lookahead == '>') ADVANCE(103); + if (lookahead == 'u') ADVANCE(86); END_STATE(); case 82: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '>') ADVANCE(103); + if (lookahead == 'u') ADVANCE(87); END_STATE(); case 83: - ACCEPT_TOKEN(anon_sym_LBRACK); + if (lookahead == 'u') ADVANCE(88); + if (lookahead == 'x') ADVANCE(111); + if (lookahead == '\r' || + lookahead == '?') ADVANCE(244); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(246); + if (lookahead != 0) ADVANCE(242); END_STATE(); case 84: - ACCEPT_TOKEN(anon_sym_RBRACK); + if (lookahead == '{') ADVANCE(252); END_STATE(); case 85: - ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '{') ADVANCE(105); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(116); END_STATE(); case 86: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(130); - if (lookahead == '=') ADVANCE(145); + if (lookahead == '{') ADVANCE(109); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(117); END_STATE(); case 87: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(129); - if (lookahead == '=') ADVANCE(145); + if (lookahead == '{') ADVANCE(110); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(118); END_STATE(); case 88: - ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '{') ADVANCE(112); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(108); END_STATE(); case 89: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(150); - if (lookahead == '>') ADVANCE(125); + if (lookahead == '}') ADVANCE(275); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(89); END_STATE(); case 90: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(150); - if (lookahead == '>') ADVANCE(126); + if (lookahead == '}') ADVANCE(276); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(90); END_STATE(); case 91: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(14); - if (lookahead == '/') ADVANCE(177); + if (lookahead == '}') ADVANCE(242); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(91); END_STATE(); case 92: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(14); - if (lookahead == '/') ADVANCE(177); - if (lookahead == '=') ADVANCE(108); + if (lookahead == '}') ADVANCE(243); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(92); END_STATE(); case 93: - ACCEPT_TOKEN(sym_jsx_text); - if (lookahead == '\n') ADVANCE(98); - if (lookahead == '<' || - lookahead == '>' || - lookahead == '{' || - lookahead == '}') ADVANCE(177); - if (lookahead != 0) ADVANCE(93); + if (lookahead == '+' || + lookahead == '-') ADVANCE(100); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(265); END_STATE(); case 94: - ACCEPT_TOKEN(sym_jsx_text); - if (lookahead == '*') ADVANCE(96); - if (lookahead == '/') ADVANCE(93); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '>' && - lookahead != '{' && - lookahead != '}') ADVANCE(98); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(107); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38); END_STATE(); case 95: - ACCEPT_TOKEN(sym_jsx_text); - if (lookahead == '*') ADVANCE(95); - if (lookahead == '/') ADVANCE(98); - if (lookahead == '<' || - lookahead == '>' || - lookahead == '{' || - lookahead == '}') ADVANCE(14); - if (lookahead != 0) ADVANCE(96); + if (lookahead == '0' || + lookahead == '1') ADVANCE(261); END_STATE(); case 96: - ACCEPT_TOKEN(sym_jsx_text); - if (lookahead == '*') ADVANCE(95); - if (lookahead == '<' || - lookahead == '>' || - lookahead == '{' || - lookahead == '}') ADVANCE(14); - if (lookahead != 0) ADVANCE(96); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(262); END_STATE(); case 97: - ACCEPT_TOKEN(sym_jsx_text); - if (lookahead == '/') ADVANCE(94); - if (anon_sym_BANG_character_set_1(lookahead)) ADVANCE(97); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '>' && - lookahead != '{' && - lookahead != '}') ADVANCE(98); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(259); END_STATE(); case 98: - ACCEPT_TOKEN(sym_jsx_text); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '>' && - lookahead != '{' && - lookahead != '}') ADVANCE(98); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(264); END_STATE(); case 99: - ACCEPT_TOKEN(sym_jsx_identifier); - if (lookahead == '$' || - lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(99); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(260); END_STATE(); case 100: - ACCEPT_TOKEN(anon_sym_DOT); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(265); END_STATE(); case 101: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(18); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(192); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(275); END_STATE(); case 102: - ACCEPT_TOKEN(anon_sym_DOT); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(192); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(276); END_STATE(); case 103: - ACCEPT_TOKEN(anon_sym_EQ_GT); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(242); END_STATE(); case 104: - ACCEPT_TOKEN(anon_sym_QMARK_DOT); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(263); END_STATE(); case 105: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(92); END_STATE(); case 106: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(243); END_STATE(); case 107: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(43); END_STATE(); case 108: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(111); END_STATE(); case 109: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(90); END_STATE(); case 110: - ACCEPT_TOKEN(anon_sym_CARET_EQ); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(89); END_STATE(); case 111: - ACCEPT_TOKEN(anon_sym_AMP_EQ); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(103); END_STATE(); case 112: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(91); END_STATE(); case 113: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(106); END_STATE(); case 114: - ACCEPT_TOKEN(anon_sym_GT_GT_GT_EQ); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(102); END_STATE(); case 115: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(101); END_STATE(); case 116: - ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(113); END_STATE(); case 117: - ACCEPT_TOKEN(anon_sym_AMP_AMP_EQ); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(114); END_STATE(); case 118: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE_EQ); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(115); END_STATE(); case 119: - ACCEPT_TOKEN(anon_sym_QMARK_QMARK_EQ); + if (lookahead != 0 && + lookahead != '#' && + (lookahead < 'A' || 'Z' < lookahead) && + (lookahead < 'a' || 'z' < lookahead)) ADVANCE(169); END_STATE(); case 120: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + if (lookahead != 0 && + lookahead != '#' && + (lookahead < 'A' || 'Z' < lookahead) && + (lookahead < 'a' || 'z' < lookahead)) ADVANCE(163); END_STATE(); case 121: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(76); END_STATE(); case 122: - ACCEPT_TOKEN(anon_sym_AMP_AMP); - if (lookahead == '=') ADVANCE(117); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(255); END_STATE(); case 123: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + if (eof) ADVANCE(126); + ADVANCE_MAP( + '!', 226, + '"', 159, + '#', 3, + '$', 273, + '%', 214, + '&', 201, + '\'', 160, + '(', 135, + ')', 136, + '*', 129, + '+', 208, + ',', 133, + '-', 210, + '.', 155, + '/', 212, + '0', 258, + ':', 137, + ';', 131, + '<', 150, + '=', 140, + '>', 145, + '?', 28, + '@', 277, + '[', 142, + '\\', 82, + ']', 143, + '^', 204, + '`', 251, + 's', 271, + '{', 132, + '|', 205, + '}', 134, + '~', 227, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(259); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(123); + if (lookahead > '@') ADVANCE(275); END_STATE(); case 124: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); - if (lookahead == '=') ADVANCE(118); + if (eof) ADVANCE(126); + ADVANCE_MAP( + '!', 226, + '"', 159, + '#', 75, + '%', 213, + '&', 202, + '\'', 160, + '(', 135, + ')', 136, + '*', 130, + '+', 207, + ',', 133, + '-', 209, + '.', 156, + '/', 211, + '0', 258, + ':', 137, + ';', 131, + '<', 152, + '=', 139, + '>', 146, + '?', 29, + '@', 277, + '[', 142, + '\\', 82, + ']', 143, + '^', 203, + '`', 251, + '{', 132, + '|', 206, + '}', 134, + '~', 227, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(259); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(124); + if (lookahead > '#') ADVANCE(275); END_STATE(); case 125: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(113); - if (lookahead == '>') ADVANCE(128); + if (eof) ADVANCE(126); + ADVANCE_MAP( + '!', 225, + '"', 159, + '#', 3, + '\'', 160, + '(', 135, + ')', 136, + '*', 128, + '+', 207, + ',', 133, + '-', 209, + '.', 27, + '/', 211, + '0', 258, + ':', 137, + ';', 131, + '<', 148, + '=', 141, + '>', 144, + '@', 277, + '[', 142, + '\\', 82, + ']', 143, + '`', 251, + '{', 132, + '}', 134, + '~', 227, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(259); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(125); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(275); END_STATE(); case 126: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '>') ADVANCE(127); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 127: - ACCEPT_TOKEN(anon_sym_GT_GT_GT); + ACCEPT_TOKEN(sym_hash_bang_line); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(127); END_STATE(); case 128: - ACCEPT_TOKEN(anon_sym_GT_GT_GT); - if (lookahead == '=') ADVANCE(114); + ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); case 129: - ACCEPT_TOKEN(anon_sym_LT_LT); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(216); + if (lookahead == '=') ADVANCE(177); END_STATE(); case 130: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(115); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(215); END_STATE(); case 131: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(122); - if (lookahead == '=') ADVANCE(111); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 132: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(121); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 133: - ACCEPT_TOKEN(anon_sym_CARET); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 134: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(110); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 135: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(112); - if (lookahead == '|') ADVANCE(124); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 136: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(123); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 137: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(156); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 138: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(156); - if (lookahead == '=') ADVANCE(105); + ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 139: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(157); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(218); END_STATE(); case 140: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(157); - if (lookahead == '=') ADVANCE(106); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(218); + if (lookahead == '>') ADVANCE(173); END_STATE(); case 141: - ACCEPT_TOKEN(anon_sym_PERCENT); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '>') ADVANCE(173); END_STATE(); case 142: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(109); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 143: - ACCEPT_TOKEN(anon_sym_STAR_STAR); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 144: - ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '=') ADVANCE(116); + ACCEPT_TOKEN(anon_sym_GT); END_STATE(); case 145: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(222); + if (lookahead == '>') ADVANCE(195); END_STATE(); case 146: - ACCEPT_TOKEN(anon_sym_EQ_EQ); - if (lookahead == '=') ADVANCE(147); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(222); + if (lookahead == '>') ADVANCE(196); END_STATE(); case 147: - ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); + ACCEPT_TOKEN(sym_html_character_reference); END_STATE(); case 148: - ACCEPT_TOKEN(anon_sym_BANG_EQ); - if (lookahead == '=') ADVANCE(149); + ACCEPT_TOKEN(anon_sym_LT); END_STATE(); case 149: - ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '/') ADVANCE(157); END_STATE(); case 150: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '/') ADVANCE(157); + if (lookahead == '<') ADVANCE(200); + if (lookahead == '=') ADVANCE(217); END_STATE(); case 151: - ACCEPT_TOKEN(anon_sym_QMARK_QMARK); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(200); + if (lookahead == '=') ADVANCE(217); END_STATE(); case 152: - ACCEPT_TOKEN(anon_sym_QMARK_QMARK); - if (lookahead == '=') ADVANCE(119); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(199); + if (lookahead == '=') ADVANCE(217); END_STATE(); case 153: - ACCEPT_TOKEN(anon_sym_BANG); + ACCEPT_TOKEN(sym_jsx_identifier); + if (lookahead == '$' || + lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(153); END_STATE(); case 154: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(148); + ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); case 155: - ACCEPT_TOKEN(anon_sym_TILDE); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(30); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(264); END_STATE(); case 156: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + ACCEPT_TOKEN(anon_sym_DOT); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(264); END_STATE(); case 157: - ACCEPT_TOKEN(anon_sym_DASH_DASH); + ACCEPT_TOKEN(anon_sym_LT_SLASH); END_STATE(); case 158: - ACCEPT_TOKEN(anon_sym_DQUOTE); + ACCEPT_TOKEN(anon_sym_SLASH_GT); END_STATE(); case 159: - ACCEPT_TOKEN(anon_sym_SQUOTE); + ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); case 160: - ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '\n') ADVANCE(165); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(160); + ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); case 161: - ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '*') ADVANCE(163); - if (lookahead == '/') ADVANCE(160); + ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); + if (lookahead == '&') ADVANCE(15); + if (lookahead == '/') ADVANCE(162); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(161); if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(165); + lookahead != '"') ADVANCE(163); END_STATE(); case 162: - ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '*') ADVANCE(162); - if (lookahead == '/') ADVANCE(165); + ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); + if (lookahead == '&') ADVANCE(120); + if (lookahead == '*') ADVANCE(165); + if (lookahead == '/') ADVANCE(166); if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(163); + lookahead != '"') ADVANCE(163); END_STATE(); case 163: - ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '*') ADVANCE(162); + ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); + if (lookahead == '&') ADVANCE(120); if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(163); + lookahead != '"') ADVANCE(163); END_STATE(); case 164: - ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '/') ADVANCE(161); - if (anon_sym_BANG_character_set_1(lookahead)) ADVANCE(164); + ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); + if (lookahead == '&') ADVANCE(26); + if (lookahead == '*') ADVANCE(164); + if (lookahead == '/') ADVANCE(163); if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(165); + lookahead != '"') ADVANCE(165); END_STATE(); case 165: - ACCEPT_TOKEN(sym_unescaped_double_string_fragment); + ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); + if (lookahead == '&') ADVANCE(26); + if (lookahead == '*') ADVANCE(164); if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(165); + lookahead != '"') ADVANCE(165); END_STATE(); case 166: - ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '\n') ADVANCE(171); + ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); + if (lookahead == '&') ADVANCE(249); + if (lookahead == '\n' || + lookahead == '\r' || + lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(163); if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(166); + lookahead != '"') ADVANCE(166); END_STATE(); case 167: - ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '*') ADVANCE(169); - if (lookahead == '/') ADVANCE(166); + ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); + if (lookahead == '&') ADVANCE(14); + if (lookahead == '/') ADVANCE(168); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(167); if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(171); + lookahead != '&' && + lookahead != '\'') ADVANCE(169); END_STATE(); case 168: - ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '*') ADVANCE(168); - if (lookahead == '/') ADVANCE(171); + ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); + if (lookahead == '&') ADVANCE(119); + if (lookahead == '*') ADVANCE(171); + if (lookahead == '/') ADVANCE(172); if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(169); + lookahead != '&' && + lookahead != '\'') ADVANCE(169); END_STATE(); case 169: - ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '*') ADVANCE(168); + ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); + if (lookahead == '&') ADVANCE(119); if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(169); + lookahead != '&' && + lookahead != '\'') ADVANCE(169); END_STATE(); case 170: - ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '/') ADVANCE(167); - if (anon_sym_BANG_character_set_1(lookahead)) ADVANCE(170); + ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); + if (lookahead == '&') ADVANCE(25); + if (lookahead == '*') ADVANCE(170); + if (lookahead == '/') ADVANCE(169); if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(171); + lookahead != '&' && + lookahead != '\'') ADVANCE(171); END_STATE(); case 171: - ACCEPT_TOKEN(sym_unescaped_single_string_fragment); + ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); + if (lookahead == '&') ADVANCE(25); + if (lookahead == '*') ADVANCE(170); if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(171); + lookahead != '&' && + lookahead != '\'') ADVANCE(171); END_STATE(); case 172: - ACCEPT_TOKEN(sym_escape_sequence); + ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); + if (lookahead == '&') ADVANCE(248); + if (lookahead == '\n' || + lookahead == '\r' || + lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(169); + if (lookahead != 0 && + lookahead != '&' && + lookahead != '\'') ADVANCE(172); END_STATE(); case 173: - ACCEPT_TOKEN(sym_escape_sequence); - if (lookahead == '\\') ADVANCE(27); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(196); + ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); case 174: - ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(172); + ACCEPT_TOKEN(sym_optional_chain); END_STATE(); case 175: - ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(174); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 176: - ACCEPT_TOKEN(sym_comment); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 177: - ACCEPT_TOKEN(sym_comment); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(177); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 178: - ACCEPT_TOKEN(anon_sym_BQUOTE); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 179: - ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); case 180: - ACCEPT_TOKEN(anon_sym_SLASH2); - if (lookahead == '*') ADVANCE(14); - if (lookahead == '/') ADVANCE(177); + ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); case 181: - ACCEPT_TOKEN(sym_regex_pattern); - if (lookahead == '\n') SKIP(20) - if (lookahead == '/') ADVANCE(12); - if (lookahead == '[') ADVANCE(24); - if (lookahead == '\\') ADVANCE(63); - if (sym_regex_pattern_character_set_1(lookahead)) ADVANCE(181); - if (lookahead != 0) ADVANCE(182); + ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); case 182: - ACCEPT_TOKEN(sym_regex_pattern); - if (lookahead == '[') ADVANCE(24); - if (lookahead == '\\') ADVANCE(63); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '/') ADVANCE(182); + ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); case 183: - ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == '\\') ADVANCE(27); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(183); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(196); + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); case 184: - ACCEPT_TOKEN(sym_number); + ACCEPT_TOKEN(anon_sym_GT_GT_GT_EQ); END_STATE(); case 185: - ACCEPT_TOKEN(sym_number); - if (lookahead == '.') ADVANCE(193); - if (lookahead == '0') ADVANCE(190); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(39); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(38); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(40); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(48); - if (lookahead == '_') ADVANCE(43); - if (lookahead == 'n') ADVANCE(184); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(186); + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); case 186: - ACCEPT_TOKEN(sym_number); - if (lookahead == '.') ADVANCE(193); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(38); - if (lookahead == '_') ADVANCE(41); - if (lookahead == 'n') ADVANCE(184); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(186); + ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); END_STATE(); case 187: - ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(39); - if (lookahead == 'n') ADVANCE(184); - if (lookahead == '0' || - lookahead == '1') ADVANCE(187); + ACCEPT_TOKEN(anon_sym_AMP_AMP_EQ); END_STATE(); case 188: - ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(40); - if (lookahead == 'n') ADVANCE(184); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(188); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE_EQ); END_STATE(); case 189: - ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(48); - if (lookahead == 'n') ADVANCE(184); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(189); + ACCEPT_TOKEN(anon_sym_QMARK_QMARK_EQ); END_STATE(); case 190: - ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(43); - if (lookahead == 'n') ADVANCE(184); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(190); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); case 191: - ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(44); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(191); + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 192: - ACCEPT_TOKEN(sym_number); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(38); - if (lookahead == '_') ADVANCE(42); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(192); + ACCEPT_TOKEN(anon_sym_AMP_AMP); + if (lookahead == '=') ADVANCE(187); END_STATE(); case 193: - ACCEPT_TOKEN(sym_number); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(38); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(192); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); case 194: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(99); - if (lookahead == '\\') ADVANCE(27); - if (lookahead == '$' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(194); - if (!sym_identifier_character_set_3(lookahead)) ADVANCE(196); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + if (lookahead == '=') ADVANCE(188); END_STATE(); case 195: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(27); - if (lookahead == '{') ADVANCE(179); - if (!sym_identifier_character_set_4(lookahead)) ADVANCE(196); + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(183); + if (lookahead == '>') ADVANCE(198); END_STATE(); case 196: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(27); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(196); + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '>') ADVANCE(197); END_STATE(); case 197: - ACCEPT_TOKEN(sym_private_property_identifier); - if (lookahead == '\\') ADVANCE(26); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(197); + ACCEPT_TOKEN(anon_sym_GT_GT_GT); END_STATE(); case 198: - ACCEPT_TOKEN(anon_sym_AT); - END_STATE(); - default: - return false; - } -} - -static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { - START_LEXER(); - eof = lexer->eof(lexer); - switch (state) { - case 0: - if (lookahead == 'a') ADVANCE(1); - if (lookahead == 'b') ADVANCE(2); - if (lookahead == 'c') ADVANCE(3); - if (lookahead == 'd') ADVANCE(4); - if (lookahead == 'e') ADVANCE(5); - if (lookahead == 'f') ADVANCE(6); - if (lookahead == 'g') ADVANCE(7); - if (lookahead == 'i') ADVANCE(8); - if (lookahead == 'l') ADVANCE(9); - if (lookahead == 'n') ADVANCE(10); - if (lookahead == 'o') ADVANCE(11); - if (lookahead == 'r') ADVANCE(12); - if (lookahead == 's') ADVANCE(13); - if (lookahead == 't') ADVANCE(14); - if (lookahead == 'u') ADVANCE(15); - if (lookahead == 'v') ADVANCE(16); - if (lookahead == 'w') ADVANCE(17); - if (lookahead == 'y') ADVANCE(18); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 5760 || - (8192 <= lookahead && lookahead <= 8203) || - lookahead == 8239 || - lookahead == 8287 || - lookahead == 8288 || - lookahead == 12288 || - lookahead == 65279) SKIP(0) + ACCEPT_TOKEN(anon_sym_GT_GT_GT); + if (lookahead == '=') ADVANCE(184); END_STATE(); - case 1: - if (lookahead == 's') ADVANCE(19); - if (lookahead == 'w') ADVANCE(20); + case 199: + ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); - case 2: - if (lookahead == 'r') ADVANCE(21); + case 200: + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(185); END_STATE(); - case 3: - if (lookahead == 'a') ADVANCE(22); - if (lookahead == 'l') ADVANCE(23); - if (lookahead == 'o') ADVANCE(24); + case 201: + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(192); + if (lookahead == '=') ADVANCE(181); END_STATE(); - case 4: - if (lookahead == 'e') ADVANCE(25); - if (lookahead == 'o') ADVANCE(26); + case 202: + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(191); END_STATE(); - case 5: - if (lookahead == 'l') ADVANCE(27); - if (lookahead == 'x') ADVANCE(28); + case 203: + ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); - case 6: - if (lookahead == 'a') ADVANCE(29); - if (lookahead == 'i') ADVANCE(30); - if (lookahead == 'o') ADVANCE(31); - if (lookahead == 'r') ADVANCE(32); - if (lookahead == 'u') ADVANCE(33); + case 204: + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(180); END_STATE(); - case 7: - if (lookahead == 'e') ADVANCE(34); + case 205: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(182); + if (lookahead == '|') ADVANCE(194); END_STATE(); - case 8: - if (lookahead == 'f') ADVANCE(35); - if (lookahead == 'm') ADVANCE(36); - if (lookahead == 'n') ADVANCE(37); + case 206: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '|') ADVANCE(193); END_STATE(); - case 9: - if (lookahead == 'e') ADVANCE(38); + case 207: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(228); END_STATE(); - case 10: - if (lookahead == 'e') ADVANCE(39); - if (lookahead == 'u') ADVANCE(40); + case 208: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(228); + if (lookahead == '=') ADVANCE(175); END_STATE(); - case 11: - if (lookahead == 'f') ADVANCE(41); + case 209: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(229); END_STATE(); - case 12: - if (lookahead == 'e') ADVANCE(42); + case 210: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(229); + if (lookahead == '=') ADVANCE(176); END_STATE(); - case 13: - if (lookahead == 'e') ADVANCE(43); - if (lookahead == 't') ADVANCE(44); - if (lookahead == 'u') ADVANCE(45); - if (lookahead == 'w') ADVANCE(46); + case 211: + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(24); + if (lookahead == '/') ADVANCE(250); END_STATE(); - case 14: - if (lookahead == 'a') ADVANCE(47); - if (lookahead == 'h') ADVANCE(48); - if (lookahead == 'r') ADVANCE(49); - if (lookahead == 'y') ADVANCE(50); + case 212: + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(24); + if (lookahead == '/') ADVANCE(250); + if (lookahead == '=') ADVANCE(178); END_STATE(); - case 15: - if (lookahead == 'n') ADVANCE(51); + case 213: + ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 16: - if (lookahead == 'a') ADVANCE(52); - if (lookahead == 'o') ADVANCE(53); + case 214: + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(179); END_STATE(); - case 17: - if (lookahead == 'h') ADVANCE(54); - if (lookahead == 'i') ADVANCE(55); + case 215: + ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); - case 18: - if (lookahead == 'i') ADVANCE(56); + case 216: + ACCEPT_TOKEN(anon_sym_STAR_STAR); + if (lookahead == '=') ADVANCE(186); END_STATE(); - case 19: - ACCEPT_TOKEN(anon_sym_as); - if (lookahead == 'y') ADVANCE(57); + case 217: + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 20: - if (lookahead == 'a') ADVANCE(58); + case 218: + ACCEPT_TOKEN(anon_sym_EQ_EQ); + if (lookahead == '=') ADVANCE(219); END_STATE(); - case 21: - if (lookahead == 'e') ADVANCE(59); + case 219: + ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); END_STATE(); - case 22: - if (lookahead == 's') ADVANCE(60); - if (lookahead == 't') ADVANCE(61); + case 220: + ACCEPT_TOKEN(anon_sym_BANG_EQ); + if (lookahead == '=') ADVANCE(221); END_STATE(); - case 23: - if (lookahead == 'a') ADVANCE(62); + case 221: + ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); END_STATE(); - case 24: - if (lookahead == 'n') ADVANCE(63); + case 222: + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 25: - if (lookahead == 'b') ADVANCE(64); - if (lookahead == 'f') ADVANCE(65); - if (lookahead == 'l') ADVANCE(66); + case 223: + ACCEPT_TOKEN(anon_sym_QMARK_QMARK); END_STATE(); - case 26: - ACCEPT_TOKEN(anon_sym_do); + case 224: + ACCEPT_TOKEN(anon_sym_QMARK_QMARK); + if (lookahead == '=') ADVANCE(189); END_STATE(); - case 27: - if (lookahead == 's') ADVANCE(67); + case 225: + ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); - case 28: - if (lookahead == 'p') ADVANCE(68); - if (lookahead == 't') ADVANCE(69); + case 226: + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(220); END_STATE(); - case 29: - if (lookahead == 'l') ADVANCE(70); + case 227: + ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); - case 30: - if (lookahead == 'n') ADVANCE(71); + case 228: + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); - case 31: - if (lookahead == 'r') ADVANCE(72); + case 229: + ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); - case 32: - if (lookahead == 'o') ADVANCE(73); + case 230: + ACCEPT_TOKEN(sym_unescaped_double_string_fragment); + if (lookahead == '*') ADVANCE(232); + if (lookahead == '/') ADVANCE(234); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '"' && + lookahead != '\\') ADVANCE(235); END_STATE(); - case 33: - if (lookahead == 'n') ADVANCE(74); + case 231: + ACCEPT_TOKEN(sym_unescaped_double_string_fragment); + if (lookahead == '*') ADVANCE(231); + if (lookahead == '/') ADVANCE(235); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '"' && + lookahead != '\\') ADVANCE(232); END_STATE(); - case 34: - if (lookahead == 't') ADVANCE(75); + case 232: + ACCEPT_TOKEN(sym_unescaped_double_string_fragment); + if (lookahead == '*') ADVANCE(231); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '"' && + lookahead != '\\') ADVANCE(232); END_STATE(); - case 35: - ACCEPT_TOKEN(anon_sym_if); + case 233: + ACCEPT_TOKEN(sym_unescaped_double_string_fragment); + if (lookahead == '/') ADVANCE(230); + if ((set_contains(extras_character_set_1, 10, lookahead)) && + lookahead != '\n' && + lookahead != '\r') ADVANCE(233); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != '"' && + lookahead != '\\') ADVANCE(235); END_STATE(); - case 36: - if (lookahead == 'p') ADVANCE(76); + case 234: + ACCEPT_TOKEN(sym_unescaped_double_string_fragment); + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(235); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '"' && + lookahead != '\\') ADVANCE(234); END_STATE(); - case 37: - ACCEPT_TOKEN(anon_sym_in); - if (lookahead == 's') ADVANCE(77); + case 235: + ACCEPT_TOKEN(sym_unescaped_double_string_fragment); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '"' && + lookahead != '\\') ADVANCE(235); END_STATE(); - case 38: - if (lookahead == 't') ADVANCE(78); + case 236: + ACCEPT_TOKEN(sym_unescaped_single_string_fragment); + if (lookahead == '*') ADVANCE(238); + if (lookahead == '/') ADVANCE(240); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '\'' && + lookahead != '\\') ADVANCE(241); END_STATE(); - case 39: - if (lookahead == 'w') ADVANCE(79); + case 237: + ACCEPT_TOKEN(sym_unescaped_single_string_fragment); + if (lookahead == '*') ADVANCE(237); + if (lookahead == '/') ADVANCE(241); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '\'' && + lookahead != '\\') ADVANCE(238); END_STATE(); - case 40: - if (lookahead == 'l') ADVANCE(80); + case 238: + ACCEPT_TOKEN(sym_unescaped_single_string_fragment); + if (lookahead == '*') ADVANCE(237); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '\'' && + lookahead != '\\') ADVANCE(238); END_STATE(); - case 41: - ACCEPT_TOKEN(anon_sym_of); + case 239: + ACCEPT_TOKEN(sym_unescaped_single_string_fragment); + if (lookahead == '/') ADVANCE(236); + if ((set_contains(extras_character_set_1, 10, lookahead)) && + lookahead != '\n' && + lookahead != '\r') ADVANCE(239); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\'' && + lookahead != '\\') ADVANCE(241); END_STATE(); - case 42: - if (lookahead == 't') ADVANCE(81); + case 240: + ACCEPT_TOKEN(sym_unescaped_single_string_fragment); + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(241); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '\'' && + lookahead != '\\') ADVANCE(240); + END_STATE(); + case 241: + ACCEPT_TOKEN(sym_unescaped_single_string_fragment); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '\'' && + lookahead != '\\') ADVANCE(241); + END_STATE(); + case 242: + ACCEPT_TOKEN(sym_escape_sequence); + END_STATE(); + case 243: + ACCEPT_TOKEN(sym_escape_sequence); + if (lookahead == '\\') ADVANCE(82); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(275); + END_STATE(); + case 244: + ACCEPT_TOKEN(sym_escape_sequence); + if (lookahead == '\n' || + lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(242); + END_STATE(); + case 245: + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(242); + END_STATE(); + case 246: + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(245); + END_STATE(); + case 247: + ACCEPT_TOKEN(sym_comment); + END_STATE(); + case 248: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\n' || + lookahead == '\r' || + lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(169); + if (lookahead == '#' || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); + if (lookahead != 0) ADVANCE(172); + END_STATE(); + case 249: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\n' || + lookahead == '\r' || + lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(163); + if (lookahead == '#' || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); + if (lookahead != 0) ADVANCE(166); + END_STATE(); + case 250: + ACCEPT_TOKEN(sym_comment); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != 0x2028 && + lookahead != 0x2029) ADVANCE(250); + END_STATE(); + case 251: + ACCEPT_TOKEN(anon_sym_BQUOTE); + END_STATE(); + case 252: + ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); + END_STATE(); + case 253: + ACCEPT_TOKEN(anon_sym_SLASH2); + END_STATE(); + case 254: + ACCEPT_TOKEN(sym_regex_pattern); + if (lookahead == '\n') SKIP(33); + if (lookahead == '/') ADVANCE(21); + if (lookahead == '[') ADVANCE(76); + if (lookahead == '\\') ADVANCE(122); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(254); + if (lookahead != 0) ADVANCE(255); + END_STATE(); + case 255: + ACCEPT_TOKEN(sym_regex_pattern); + if (lookahead == '[') ADVANCE(76); + if (lookahead == '\\') ADVANCE(122); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '/') ADVANCE(255); + END_STATE(); + case 256: + ACCEPT_TOKEN(sym_regex_flags); + if (lookahead == '\\') ADVANCE(82); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(256); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(275); + END_STATE(); + case 257: + ACCEPT_TOKEN(sym_number); + END_STATE(); + case 258: + ACCEPT_TOKEN(sym_number); + ADVANCE_MAP( + '.', 266, + '0', 260, + '_', 99, + 'n', 257, + 'B', 95, + 'b', 95, + 'E', 93, + 'e', 93, + 'O', 96, + 'o', 96, + 'X', 104, + 'x', 104, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(259); + END_STATE(); + case 259: + ACCEPT_TOKEN(sym_number); + if (lookahead == '.') ADVANCE(266); + if (lookahead == '_') ADVANCE(97); + if (lookahead == 'n') ADVANCE(257); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(93); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(259); + END_STATE(); + case 260: + ACCEPT_TOKEN(sym_number); + if (lookahead == '_') ADVANCE(99); + if (lookahead == 'n') ADVANCE(257); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(260); + END_STATE(); + case 261: + ACCEPT_TOKEN(sym_number); + if (lookahead == '_') ADVANCE(95); + if (lookahead == 'n') ADVANCE(257); + if (lookahead == '0' || + lookahead == '1') ADVANCE(261); + END_STATE(); + case 262: + ACCEPT_TOKEN(sym_number); + if (lookahead == '_') ADVANCE(96); + if (lookahead == 'n') ADVANCE(257); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(262); + END_STATE(); + case 263: + ACCEPT_TOKEN(sym_number); + if (lookahead == '_') ADVANCE(104); + if (lookahead == 'n') ADVANCE(257); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(263); + END_STATE(); + case 264: + ACCEPT_TOKEN(sym_number); + if (lookahead == '_') ADVANCE(98); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(93); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(264); + END_STATE(); + case 265: + ACCEPT_TOKEN(sym_number); + if (lookahead == '_') ADVANCE(100); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(265); + END_STATE(); + case 266: + ACCEPT_TOKEN(sym_number); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(93); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(264); + END_STATE(); + case 267: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(153); + if (lookahead == '\\') ADVANCE(82); + if (lookahead == '$' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(267); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(275); + END_STATE(); + case 268: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(82); + if (lookahead == 'a') ADVANCE(272); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(275); + END_STATE(); + case 269: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(82); + if (lookahead == 'c') ADVANCE(274); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(275); + END_STATE(); + case 270: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(82); + if (lookahead == 'i') ADVANCE(269); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(275); + END_STATE(); + case 271: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(82); + if (lookahead == 't') ADVANCE(268); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(275); + END_STATE(); + case 272: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(82); + if (lookahead == 't') ADVANCE(270); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(275); + END_STATE(); + case 273: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(82); + if (lookahead == '{') ADVANCE(252); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(275); + END_STATE(); + case 274: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(82); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(78); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(275); + END_STATE(); + case 275: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(82); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(275); + END_STATE(); + case 276: + ACCEPT_TOKEN(sym_private_property_identifier); + if (lookahead == '\\') ADVANCE(81); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(276); + END_STATE(); + case 277: + ACCEPT_TOKEN(anon_sym_AT); + END_STATE(); + case 278: + ACCEPT_TOKEN(aux_sym_method_definition_token1); + if (lookahead == '\n') ADVANCE(278); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1); + END_STATE(); + default: + return false; + } +} + +static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { + START_LEXER(); + eof = lexer->eof(lexer); + switch (state) { + case 0: + ADVANCE_MAP( + 'a', 1, + 'b', 2, + 'c', 3, + 'd', 4, + 'e', 5, + 'f', 6, + 'g', 7, + 'i', 8, + 'l', 9, + 'm', 10, + 'n', 11, + 'o', 12, + 'r', 13, + 's', 14, + 't', 15, + 'u', 16, + 'v', 17, + 'w', 18, + 'y', 19, + ); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(0); + END_STATE(); + case 1: + if (lookahead == 's') ADVANCE(20); + if (lookahead == 'w') ADVANCE(21); + END_STATE(); + case 2: + if (lookahead == 'r') ADVANCE(22); + END_STATE(); + case 3: + if (lookahead == 'a') ADVANCE(23); + if (lookahead == 'l') ADVANCE(24); + if (lookahead == 'o') ADVANCE(25); + END_STATE(); + case 4: + if (lookahead == 'e') ADVANCE(26); + if (lookahead == 'o') ADVANCE(27); + END_STATE(); + case 5: + if (lookahead == 'l') ADVANCE(28); + if (lookahead == 'x') ADVANCE(29); + END_STATE(); + case 6: + if (lookahead == 'a') ADVANCE(30); + if (lookahead == 'i') ADVANCE(31); + if (lookahead == 'o') ADVANCE(32); + if (lookahead == 'r') ADVANCE(33); + if (lookahead == 'u') ADVANCE(34); + END_STATE(); + case 7: + if (lookahead == 'e') ADVANCE(35); + END_STATE(); + case 8: + if (lookahead == 'f') ADVANCE(36); + if (lookahead == 'm') ADVANCE(37); + if (lookahead == 'n') ADVANCE(38); + END_STATE(); + case 9: + if (lookahead == 'e') ADVANCE(39); + END_STATE(); + case 10: + if (lookahead == 'e') ADVANCE(40); + END_STATE(); + case 11: + if (lookahead == 'e') ADVANCE(41); + if (lookahead == 'u') ADVANCE(42); + END_STATE(); + case 12: + if (lookahead == 'f') ADVANCE(43); + END_STATE(); + case 13: + if (lookahead == 'e') ADVANCE(44); + END_STATE(); + case 14: + if (lookahead == 'e') ADVANCE(45); + if (lookahead == 't') ADVANCE(46); + if (lookahead == 'u') ADVANCE(47); + if (lookahead == 'w') ADVANCE(48); + END_STATE(); + case 15: + if (lookahead == 'a') ADVANCE(49); + if (lookahead == 'h') ADVANCE(50); + if (lookahead == 'r') ADVANCE(51); + if (lookahead == 'y') ADVANCE(52); + END_STATE(); + case 16: + if (lookahead == 'n') ADVANCE(53); + END_STATE(); + case 17: + if (lookahead == 'a') ADVANCE(54); + if (lookahead == 'o') ADVANCE(55); + END_STATE(); + case 18: + if (lookahead == 'h') ADVANCE(56); + if (lookahead == 'i') ADVANCE(57); + END_STATE(); + case 19: + if (lookahead == 'i') ADVANCE(58); + END_STATE(); + case 20: + ACCEPT_TOKEN(anon_sym_as); + if (lookahead == 'y') ADVANCE(59); + END_STATE(); + case 21: + if (lookahead == 'a') ADVANCE(60); + END_STATE(); + case 22: + if (lookahead == 'e') ADVANCE(61); + END_STATE(); + case 23: + if (lookahead == 's') ADVANCE(62); + if (lookahead == 't') ADVANCE(63); + END_STATE(); + case 24: + if (lookahead == 'a') ADVANCE(64); + END_STATE(); + case 25: + if (lookahead == 'n') ADVANCE(65); + END_STATE(); + case 26: + if (lookahead == 'b') ADVANCE(66); + if (lookahead == 'f') ADVANCE(67); + if (lookahead == 'l') ADVANCE(68); + END_STATE(); + case 27: + ACCEPT_TOKEN(anon_sym_do); + END_STATE(); + case 28: + if (lookahead == 's') ADVANCE(69); + END_STATE(); + case 29: + if (lookahead == 'p') ADVANCE(70); + if (lookahead == 't') ADVANCE(71); + END_STATE(); + case 30: + if (lookahead == 'l') ADVANCE(72); + END_STATE(); + case 31: + if (lookahead == 'n') ADVANCE(73); + END_STATE(); + case 32: + if (lookahead == 'r') ADVANCE(74); + END_STATE(); + case 33: + if (lookahead == 'o') ADVANCE(75); + END_STATE(); + case 34: + if (lookahead == 'n') ADVANCE(76); + END_STATE(); + case 35: + if (lookahead == 't') ADVANCE(77); + END_STATE(); + case 36: + ACCEPT_TOKEN(anon_sym_if); + END_STATE(); + case 37: + if (lookahead == 'p') ADVANCE(78); + END_STATE(); + case 38: + ACCEPT_TOKEN(anon_sym_in); + if (lookahead == 's') ADVANCE(79); + END_STATE(); + case 39: + if (lookahead == 't') ADVANCE(80); + END_STATE(); + case 40: + if (lookahead == 't') ADVANCE(81); + END_STATE(); + case 41: + if (lookahead == 'w') ADVANCE(82); + END_STATE(); + case 42: + if (lookahead == 'l') ADVANCE(83); END_STATE(); case 43: - if (lookahead == 't') ADVANCE(82); + ACCEPT_TOKEN(anon_sym_of); END_STATE(); case 44: - if (lookahead == 'a') ADVANCE(83); + if (lookahead == 't') ADVANCE(84); END_STATE(); case 45: - if (lookahead == 'p') ADVANCE(84); + if (lookahead == 't') ADVANCE(85); END_STATE(); case 46: - if (lookahead == 'i') ADVANCE(85); + if (lookahead == 'a') ADVANCE(86); END_STATE(); case 47: - if (lookahead == 'r') ADVANCE(86); + if (lookahead == 'p') ADVANCE(87); END_STATE(); case 48: - if (lookahead == 'i') ADVANCE(87); - if (lookahead == 'r') ADVANCE(88); + if (lookahead == 'i') ADVANCE(88); END_STATE(); case 49: - if (lookahead == 'u') ADVANCE(89); - if (lookahead == 'y') ADVANCE(90); + if (lookahead == 'r') ADVANCE(89); END_STATE(); case 50: - if (lookahead == 'p') ADVANCE(91); + if (lookahead == 'i') ADVANCE(90); + if (lookahead == 'r') ADVANCE(91); END_STATE(); case 51: - if (lookahead == 'd') ADVANCE(92); + if (lookahead == 'u') ADVANCE(92); + if (lookahead == 'y') ADVANCE(93); END_STATE(); case 52: - if (lookahead == 'r') ADVANCE(93); + if (lookahead == 'p') ADVANCE(94); END_STATE(); case 53: - if (lookahead == 'i') ADVANCE(94); + if (lookahead == 'd') ADVANCE(95); END_STATE(); case 54: - if (lookahead == 'i') ADVANCE(95); + if (lookahead == 'r') ADVANCE(96); END_STATE(); case 55: - if (lookahead == 't') ADVANCE(96); + if (lookahead == 'i') ADVANCE(97); END_STATE(); case 56: - if (lookahead == 'e') ADVANCE(97); + if (lookahead == 'i') ADVANCE(98); END_STATE(); case 57: - if (lookahead == 'n') ADVANCE(98); + if (lookahead == 't') ADVANCE(99); END_STATE(); case 58: - if (lookahead == 'i') ADVANCE(99); + if (lookahead == 'e') ADVANCE(100); END_STATE(); case 59: - if (lookahead == 'a') ADVANCE(100); + if (lookahead == 'n') ADVANCE(101); END_STATE(); case 60: - if (lookahead == 'e') ADVANCE(101); + if (lookahead == 'i') ADVANCE(102); END_STATE(); case 61: - if (lookahead == 'c') ADVANCE(102); + if (lookahead == 'a') ADVANCE(103); END_STATE(); case 62: - if (lookahead == 's') ADVANCE(103); + if (lookahead == 'e') ADVANCE(104); END_STATE(); case 63: - if (lookahead == 's') ADVANCE(104); - if (lookahead == 't') ADVANCE(105); + if (lookahead == 'c') ADVANCE(105); END_STATE(); case 64: - if (lookahead == 'u') ADVANCE(106); + if (lookahead == 's') ADVANCE(106); END_STATE(); case 65: - if (lookahead == 'a') ADVANCE(107); + if (lookahead == 's') ADVANCE(107); + if (lookahead == 't') ADVANCE(108); END_STATE(); case 66: - if (lookahead == 'e') ADVANCE(108); + if (lookahead == 'u') ADVANCE(109); END_STATE(); case 67: - if (lookahead == 'e') ADVANCE(109); + if (lookahead == 'a') ADVANCE(110); END_STATE(); case 68: - if (lookahead == 'o') ADVANCE(110); + if (lookahead == 'e') ADVANCE(111); END_STATE(); case 69: - if (lookahead == 'e') ADVANCE(111); + if (lookahead == 'e') ADVANCE(112); END_STATE(); case 70: - if (lookahead == 's') ADVANCE(112); + if (lookahead == 'o') ADVANCE(113); END_STATE(); case 71: - if (lookahead == 'a') ADVANCE(113); + if (lookahead == 'e') ADVANCE(114); END_STATE(); case 72: - ACCEPT_TOKEN(anon_sym_for); + if (lookahead == 's') ADVANCE(115); END_STATE(); case 73: - if (lookahead == 'm') ADVANCE(114); + if (lookahead == 'a') ADVANCE(116); END_STATE(); case 74: - if (lookahead == 'c') ADVANCE(115); + ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 75: - ACCEPT_TOKEN(anon_sym_get); + if (lookahead == 'm') ADVANCE(117); END_STATE(); case 76: - if (lookahead == 'o') ADVANCE(116); + if (lookahead == 'c') ADVANCE(118); END_STATE(); case 77: - if (lookahead == 't') ADVANCE(117); + ACCEPT_TOKEN(anon_sym_get); END_STATE(); case 78: - ACCEPT_TOKEN(anon_sym_let); + if (lookahead == 'o') ADVANCE(119); END_STATE(); case 79: - ACCEPT_TOKEN(anon_sym_new); + if (lookahead == 't') ADVANCE(120); END_STATE(); case 80: - if (lookahead == 'l') ADVANCE(118); + ACCEPT_TOKEN(anon_sym_let); END_STATE(); case 81: - if (lookahead == 'u') ADVANCE(119); + if (lookahead == 'a') ADVANCE(121); END_STATE(); case 82: - ACCEPT_TOKEN(anon_sym_set); + ACCEPT_TOKEN(anon_sym_new); END_STATE(); case 83: - if (lookahead == 't') ADVANCE(120); + if (lookahead == 'l') ADVANCE(122); END_STATE(); case 84: - if (lookahead == 'e') ADVANCE(121); + if (lookahead == 'u') ADVANCE(123); END_STATE(); case 85: - if (lookahead == 't') ADVANCE(122); + ACCEPT_TOKEN(anon_sym_set); END_STATE(); case 86: - if (lookahead == 'g') ADVANCE(123); + if (lookahead == 't') ADVANCE(124); END_STATE(); case 87: - if (lookahead == 's') ADVANCE(124); + if (lookahead == 'e') ADVANCE(125); END_STATE(); case 88: - if (lookahead == 'o') ADVANCE(125); + if (lookahead == 't') ADVANCE(126); END_STATE(); case 89: - if (lookahead == 'e') ADVANCE(126); + if (lookahead == 'g') ADVANCE(127); END_STATE(); case 90: - ACCEPT_TOKEN(anon_sym_try); + if (lookahead == 's') ADVANCE(128); END_STATE(); case 91: - if (lookahead == 'e') ADVANCE(127); + if (lookahead == 'o') ADVANCE(129); END_STATE(); case 92: - if (lookahead == 'e') ADVANCE(128); + if (lookahead == 'e') ADVANCE(130); END_STATE(); case 93: - ACCEPT_TOKEN(anon_sym_var); + ACCEPT_TOKEN(anon_sym_try); END_STATE(); case 94: - if (lookahead == 'd') ADVANCE(129); + if (lookahead == 'e') ADVANCE(131); END_STATE(); case 95: - if (lookahead == 'l') ADVANCE(130); + if (lookahead == 'e') ADVANCE(132); END_STATE(); case 96: - if (lookahead == 'h') ADVANCE(131); + ACCEPT_TOKEN(anon_sym_var); END_STATE(); case 97: - if (lookahead == 'l') ADVANCE(132); + if (lookahead == 'd') ADVANCE(133); END_STATE(); case 98: - if (lookahead == 'c') ADVANCE(133); + if (lookahead == 'l') ADVANCE(134); END_STATE(); case 99: - if (lookahead == 't') ADVANCE(134); + if (lookahead == 'h') ADVANCE(135); END_STATE(); case 100: - if (lookahead == 'k') ADVANCE(135); + if (lookahead == 'l') ADVANCE(136); END_STATE(); case 101: - ACCEPT_TOKEN(anon_sym_case); + if (lookahead == 'c') ADVANCE(137); END_STATE(); case 102: - if (lookahead == 'h') ADVANCE(136); + if (lookahead == 't') ADVANCE(138); END_STATE(); case 103: - if (lookahead == 's') ADVANCE(137); + if (lookahead == 'k') ADVANCE(139); END_STATE(); case 104: - if (lookahead == 't') ADVANCE(138); + ACCEPT_TOKEN(anon_sym_case); END_STATE(); case 105: - if (lookahead == 'i') ADVANCE(139); + if (lookahead == 'h') ADVANCE(140); END_STATE(); case 106: - if (lookahead == 'g') ADVANCE(140); + if (lookahead == 's') ADVANCE(141); END_STATE(); case 107: - if (lookahead == 'u') ADVANCE(141); + if (lookahead == 't') ADVANCE(142); END_STATE(); case 108: - if (lookahead == 't') ADVANCE(142); + if (lookahead == 'i') ADVANCE(143); END_STATE(); case 109: - ACCEPT_TOKEN(anon_sym_else); + if (lookahead == 'g') ADVANCE(144); END_STATE(); case 110: - if (lookahead == 'r') ADVANCE(143); + if (lookahead == 'u') ADVANCE(145); END_STATE(); case 111: - if (lookahead == 'n') ADVANCE(144); + if (lookahead == 't') ADVANCE(146); END_STATE(); case 112: - if (lookahead == 'e') ADVANCE(145); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 113: - if (lookahead == 'l') ADVANCE(146); + if (lookahead == 'r') ADVANCE(147); END_STATE(); case 114: - ACCEPT_TOKEN(anon_sym_from); + if (lookahead == 'n') ADVANCE(148); END_STATE(); case 115: - if (lookahead == 't') ADVANCE(147); + if (lookahead == 'e') ADVANCE(149); END_STATE(); case 116: - if (lookahead == 'r') ADVANCE(148); + if (lookahead == 'l') ADVANCE(150); END_STATE(); case 117: - if (lookahead == 'a') ADVANCE(149); + ACCEPT_TOKEN(anon_sym_from); END_STATE(); case 118: - ACCEPT_TOKEN(sym_null); + if (lookahead == 't') ADVANCE(151); END_STATE(); case 119: - if (lookahead == 'r') ADVANCE(150); + if (lookahead == 'r') ADVANCE(152); END_STATE(); case 120: - if (lookahead == 'i') ADVANCE(151); + if (lookahead == 'a') ADVANCE(153); END_STATE(); case 121: - if (lookahead == 'r') ADVANCE(152); + ACCEPT_TOKEN(anon_sym_meta); END_STATE(); case 122: - if (lookahead == 'c') ADVANCE(153); + ACCEPT_TOKEN(sym_null); END_STATE(); case 123: - if (lookahead == 'e') ADVANCE(154); + if (lookahead == 'r') ADVANCE(154); END_STATE(); case 124: - ACCEPT_TOKEN(sym_this); + if (lookahead == 'i') ADVANCE(155); END_STATE(); case 125: - if (lookahead == 'w') ADVANCE(155); + if (lookahead == 'r') ADVANCE(156); END_STATE(); case 126: - ACCEPT_TOKEN(sym_true); + if (lookahead == 'c') ADVANCE(157); END_STATE(); case 127: - if (lookahead == 'o') ADVANCE(156); + if (lookahead == 'e') ADVANCE(158); END_STATE(); case 128: - if (lookahead == 'f') ADVANCE(157); + ACCEPT_TOKEN(sym_this); END_STATE(); case 129: - ACCEPT_TOKEN(anon_sym_void); + if (lookahead == 'w') ADVANCE(159); END_STATE(); case 130: - if (lookahead == 'e') ADVANCE(158); + ACCEPT_TOKEN(sym_true); END_STATE(); case 131: - ACCEPT_TOKEN(anon_sym_with); + if (lookahead == 'o') ADVANCE(160); END_STATE(); case 132: - if (lookahead == 'd') ADVANCE(159); + if (lookahead == 'f') ADVANCE(161); END_STATE(); case 133: - ACCEPT_TOKEN(anon_sym_async); + ACCEPT_TOKEN(anon_sym_void); END_STATE(); case 134: - ACCEPT_TOKEN(anon_sym_await); + if (lookahead == 'e') ADVANCE(162); END_STATE(); case 135: - ACCEPT_TOKEN(anon_sym_break); + ACCEPT_TOKEN(anon_sym_with); END_STATE(); case 136: - ACCEPT_TOKEN(anon_sym_catch); + if (lookahead == 'd') ADVANCE(163); END_STATE(); case 137: - ACCEPT_TOKEN(anon_sym_class); + ACCEPT_TOKEN(anon_sym_async); END_STATE(); case 138: - ACCEPT_TOKEN(anon_sym_const); + ACCEPT_TOKEN(anon_sym_await); END_STATE(); case 139: - if (lookahead == 'n') ADVANCE(160); + ACCEPT_TOKEN(anon_sym_break); END_STATE(); case 140: - if (lookahead == 'g') ADVANCE(161); + ACCEPT_TOKEN(anon_sym_catch); END_STATE(); case 141: - if (lookahead == 'l') ADVANCE(162); + ACCEPT_TOKEN(anon_sym_class); END_STATE(); case 142: - if (lookahead == 'e') ADVANCE(163); + ACCEPT_TOKEN(anon_sym_const); END_STATE(); case 143: - if (lookahead == 't') ADVANCE(164); + if (lookahead == 'n') ADVANCE(164); END_STATE(); case 144: - if (lookahead == 'd') ADVANCE(165); + if (lookahead == 'g') ADVANCE(165); END_STATE(); case 145: - ACCEPT_TOKEN(sym_false); + if (lookahead == 'l') ADVANCE(166); END_STATE(); case 146: - if (lookahead == 'l') ADVANCE(166); + if (lookahead == 'e') ADVANCE(167); END_STATE(); case 147: - if (lookahead == 'i') ADVANCE(167); + if (lookahead == 't') ADVANCE(168); END_STATE(); case 148: - if (lookahead == 't') ADVANCE(168); + if (lookahead == 'd') ADVANCE(169); END_STATE(); case 149: - if (lookahead == 'n') ADVANCE(169); + ACCEPT_TOKEN(sym_false); END_STATE(); case 150: - if (lookahead == 'n') ADVANCE(170); + if (lookahead == 'l') ADVANCE(170); END_STATE(); case 151: - if (lookahead == 'c') ADVANCE(171); + if (lookahead == 'i') ADVANCE(171); END_STATE(); case 152: - ACCEPT_TOKEN(sym_super); + if (lookahead == 't') ADVANCE(172); END_STATE(); case 153: - if (lookahead == 'h') ADVANCE(172); + if (lookahead == 'n') ADVANCE(173); END_STATE(); case 154: - if (lookahead == 't') ADVANCE(173); + if (lookahead == 'n') ADVANCE(174); END_STATE(); case 155: - ACCEPT_TOKEN(anon_sym_throw); + if (lookahead == 'c') ADVANCE(175); END_STATE(); case 156: - if (lookahead == 'f') ADVANCE(174); + ACCEPT_TOKEN(sym_super); END_STATE(); case 157: - if (lookahead == 'i') ADVANCE(175); + if (lookahead == 'h') ADVANCE(176); END_STATE(); case 158: - ACCEPT_TOKEN(anon_sym_while); + if (lookahead == 't') ADVANCE(177); END_STATE(); case 159: - ACCEPT_TOKEN(anon_sym_yield); + ACCEPT_TOKEN(anon_sym_throw); END_STATE(); case 160: - if (lookahead == 'u') ADVANCE(176); + if (lookahead == 'f') ADVANCE(178); END_STATE(); case 161: - if (lookahead == 'e') ADVANCE(177); + if (lookahead == 'i') ADVANCE(179); END_STATE(); case 162: - if (lookahead == 't') ADVANCE(178); + ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 163: - ACCEPT_TOKEN(anon_sym_delete); + ACCEPT_TOKEN(anon_sym_yield); END_STATE(); case 164: - ACCEPT_TOKEN(anon_sym_export); + if (lookahead == 'u') ADVANCE(180); END_STATE(); case 165: - if (lookahead == 's') ADVANCE(179); + if (lookahead == 'e') ADVANCE(181); END_STATE(); case 166: - if (lookahead == 'y') ADVANCE(180); + if (lookahead == 't') ADVANCE(182); END_STATE(); case 167: - if (lookahead == 'o') ADVANCE(181); + ACCEPT_TOKEN(anon_sym_delete); END_STATE(); case 168: - ACCEPT_TOKEN(anon_sym_import); + ACCEPT_TOKEN(anon_sym_export); END_STATE(); case 169: - if (lookahead == 'c') ADVANCE(182); + if (lookahead == 's') ADVANCE(183); END_STATE(); case 170: - ACCEPT_TOKEN(anon_sym_return); + if (lookahead == 'y') ADVANCE(184); END_STATE(); case 171: - ACCEPT_TOKEN(anon_sym_static); + if (lookahead == 'o') ADVANCE(185); END_STATE(); case 172: - ACCEPT_TOKEN(anon_sym_switch); + ACCEPT_TOKEN(anon_sym_import); END_STATE(); case 173: - ACCEPT_TOKEN(anon_sym_target); + if (lookahead == 'c') ADVANCE(186); END_STATE(); case 174: - ACCEPT_TOKEN(anon_sym_typeof); + ACCEPT_TOKEN(anon_sym_return); END_STATE(); case 175: - if (lookahead == 'n') ADVANCE(183); + ACCEPT_TOKEN(anon_sym_static); END_STATE(); case 176: - if (lookahead == 'e') ADVANCE(184); + ACCEPT_TOKEN(anon_sym_switch); END_STATE(); case 177: - if (lookahead == 'r') ADVANCE(185); + ACCEPT_TOKEN(anon_sym_target); END_STATE(); case 178: - ACCEPT_TOKEN(anon_sym_default); + ACCEPT_TOKEN(anon_sym_typeof); END_STATE(); case 179: - ACCEPT_TOKEN(anon_sym_extends); + if (lookahead == 'n') ADVANCE(187); END_STATE(); case 180: - ACCEPT_TOKEN(anon_sym_finally); + if (lookahead == 'e') ADVANCE(188); END_STATE(); case 181: - if (lookahead == 'n') ADVANCE(186); + if (lookahead == 'r') ADVANCE(189); END_STATE(); case 182: - if (lookahead == 'e') ADVANCE(187); + ACCEPT_TOKEN(anon_sym_default); END_STATE(); case 183: - if (lookahead == 'e') ADVANCE(188); + ACCEPT_TOKEN(anon_sym_extends); END_STATE(); case 184: - ACCEPT_TOKEN(anon_sym_continue); + ACCEPT_TOKEN(anon_sym_finally); END_STATE(); case 185: - ACCEPT_TOKEN(anon_sym_debugger); + if (lookahead == 'n') ADVANCE(190); END_STATE(); case 186: - ACCEPT_TOKEN(anon_sym_function); + if (lookahead == 'e') ADVANCE(191); END_STATE(); case 187: - if (lookahead == 'o') ADVANCE(189); + if (lookahead == 'e') ADVANCE(192); END_STATE(); case 188: - if (lookahead == 'd') ADVANCE(190); + ACCEPT_TOKEN(anon_sym_continue); END_STATE(); case 189: - if (lookahead == 'f') ADVANCE(191); + ACCEPT_TOKEN(anon_sym_debugger); END_STATE(); case 190: - ACCEPT_TOKEN(sym_undefined); + ACCEPT_TOKEN(anon_sym_function); END_STATE(); case 191: + if (lookahead == 'o') ADVANCE(193); + END_STATE(); + case 192: + if (lookahead == 'd') ADVANCE(194); + END_STATE(); + case 193: + if (lookahead == 'f') ADVANCE(195); + END_STATE(); + case 194: + ACCEPT_TOKEN(sym_undefined); + END_STATE(); + case 195: ACCEPT_TOKEN(anon_sym_instanceof); END_STATE(); default: @@ -4137,1480 +6408,1647 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 66}, - [2] = {.lex_state = 66}, - [3] = {.lex_state = 66}, - [4] = {.lex_state = 66}, - [5] = {.lex_state = 66}, - [6] = {.lex_state = 66}, - [7] = {.lex_state = 66}, - [8] = {.lex_state = 66}, - [9] = {.lex_state = 66}, - [10] = {.lex_state = 66}, - [11] = {.lex_state = 66}, - [12] = {.lex_state = 66}, - [13] = {.lex_state = 66}, - [14] = {.lex_state = 66}, - [15] = {.lex_state = 66}, - [16] = {.lex_state = 66}, - [17] = {.lex_state = 66}, - [18] = {.lex_state = 66}, - [19] = {.lex_state = 66}, - [20] = {.lex_state = 66}, - [21] = {.lex_state = 66}, - [22] = {.lex_state = 66}, - [23] = {.lex_state = 66}, - [24] = {.lex_state = 66}, - [25] = {.lex_state = 66}, - [26] = {.lex_state = 66}, - [27] = {.lex_state = 66}, - [28] = {.lex_state = 66}, - [29] = {.lex_state = 66}, - [30] = {.lex_state = 66}, - [31] = {.lex_state = 66}, - [32] = {.lex_state = 66}, - [33] = {.lex_state = 66}, - [34] = {.lex_state = 66}, - [35] = {.lex_state = 66}, - [36] = {.lex_state = 66}, - [37] = {.lex_state = 66}, - [38] = {.lex_state = 66}, - [39] = {.lex_state = 66}, - [40] = {.lex_state = 66}, - [41] = {.lex_state = 66}, - [42] = {.lex_state = 65, .external_lex_state = 2}, - [43] = {.lex_state = 65, .external_lex_state = 3}, - [44] = {.lex_state = 65, .external_lex_state = 3}, - [45] = {.lex_state = 65, .external_lex_state = 2}, - [46] = {.lex_state = 65, .external_lex_state = 2}, - [47] = {.lex_state = 65, .external_lex_state = 3}, - [48] = {.lex_state = 65, .external_lex_state = 3}, - [49] = {.lex_state = 65, .external_lex_state = 3}, - [50] = {.lex_state = 65, .external_lex_state = 3}, - [51] = {.lex_state = 65, .external_lex_state = 3}, - [52] = {.lex_state = 65, .external_lex_state = 3}, - [53] = {.lex_state = 65, .external_lex_state = 3}, - [54] = {.lex_state = 65, .external_lex_state = 3}, - [55] = {.lex_state = 65, .external_lex_state = 3}, - [56] = {.lex_state = 65, .external_lex_state = 3}, - [57] = {.lex_state = 65, .external_lex_state = 3}, - [58] = {.lex_state = 65, .external_lex_state = 3}, - [59] = {.lex_state = 65, .external_lex_state = 3}, - [60] = {.lex_state = 65, .external_lex_state = 3}, - [61] = {.lex_state = 65, .external_lex_state = 3}, - [62] = {.lex_state = 66}, - [63] = {.lex_state = 66}, - [64] = {.lex_state = 66}, - [65] = {.lex_state = 66}, - [66] = {.lex_state = 66}, - [67] = {.lex_state = 66}, - [68] = {.lex_state = 66}, - [69] = {.lex_state = 66}, - [70] = {.lex_state = 66}, - [71] = {.lex_state = 66}, - [72] = {.lex_state = 66}, - [73] = {.lex_state = 66}, - [74] = {.lex_state = 66}, - [75] = {.lex_state = 66}, - [76] = {.lex_state = 66}, - [77] = {.lex_state = 66}, - [78] = {.lex_state = 66}, - [79] = {.lex_state = 66}, - [80] = {.lex_state = 66}, - [81] = {.lex_state = 66}, - [82] = {.lex_state = 66}, - [83] = {.lex_state = 66}, - [84] = {.lex_state = 66}, - [85] = {.lex_state = 66}, - [86] = {.lex_state = 66}, - [87] = {.lex_state = 66}, - [88] = {.lex_state = 66}, - [89] = {.lex_state = 66}, - [90] = {.lex_state = 66}, - [91] = {.lex_state = 66}, - [92] = {.lex_state = 66}, - [93] = {.lex_state = 66}, - [94] = {.lex_state = 66}, - [95] = {.lex_state = 66}, - [96] = {.lex_state = 66}, - [97] = {.lex_state = 66}, - [98] = {.lex_state = 66, .external_lex_state = 4}, - [99] = {.lex_state = 66}, - [100] = {.lex_state = 4, .external_lex_state = 3}, - [101] = {.lex_state = 4, .external_lex_state = 3}, - [102] = {.lex_state = 4, .external_lex_state = 3}, - [103] = {.lex_state = 66}, - [104] = {.lex_state = 66}, - [105] = {.lex_state = 66}, - [106] = {.lex_state = 66}, - [107] = {.lex_state = 66}, - [108] = {.lex_state = 3}, - [109] = {.lex_state = 66}, - [110] = {.lex_state = 66}, - [111] = {.lex_state = 66}, - [112] = {.lex_state = 66}, - [113] = {.lex_state = 3}, - [114] = {.lex_state = 66}, - [115] = {.lex_state = 3}, - [116] = {.lex_state = 66}, - [117] = {.lex_state = 66}, - [118] = {.lex_state = 66}, - [119] = {.lex_state = 66}, - [120] = {.lex_state = 66}, - [121] = {.lex_state = 3}, - [122] = {.lex_state = 66}, - [123] = {.lex_state = 66}, - [124] = {.lex_state = 66}, - [125] = {.lex_state = 66}, - [126] = {.lex_state = 66}, - [127] = {.lex_state = 66}, - [128] = {.lex_state = 66}, - [129] = {.lex_state = 66}, - [130] = {.lex_state = 66}, - [131] = {.lex_state = 66}, - [132] = {.lex_state = 66}, - [133] = {.lex_state = 66}, - [134] = {.lex_state = 66}, - [135] = {.lex_state = 66}, - [136] = {.lex_state = 66}, - [137] = {.lex_state = 66}, - [138] = {.lex_state = 66}, - [139] = {.lex_state = 66}, - [140] = {.lex_state = 3}, - [141] = {.lex_state = 66}, - [142] = {.lex_state = 66}, - [143] = {.lex_state = 66}, - [144] = {.lex_state = 66}, - [145] = {.lex_state = 66}, - [146] = {.lex_state = 66}, - [147] = {.lex_state = 66}, - [148] = {.lex_state = 66}, - [149] = {.lex_state = 66}, - [150] = {.lex_state = 66}, - [151] = {.lex_state = 66}, - [152] = {.lex_state = 66}, - [153] = {.lex_state = 66}, - [154] = {.lex_state = 66}, - [155] = {.lex_state = 66}, - [156] = {.lex_state = 66}, - [157] = {.lex_state = 66}, - [158] = {.lex_state = 66}, - [159] = {.lex_state = 66}, - [160] = {.lex_state = 66}, - [161] = {.lex_state = 66}, - [162] = {.lex_state = 66}, - [163] = {.lex_state = 66}, - [164] = {.lex_state = 66}, - [165] = {.lex_state = 66}, - [166] = {.lex_state = 66}, - [167] = {.lex_state = 66}, - [168] = {.lex_state = 66}, - [169] = {.lex_state = 66}, - [170] = {.lex_state = 66}, - [171] = {.lex_state = 66}, - [172] = {.lex_state = 66}, - [173] = {.lex_state = 66}, - [174] = {.lex_state = 66}, - [175] = {.lex_state = 66}, - [176] = {.lex_state = 66}, - [177] = {.lex_state = 66}, - [178] = {.lex_state = 66}, - [179] = {.lex_state = 66}, - [180] = {.lex_state = 66}, - [181] = {.lex_state = 66}, - [182] = {.lex_state = 66}, - [183] = {.lex_state = 66}, - [184] = {.lex_state = 66}, - [185] = {.lex_state = 66}, - [186] = {.lex_state = 66}, - [187] = {.lex_state = 66}, - [188] = {.lex_state = 66}, - [189] = {.lex_state = 66}, - [190] = {.lex_state = 66}, - [191] = {.lex_state = 66}, - [192] = {.lex_state = 66}, - [193] = {.lex_state = 66}, - [194] = {.lex_state = 66}, - [195] = {.lex_state = 66}, - [196] = {.lex_state = 66}, - [197] = {.lex_state = 66}, - [198] = {.lex_state = 66}, - [199] = {.lex_state = 66}, - [200] = {.lex_state = 66}, - [201] = {.lex_state = 66}, - [202] = {.lex_state = 66}, - [203] = {.lex_state = 66}, - [204] = {.lex_state = 66}, - [205] = {.lex_state = 66}, - [206] = {.lex_state = 66}, - [207] = {.lex_state = 66}, - [208] = {.lex_state = 66}, - [209] = {.lex_state = 66}, - [210] = {.lex_state = 66}, - [211] = {.lex_state = 66}, - [212] = {.lex_state = 66}, - [213] = {.lex_state = 66}, - [214] = {.lex_state = 66}, - [215] = {.lex_state = 66}, - [216] = {.lex_state = 66}, - [217] = {.lex_state = 66}, - [218] = {.lex_state = 66}, - [219] = {.lex_state = 66}, - [220] = {.lex_state = 66}, - [221] = {.lex_state = 66}, - [222] = {.lex_state = 66}, - [223] = {.lex_state = 66}, - [224] = {.lex_state = 66}, - [225] = {.lex_state = 66}, - [226] = {.lex_state = 66}, - [227] = {.lex_state = 66}, - [228] = {.lex_state = 66}, - [229] = {.lex_state = 66}, - [230] = {.lex_state = 66}, - [231] = {.lex_state = 66}, - [232] = {.lex_state = 66}, - [233] = {.lex_state = 66}, - [234] = {.lex_state = 66}, - [235] = {.lex_state = 66}, - [236] = {.lex_state = 66}, - [237] = {.lex_state = 66}, - [238] = {.lex_state = 66}, - [239] = {.lex_state = 66}, - [240] = {.lex_state = 66}, - [241] = {.lex_state = 66}, - [242] = {.lex_state = 66}, - [243] = {.lex_state = 66}, - [244] = {.lex_state = 66}, - [245] = {.lex_state = 66}, - [246] = {.lex_state = 66}, - [247] = {.lex_state = 66}, - [248] = {.lex_state = 66}, - [249] = {.lex_state = 66}, - [250] = {.lex_state = 66}, - [251] = {.lex_state = 66}, - [252] = {.lex_state = 66}, - [253] = {.lex_state = 66}, - [254] = {.lex_state = 66}, - [255] = {.lex_state = 66}, - [256] = {.lex_state = 4, .external_lex_state = 3}, - [257] = {.lex_state = 4, .external_lex_state = 3}, - [258] = {.lex_state = 4, .external_lex_state = 3}, - [259] = {.lex_state = 4, .external_lex_state = 3}, - [260] = {.lex_state = 4, .external_lex_state = 3}, - [261] = {.lex_state = 4, .external_lex_state = 3}, - [262] = {.lex_state = 4, .external_lex_state = 3}, - [263] = {.lex_state = 4, .external_lex_state = 3}, - [264] = {.lex_state = 4, .external_lex_state = 3}, - [265] = {.lex_state = 4, .external_lex_state = 3}, - [266] = {.lex_state = 4, .external_lex_state = 3}, - [267] = {.lex_state = 66, .external_lex_state = 4}, - [268] = {.lex_state = 66, .external_lex_state = 4}, - [269] = {.lex_state = 4, .external_lex_state = 2}, - [270] = {.lex_state = 66}, - [271] = {.lex_state = 66}, - [272] = {.lex_state = 4, .external_lex_state = 2}, - [273] = {.lex_state = 4, .external_lex_state = 2}, - [274] = {.lex_state = 4, .external_lex_state = 2}, - [275] = {.lex_state = 4, .external_lex_state = 3}, - [276] = {.lex_state = 4, .external_lex_state = 3}, - [277] = {.lex_state = 4, .external_lex_state = 3}, - [278] = {.lex_state = 4, .external_lex_state = 3}, - [279] = {.lex_state = 4, .external_lex_state = 3}, - [280] = {.lex_state = 4, .external_lex_state = 2}, - [281] = {.lex_state = 66}, - [282] = {.lex_state = 4, .external_lex_state = 3}, - [283] = {.lex_state = 4, .external_lex_state = 3}, - [284] = {.lex_state = 4, .external_lex_state = 2}, - [285] = {.lex_state = 4, .external_lex_state = 2}, - [286] = {.lex_state = 66}, - [287] = {.lex_state = 4, .external_lex_state = 3}, - [288] = {.lex_state = 4, .external_lex_state = 3}, - [289] = {.lex_state = 4, .external_lex_state = 2}, - [290] = {.lex_state = 66, .external_lex_state = 4}, - [291] = {.lex_state = 66, .external_lex_state = 4}, - [292] = {.lex_state = 66}, - [293] = {.lex_state = 66, .external_lex_state = 4}, - [294] = {.lex_state = 66}, - [295] = {.lex_state = 66, .external_lex_state = 4}, - [296] = {.lex_state = 4, .external_lex_state = 2}, - [297] = {.lex_state = 66}, - [298] = {.lex_state = 66, .external_lex_state = 4}, - [299] = {.lex_state = 66, .external_lex_state = 4}, - [300] = {.lex_state = 66}, - [301] = {.lex_state = 66, .external_lex_state = 4}, - [302] = {.lex_state = 66}, - [303] = {.lex_state = 4, .external_lex_state = 2}, - [304] = {.lex_state = 66, .external_lex_state = 4}, - [305] = {.lex_state = 66, .external_lex_state = 4}, - [306] = {.lex_state = 66, .external_lex_state = 4}, - [307] = {.lex_state = 66, .external_lex_state = 4}, - [308] = {.lex_state = 66, .external_lex_state = 4}, - [309] = {.lex_state = 66, .external_lex_state = 4}, - [310] = {.lex_state = 66, .external_lex_state = 4}, - [311] = {.lex_state = 4, .external_lex_state = 2}, - [312] = {.lex_state = 66}, - [313] = {.lex_state = 66}, - [314] = {.lex_state = 66}, - [315] = {.lex_state = 66}, - [316] = {.lex_state = 66}, - [317] = {.lex_state = 66}, - [318] = {.lex_state = 66}, - [319] = {.lex_state = 66}, - [320] = {.lex_state = 66}, - [321] = {.lex_state = 66}, - [322] = {.lex_state = 66}, - [323] = {.lex_state = 66}, - [324] = {.lex_state = 66}, - [325] = {.lex_state = 66}, - [326] = {.lex_state = 66}, - [327] = {.lex_state = 66}, - [328] = {.lex_state = 66}, - [329] = {.lex_state = 66}, - [330] = {.lex_state = 66}, - [331] = {.lex_state = 66}, - [332] = {.lex_state = 66}, - [333] = {.lex_state = 66}, - [334] = {.lex_state = 66}, - [335] = {.lex_state = 66}, - [336] = {.lex_state = 66}, - [337] = {.lex_state = 66}, - [338] = {.lex_state = 66}, - [339] = {.lex_state = 66}, - [340] = {.lex_state = 66}, - [341] = {.lex_state = 66}, - [342] = {.lex_state = 66}, - [343] = {.lex_state = 66}, - [344] = {.lex_state = 66}, - [345] = {.lex_state = 66}, - [346] = {.lex_state = 66}, - [347] = {.lex_state = 66}, - [348] = {.lex_state = 66}, - [349] = {.lex_state = 66}, - [350] = {.lex_state = 66}, - [351] = {.lex_state = 66}, - [352] = {.lex_state = 66}, - [353] = {.lex_state = 66}, - [354] = {.lex_state = 66}, - [355] = {.lex_state = 66}, - [356] = {.lex_state = 66}, - [357] = {.lex_state = 66}, - [358] = {.lex_state = 66}, - [359] = {.lex_state = 66}, - [360] = {.lex_state = 4, .external_lex_state = 3}, - [361] = {.lex_state = 4, .external_lex_state = 3}, - [362] = {.lex_state = 4, .external_lex_state = 3}, - [363] = {.lex_state = 4, .external_lex_state = 2}, - [364] = {.lex_state = 4, .external_lex_state = 2}, - [365] = {.lex_state = 4, .external_lex_state = 2}, - [366] = {.lex_state = 4, .external_lex_state = 2}, - [367] = {.lex_state = 4, .external_lex_state = 2}, - [368] = {.lex_state = 4, .external_lex_state = 2}, - [369] = {.lex_state = 4, .external_lex_state = 2}, - [370] = {.lex_state = 4, .external_lex_state = 3}, - [371] = {.lex_state = 4, .external_lex_state = 2}, - [372] = {.lex_state = 4, .external_lex_state = 2}, - [373] = {.lex_state = 4, .external_lex_state = 3}, - [374] = {.lex_state = 4, .external_lex_state = 3}, - [375] = {.lex_state = 4, .external_lex_state = 3}, - [376] = {.lex_state = 4, .external_lex_state = 3}, - [377] = {.lex_state = 4, .external_lex_state = 2}, - [378] = {.lex_state = 4, .external_lex_state = 3}, - [379] = {.lex_state = 4, .external_lex_state = 3}, - [380] = {.lex_state = 4, .external_lex_state = 3}, - [381] = {.lex_state = 4, .external_lex_state = 3}, - [382] = {.lex_state = 4, .external_lex_state = 2}, - [383] = {.lex_state = 4, .external_lex_state = 3}, - [384] = {.lex_state = 4, .external_lex_state = 3}, - [385] = {.lex_state = 4, .external_lex_state = 3}, - [386] = {.lex_state = 66}, - [387] = {.lex_state = 66}, - [388] = {.lex_state = 4, .external_lex_state = 3}, - [389] = {.lex_state = 4, .external_lex_state = 2}, - [390] = {.lex_state = 4, .external_lex_state = 3}, - [391] = {.lex_state = 4, .external_lex_state = 2}, - [392] = {.lex_state = 66}, - [393] = {.lex_state = 66}, - [394] = {.lex_state = 4, .external_lex_state = 3}, - [395] = {.lex_state = 4, .external_lex_state = 2}, - [396] = {.lex_state = 4, .external_lex_state = 2}, - [397] = {.lex_state = 4, .external_lex_state = 2}, - [398] = {.lex_state = 4, .external_lex_state = 2}, - [399] = {.lex_state = 4, .external_lex_state = 2}, - [400] = {.lex_state = 4, .external_lex_state = 2}, - [401] = {.lex_state = 4, .external_lex_state = 2}, - [402] = {.lex_state = 4, .external_lex_state = 2}, - [403] = {.lex_state = 4, .external_lex_state = 2}, - [404] = {.lex_state = 4, .external_lex_state = 2}, - [405] = {.lex_state = 4, .external_lex_state = 2}, - [406] = {.lex_state = 65, .external_lex_state = 3}, - [407] = {.lex_state = 65, .external_lex_state = 2}, - [408] = {.lex_state = 65, .external_lex_state = 3}, - [409] = {.lex_state = 65, .external_lex_state = 2}, - [410] = {.lex_state = 65, .external_lex_state = 2}, - [411] = {.lex_state = 65, .external_lex_state = 2}, - [412] = {.lex_state = 65, .external_lex_state = 2}, - [413] = {.lex_state = 65, .external_lex_state = 3}, - [414] = {.lex_state = 65, .external_lex_state = 2}, - [415] = {.lex_state = 65, .external_lex_state = 2}, - [416] = {.lex_state = 65, .external_lex_state = 3}, - [417] = {.lex_state = 65, .external_lex_state = 2}, - [418] = {.lex_state = 65, .external_lex_state = 2}, - [419] = {.lex_state = 65, .external_lex_state = 2}, - [420] = {.lex_state = 65, .external_lex_state = 2}, - [421] = {.lex_state = 65, .external_lex_state = 2}, - [422] = {.lex_state = 65, .external_lex_state = 2}, - [423] = {.lex_state = 65, .external_lex_state = 2}, - [424] = {.lex_state = 65, .external_lex_state = 2}, - [425] = {.lex_state = 65, .external_lex_state = 3}, - [426] = {.lex_state = 65, .external_lex_state = 3}, - [427] = {.lex_state = 65, .external_lex_state = 2}, - [428] = {.lex_state = 65, .external_lex_state = 2}, - [429] = {.lex_state = 65, .external_lex_state = 2}, - [430] = {.lex_state = 65, .external_lex_state = 2}, - [431] = {.lex_state = 65, .external_lex_state = 2}, - [432] = {.lex_state = 65, .external_lex_state = 2}, - [433] = {.lex_state = 65, .external_lex_state = 2}, - [434] = {.lex_state = 65, .external_lex_state = 2}, - [435] = {.lex_state = 65, .external_lex_state = 2}, - [436] = {.lex_state = 65, .external_lex_state = 2}, - [437] = {.lex_state = 65, .external_lex_state = 2}, - [438] = {.lex_state = 65, .external_lex_state = 2}, - [439] = {.lex_state = 65, .external_lex_state = 2}, - [440] = {.lex_state = 65, .external_lex_state = 2}, - [441] = {.lex_state = 65, .external_lex_state = 2}, - [442] = {.lex_state = 65, .external_lex_state = 2}, - [443] = {.lex_state = 65, .external_lex_state = 2}, - [444] = {.lex_state = 65, .external_lex_state = 2}, - [445] = {.lex_state = 5, .external_lex_state = 2}, - [446] = {.lex_state = 65, .external_lex_state = 2}, - [447] = {.lex_state = 65, .external_lex_state = 2}, - [448] = {.lex_state = 65, .external_lex_state = 2}, - [449] = {.lex_state = 65, .external_lex_state = 2}, - [450] = {.lex_state = 65, .external_lex_state = 2}, - [451] = {.lex_state = 65, .external_lex_state = 2}, - [452] = {.lex_state = 65, .external_lex_state = 2}, - [453] = {.lex_state = 65, .external_lex_state = 2}, - [454] = {.lex_state = 65, .external_lex_state = 2}, - [455] = {.lex_state = 65, .external_lex_state = 2}, - [456] = {.lex_state = 65, .external_lex_state = 2}, - [457] = {.lex_state = 65, .external_lex_state = 2}, - [458] = {.lex_state = 65, .external_lex_state = 2}, - [459] = {.lex_state = 65, .external_lex_state = 2}, - [460] = {.lex_state = 65, .external_lex_state = 2}, - [461] = {.lex_state = 65, .external_lex_state = 2}, - [462] = {.lex_state = 65, .external_lex_state = 2}, - [463] = {.lex_state = 65, .external_lex_state = 2}, - [464] = {.lex_state = 65, .external_lex_state = 3}, - [465] = {.lex_state = 65, .external_lex_state = 2}, - [466] = {.lex_state = 65, .external_lex_state = 2}, - [467] = {.lex_state = 65, .external_lex_state = 2}, - [468] = {.lex_state = 65, .external_lex_state = 2}, - [469] = {.lex_state = 65, .external_lex_state = 2}, - [470] = {.lex_state = 65, .external_lex_state = 2}, - [471] = {.lex_state = 65, .external_lex_state = 2}, - [472] = {.lex_state = 65, .external_lex_state = 2}, - [473] = {.lex_state = 65, .external_lex_state = 2}, - [474] = {.lex_state = 65, .external_lex_state = 2}, - [475] = {.lex_state = 65, .external_lex_state = 2}, - [476] = {.lex_state = 65, .external_lex_state = 2}, - [477] = {.lex_state = 65, .external_lex_state = 2}, - [478] = {.lex_state = 65, .external_lex_state = 2}, - [479] = {.lex_state = 65, .external_lex_state = 2}, - [480] = {.lex_state = 65, .external_lex_state = 2}, - [481] = {.lex_state = 65, .external_lex_state = 2}, - [482] = {.lex_state = 65, .external_lex_state = 2}, - [483] = {.lex_state = 65, .external_lex_state = 2}, - [484] = {.lex_state = 65, .external_lex_state = 2}, - [485] = {.lex_state = 65, .external_lex_state = 2}, - [486] = {.lex_state = 65, .external_lex_state = 2}, - [487] = {.lex_state = 65, .external_lex_state = 2}, - [488] = {.lex_state = 65, .external_lex_state = 2}, - [489] = {.lex_state = 65, .external_lex_state = 2}, - [490] = {.lex_state = 65, .external_lex_state = 2}, - [491] = {.lex_state = 65, .external_lex_state = 2}, - [492] = {.lex_state = 65, .external_lex_state = 2}, - [493] = {.lex_state = 65, .external_lex_state = 2}, - [494] = {.lex_state = 65, .external_lex_state = 2}, - [495] = {.lex_state = 65, .external_lex_state = 2}, - [496] = {.lex_state = 65, .external_lex_state = 2}, - [497] = {.lex_state = 65, .external_lex_state = 2}, - [498] = {.lex_state = 65, .external_lex_state = 2}, - [499] = {.lex_state = 65, .external_lex_state = 3}, - [500] = {.lex_state = 65, .external_lex_state = 2}, - [501] = {.lex_state = 65, .external_lex_state = 3}, - [502] = {.lex_state = 65, .external_lex_state = 3}, - [503] = {.lex_state = 65, .external_lex_state = 3}, - [504] = {.lex_state = 65, .external_lex_state = 3}, - [505] = {.lex_state = 65, .external_lex_state = 3}, - [506] = {.lex_state = 65, .external_lex_state = 3}, - [507] = {.lex_state = 65, .external_lex_state = 3}, - [508] = {.lex_state = 65, .external_lex_state = 3}, - [509] = {.lex_state = 65, .external_lex_state = 3}, - [510] = {.lex_state = 65, .external_lex_state = 3}, - [511] = {.lex_state = 65, .external_lex_state = 2}, - [512] = {.lex_state = 65, .external_lex_state = 3}, - [513] = {.lex_state = 65, .external_lex_state = 3}, - [514] = {.lex_state = 65, .external_lex_state = 3}, - [515] = {.lex_state = 65, .external_lex_state = 3}, - [516] = {.lex_state = 65, .external_lex_state = 3}, - [517] = {.lex_state = 65, .external_lex_state = 2}, - [518] = {.lex_state = 65, .external_lex_state = 3}, - [519] = {.lex_state = 65, .external_lex_state = 3}, - [520] = {.lex_state = 65, .external_lex_state = 2}, - [521] = {.lex_state = 65, .external_lex_state = 2}, - [522] = {.lex_state = 65, .external_lex_state = 2}, - [523] = {.lex_state = 65, .external_lex_state = 3}, - [524] = {.lex_state = 65, .external_lex_state = 3}, - [525] = {.lex_state = 65, .external_lex_state = 3}, - [526] = {.lex_state = 65, .external_lex_state = 2}, - [527] = {.lex_state = 65, .external_lex_state = 3}, - [528] = {.lex_state = 65, .external_lex_state = 3}, - [529] = {.lex_state = 65, .external_lex_state = 3}, - [530] = {.lex_state = 65, .external_lex_state = 3}, - [531] = {.lex_state = 65, .external_lex_state = 3}, - [532] = {.lex_state = 65, .external_lex_state = 3}, - [533] = {.lex_state = 65, .external_lex_state = 3}, - [534] = {.lex_state = 65, .external_lex_state = 3}, - [535] = {.lex_state = 65, .external_lex_state = 3}, - [536] = {.lex_state = 65, .external_lex_state = 3}, - [537] = {.lex_state = 65, .external_lex_state = 3}, - [538] = {.lex_state = 65, .external_lex_state = 3}, - [539] = {.lex_state = 65, .external_lex_state = 3}, - [540] = {.lex_state = 65, .external_lex_state = 3}, - [541] = {.lex_state = 65, .external_lex_state = 3}, - [542] = {.lex_state = 65, .external_lex_state = 3}, - [543] = {.lex_state = 65, .external_lex_state = 3}, - [544] = {.lex_state = 65, .external_lex_state = 3}, - [545] = {.lex_state = 65, .external_lex_state = 3}, - [546] = {.lex_state = 65, .external_lex_state = 3}, - [547] = {.lex_state = 65, .external_lex_state = 3}, - [548] = {.lex_state = 65, .external_lex_state = 3}, - [549] = {.lex_state = 65, .external_lex_state = 3}, - [550] = {.lex_state = 65, .external_lex_state = 3}, - [551] = {.lex_state = 65, .external_lex_state = 3}, - [552] = {.lex_state = 65, .external_lex_state = 3}, - [553] = {.lex_state = 65, .external_lex_state = 3}, - [554] = {.lex_state = 65, .external_lex_state = 3}, - [555] = {.lex_state = 65, .external_lex_state = 3}, - [556] = {.lex_state = 65, .external_lex_state = 3}, - [557] = {.lex_state = 65, .external_lex_state = 3}, - [558] = {.lex_state = 65, .external_lex_state = 3}, - [559] = {.lex_state = 65, .external_lex_state = 3}, - [560] = {.lex_state = 65, .external_lex_state = 3}, - [561] = {.lex_state = 65, .external_lex_state = 3}, - [562] = {.lex_state = 65, .external_lex_state = 3}, - [563] = {.lex_state = 65, .external_lex_state = 3}, - [564] = {.lex_state = 65, .external_lex_state = 2}, - [565] = {.lex_state = 65, .external_lex_state = 3}, - [566] = {.lex_state = 65, .external_lex_state = 3}, - [567] = {.lex_state = 65, .external_lex_state = 3}, - [568] = {.lex_state = 65, .external_lex_state = 3}, - [569] = {.lex_state = 65, .external_lex_state = 3}, - [570] = {.lex_state = 65, .external_lex_state = 3}, - [571] = {.lex_state = 65, .external_lex_state = 3}, - [572] = {.lex_state = 65, .external_lex_state = 3}, - [573] = {.lex_state = 65, .external_lex_state = 3}, - [574] = {.lex_state = 65, .external_lex_state = 3}, - [575] = {.lex_state = 65, .external_lex_state = 3}, - [576] = {.lex_state = 65, .external_lex_state = 3}, - [577] = {.lex_state = 65, .external_lex_state = 3}, - [578] = {.lex_state = 65, .external_lex_state = 3}, - [579] = {.lex_state = 65, .external_lex_state = 2}, - [580] = {.lex_state = 65, .external_lex_state = 2}, - [581] = {.lex_state = 65, .external_lex_state = 3}, - [582] = {.lex_state = 65, .external_lex_state = 2}, - [583] = {.lex_state = 65, .external_lex_state = 3}, - [584] = {.lex_state = 65, .external_lex_state = 2}, - [585] = {.lex_state = 5, .external_lex_state = 3}, - [586] = {.lex_state = 65, .external_lex_state = 3}, - [587] = {.lex_state = 65, .external_lex_state = 3}, - [588] = {.lex_state = 65, .external_lex_state = 3}, - [589] = {.lex_state = 65, .external_lex_state = 3}, - [590] = {.lex_state = 65, .external_lex_state = 3}, - [591] = {.lex_state = 65, .external_lex_state = 3}, - [592] = {.lex_state = 65, .external_lex_state = 3}, - [593] = {.lex_state = 65, .external_lex_state = 3}, - [594] = {.lex_state = 65, .external_lex_state = 2}, - [595] = {.lex_state = 65, .external_lex_state = 3}, - [596] = {.lex_state = 65, .external_lex_state = 2}, - [597] = {.lex_state = 65, .external_lex_state = 3}, - [598] = {.lex_state = 65, .external_lex_state = 3}, - [599] = {.lex_state = 65, .external_lex_state = 3}, - [600] = {.lex_state = 65, .external_lex_state = 3}, - [601] = {.lex_state = 65, .external_lex_state = 3}, - [602] = {.lex_state = 65, .external_lex_state = 2}, - [603] = {.lex_state = 65, .external_lex_state = 2}, - [604] = {.lex_state = 65, .external_lex_state = 3}, - [605] = {.lex_state = 65, .external_lex_state = 3}, - [606] = {.lex_state = 65, .external_lex_state = 2}, - [607] = {.lex_state = 65, .external_lex_state = 3}, - [608] = {.lex_state = 5, .external_lex_state = 3}, - [609] = {.lex_state = 65, .external_lex_state = 3}, - [610] = {.lex_state = 65, .external_lex_state = 2}, - [611] = {.lex_state = 65, .external_lex_state = 3}, - [612] = {.lex_state = 65, .external_lex_state = 3}, - [613] = {.lex_state = 65, .external_lex_state = 3}, - [614] = {.lex_state = 65, .external_lex_state = 3}, - [615] = {.lex_state = 65, .external_lex_state = 3}, - [616] = {.lex_state = 65, .external_lex_state = 3}, - [617] = {.lex_state = 65, .external_lex_state = 3}, - [618] = {.lex_state = 65, .external_lex_state = 3}, - [619] = {.lex_state = 65, .external_lex_state = 3}, - [620] = {.lex_state = 65, .external_lex_state = 2}, - [621] = {.lex_state = 65, .external_lex_state = 3}, - [622] = {.lex_state = 65, .external_lex_state = 3}, - [623] = {.lex_state = 65, .external_lex_state = 3}, - [624] = {.lex_state = 65, .external_lex_state = 3}, - [625] = {.lex_state = 65, .external_lex_state = 3}, - [626] = {.lex_state = 65, .external_lex_state = 3}, - [627] = {.lex_state = 65, .external_lex_state = 3}, - [628] = {.lex_state = 65, .external_lex_state = 3}, - [629] = {.lex_state = 65, .external_lex_state = 3}, - [630] = {.lex_state = 65, .external_lex_state = 3}, - [631] = {.lex_state = 65, .external_lex_state = 2}, - [632] = {.lex_state = 65, .external_lex_state = 3}, - [633] = {.lex_state = 65, .external_lex_state = 3}, - [634] = {.lex_state = 65, .external_lex_state = 3}, - [635] = {.lex_state = 65, .external_lex_state = 3}, - [636] = {.lex_state = 65, .external_lex_state = 3}, - [637] = {.lex_state = 65, .external_lex_state = 3}, - [638] = {.lex_state = 65, .external_lex_state = 3}, - [639] = {.lex_state = 65, .external_lex_state = 3}, - [640] = {.lex_state = 65, .external_lex_state = 3}, - [641] = {.lex_state = 65, .external_lex_state = 3}, - [642] = {.lex_state = 65, .external_lex_state = 2}, - [643] = {.lex_state = 65, .external_lex_state = 2}, - [644] = {.lex_state = 65, .external_lex_state = 2}, - [645] = {.lex_state = 65, .external_lex_state = 2}, - [646] = {.lex_state = 65, .external_lex_state = 2}, - [647] = {.lex_state = 65, .external_lex_state = 2}, - [648] = {.lex_state = 65, .external_lex_state = 2}, - [649] = {.lex_state = 65, .external_lex_state = 3}, - [650] = {.lex_state = 65, .external_lex_state = 2}, - [651] = {.lex_state = 65, .external_lex_state = 2}, - [652] = {.lex_state = 65, .external_lex_state = 3}, - [653] = {.lex_state = 65, .external_lex_state = 2}, - [654] = {.lex_state = 65, .external_lex_state = 2}, - [655] = {.lex_state = 65, .external_lex_state = 2}, - [656] = {.lex_state = 65, .external_lex_state = 2}, - [657] = {.lex_state = 65, .external_lex_state = 2}, - [658] = {.lex_state = 65, .external_lex_state = 2}, - [659] = {.lex_state = 65, .external_lex_state = 3}, - [660] = {.lex_state = 65, .external_lex_state = 2}, - [661] = {.lex_state = 65, .external_lex_state = 2}, - [662] = {.lex_state = 65, .external_lex_state = 3}, - [663] = {.lex_state = 65, .external_lex_state = 2}, - [664] = {.lex_state = 65, .external_lex_state = 2}, - [665] = {.lex_state = 65, .external_lex_state = 2}, - [666] = {.lex_state = 65, .external_lex_state = 2}, - [667] = {.lex_state = 65, .external_lex_state = 2}, - [668] = {.lex_state = 65, .external_lex_state = 2}, - [669] = {.lex_state = 65, .external_lex_state = 2}, - [670] = {.lex_state = 65, .external_lex_state = 2}, - [671] = {.lex_state = 65, .external_lex_state = 2}, - [672] = {.lex_state = 65, .external_lex_state = 2}, - [673] = {.lex_state = 65, .external_lex_state = 2}, - [674] = {.lex_state = 65, .external_lex_state = 2}, - [675] = {.lex_state = 65, .external_lex_state = 2}, - [676] = {.lex_state = 65, .external_lex_state = 2}, - [677] = {.lex_state = 65, .external_lex_state = 2}, - [678] = {.lex_state = 65, .external_lex_state = 2}, - [679] = {.lex_state = 65, .external_lex_state = 2}, - [680] = {.lex_state = 65, .external_lex_state = 2}, - [681] = {.lex_state = 65, .external_lex_state = 2}, - [682] = {.lex_state = 65, .external_lex_state = 2}, - [683] = {.lex_state = 65, .external_lex_state = 2}, - [684] = {.lex_state = 65, .external_lex_state = 2}, - [685] = {.lex_state = 65, .external_lex_state = 2}, - [686] = {.lex_state = 65, .external_lex_state = 2}, - [687] = {.lex_state = 65, .external_lex_state = 2}, - [688] = {.lex_state = 65, .external_lex_state = 2}, - [689] = {.lex_state = 65, .external_lex_state = 2}, - [690] = {.lex_state = 65, .external_lex_state = 2}, - [691] = {.lex_state = 65, .external_lex_state = 2}, - [692] = {.lex_state = 65, .external_lex_state = 2}, - [693] = {.lex_state = 65, .external_lex_state = 2}, - [694] = {.lex_state = 65, .external_lex_state = 2}, - [695] = {.lex_state = 65, .external_lex_state = 2}, - [696] = {.lex_state = 65, .external_lex_state = 2}, - [697] = {.lex_state = 65, .external_lex_state = 2}, - [698] = {.lex_state = 65, .external_lex_state = 2}, - [699] = {.lex_state = 65, .external_lex_state = 2}, - [700] = {.lex_state = 65, .external_lex_state = 2}, - [701] = {.lex_state = 65, .external_lex_state = 2}, - [702] = {.lex_state = 65, .external_lex_state = 2}, - [703] = {.lex_state = 65, .external_lex_state = 2}, - [704] = {.lex_state = 65, .external_lex_state = 2}, - [705] = {.lex_state = 65, .external_lex_state = 2}, - [706] = {.lex_state = 65, .external_lex_state = 2}, - [707] = {.lex_state = 65, .external_lex_state = 2}, - [708] = {.lex_state = 65, .external_lex_state = 2}, - [709] = {.lex_state = 65, .external_lex_state = 2}, - [710] = {.lex_state = 65, .external_lex_state = 2}, - [711] = {.lex_state = 65, .external_lex_state = 2}, - [712] = {.lex_state = 65, .external_lex_state = 2}, - [713] = {.lex_state = 65, .external_lex_state = 2}, - [714] = {.lex_state = 65, .external_lex_state = 2}, - [715] = {.lex_state = 65, .external_lex_state = 2}, - [716] = {.lex_state = 65, .external_lex_state = 2}, - [717] = {.lex_state = 65, .external_lex_state = 2}, - [718] = {.lex_state = 65, .external_lex_state = 2}, - [719] = {.lex_state = 65, .external_lex_state = 2}, - [720] = {.lex_state = 65, .external_lex_state = 2}, - [721] = {.lex_state = 5, .external_lex_state = 2}, - [722] = {.lex_state = 65, .external_lex_state = 2}, - [723] = {.lex_state = 65, .external_lex_state = 2}, - [724] = {.lex_state = 65, .external_lex_state = 2}, - [725] = {.lex_state = 65, .external_lex_state = 2}, - [726] = {.lex_state = 65, .external_lex_state = 2}, - [727] = {.lex_state = 66}, - [728] = {.lex_state = 66}, - [729] = {.lex_state = 66}, - [730] = {.lex_state = 66}, - [731] = {.lex_state = 66}, - [732] = {.lex_state = 66}, - [733] = {.lex_state = 66}, - [734] = {.lex_state = 66}, - [735] = {.lex_state = 66}, - [736] = {.lex_state = 66}, - [737] = {.lex_state = 66}, - [738] = {.lex_state = 66}, - [739] = {.lex_state = 66}, - [740] = {.lex_state = 66}, - [741] = {.lex_state = 66}, - [742] = {.lex_state = 66}, - [743] = {.lex_state = 66}, - [744] = {.lex_state = 66}, - [745] = {.lex_state = 66}, - [746] = {.lex_state = 66}, - [747] = {.lex_state = 66}, - [748] = {.lex_state = 66}, - [749] = {.lex_state = 66}, - [750] = {.lex_state = 66}, - [751] = {.lex_state = 66}, - [752] = {.lex_state = 66}, - [753] = {.lex_state = 66}, - [754] = {.lex_state = 66}, - [755] = {.lex_state = 66}, - [756] = {.lex_state = 66}, - [757] = {.lex_state = 66}, - [758] = {.lex_state = 66}, - [759] = {.lex_state = 66}, - [760] = {.lex_state = 66}, - [761] = {.lex_state = 66}, - [762] = {.lex_state = 66}, - [763] = {.lex_state = 66}, - [764] = {.lex_state = 66}, - [765] = {.lex_state = 66}, - [766] = {.lex_state = 66}, - [767] = {.lex_state = 66}, - [768] = {.lex_state = 66}, - [769] = {.lex_state = 66}, - [770] = {.lex_state = 66, .external_lex_state = 4}, - [771] = {.lex_state = 66}, - [772] = {.lex_state = 66, .external_lex_state = 4}, - [773] = {.lex_state = 66, .external_lex_state = 4}, - [774] = {.lex_state = 66, .external_lex_state = 4}, - [775] = {.lex_state = 66}, - [776] = {.lex_state = 66, .external_lex_state = 4}, - [777] = {.lex_state = 66, .external_lex_state = 4}, - [778] = {.lex_state = 66}, - [779] = {.lex_state = 66, .external_lex_state = 4}, - [780] = {.lex_state = 66}, - [781] = {.lex_state = 66}, - [782] = {.lex_state = 66, .external_lex_state = 4}, - [783] = {.lex_state = 66, .external_lex_state = 4}, - [784] = {.lex_state = 66, .external_lex_state = 4}, - [785] = {.lex_state = 66, .external_lex_state = 4}, - [786] = {.lex_state = 66}, - [787] = {.lex_state = 66, .external_lex_state = 4}, - [788] = {.lex_state = 65}, - [789] = {.lex_state = 66}, - [790] = {.lex_state = 66}, - [791] = {.lex_state = 66}, - [792] = {.lex_state = 66}, - [793] = {.lex_state = 66}, - [794] = {.lex_state = 66}, - [795] = {.lex_state = 66}, - [796] = {.lex_state = 66}, - [797] = {.lex_state = 66}, - [798] = {.lex_state = 66}, - [799] = {.lex_state = 66}, - [800] = {.lex_state = 66}, - [801] = {.lex_state = 66}, - [802] = {.lex_state = 66}, - [803] = {.lex_state = 65}, - [804] = {.lex_state = 66}, - [805] = {.lex_state = 66}, - [806] = {.lex_state = 66}, - [807] = {.lex_state = 66}, - [808] = {.lex_state = 66}, - [809] = {.lex_state = 66}, - [810] = {.lex_state = 66}, - [811] = {.lex_state = 66}, - [812] = {.lex_state = 66}, - [813] = {.lex_state = 66}, - [814] = {.lex_state = 66}, - [815] = {.lex_state = 66}, - [816] = {.lex_state = 66}, - [817] = {.lex_state = 66}, - [818] = {.lex_state = 66}, - [819] = {.lex_state = 66}, - [820] = {.lex_state = 66}, - [821] = {.lex_state = 66}, - [822] = {.lex_state = 66}, - [823] = {.lex_state = 66}, - [824] = {.lex_state = 66}, - [825] = {.lex_state = 4}, - [826] = {.lex_state = 66}, - [827] = {.lex_state = 66}, - [828] = {.lex_state = 4}, - [829] = {.lex_state = 66}, - [830] = {.lex_state = 66}, - [831] = {.lex_state = 66}, - [832] = {.lex_state = 4}, - [833] = {.lex_state = 4}, - [834] = {.lex_state = 4}, - [835] = {.lex_state = 66}, - [836] = {.lex_state = 66}, - [837] = {.lex_state = 66}, - [838] = {.lex_state = 66}, - [839] = {.lex_state = 66}, - [840] = {.lex_state = 66}, - [841] = {.lex_state = 66}, - [842] = {.lex_state = 66}, - [843] = {.lex_state = 66}, - [844] = {.lex_state = 66}, - [845] = {.lex_state = 66}, - [846] = {.lex_state = 66}, - [847] = {.lex_state = 66}, - [848] = {.lex_state = 66}, - [849] = {.lex_state = 11}, - [850] = {.lex_state = 11}, - [851] = {.lex_state = 11}, - [852] = {.lex_state = 11}, - [853] = {.lex_state = 19}, - [854] = {.lex_state = 19}, - [855] = {.lex_state = 19}, - [856] = {.lex_state = 19}, - [857] = {.lex_state = 66}, - [858] = {.lex_state = 11}, - [859] = {.lex_state = 11}, - [860] = {.lex_state = 11}, - [861] = {.lex_state = 19}, - [862] = {.lex_state = 19}, - [863] = {.lex_state = 11}, - [864] = {.lex_state = 19}, - [865] = {.lex_state = 11}, - [866] = {.lex_state = 11}, - [867] = {.lex_state = 11}, - [868] = {.lex_state = 11}, - [869] = {.lex_state = 19}, - [870] = {.lex_state = 19}, - [871] = {.lex_state = 19}, - [872] = {.lex_state = 11}, - [873] = {.lex_state = 19}, - [874] = {.lex_state = 11}, - [875] = {.lex_state = 19}, - [876] = {.lex_state = 11}, - [877] = {.lex_state = 11}, - [878] = {.lex_state = 11}, - [879] = {.lex_state = 11}, - [880] = {.lex_state = 11}, - [881] = {.lex_state = 11}, - [882] = {.lex_state = 11}, - [883] = {.lex_state = 11}, - [884] = {.lex_state = 19}, - [885] = {.lex_state = 11}, - [886] = {.lex_state = 11}, - [887] = {.lex_state = 11}, - [888] = {.lex_state = 11}, - [889] = {.lex_state = 11}, - [890] = {.lex_state = 11}, - [891] = {.lex_state = 11}, - [892] = {.lex_state = 11}, - [893] = {.lex_state = 11}, - [894] = {.lex_state = 11}, - [895] = {.lex_state = 19}, - [896] = {.lex_state = 19}, - [897] = {.lex_state = 11}, - [898] = {.lex_state = 19}, - [899] = {.lex_state = 19}, - [900] = {.lex_state = 66}, - [901] = {.lex_state = 66}, - [902] = {.lex_state = 66}, - [903] = {.lex_state = 66}, - [904] = {.lex_state = 0}, - [905] = {.lex_state = 66}, - [906] = {.lex_state = 0}, - [907] = {.lex_state = 0}, - [908] = {.lex_state = 66, .external_lex_state = 4}, - [909] = {.lex_state = 0}, - [910] = {.lex_state = 0}, - [911] = {.lex_state = 0}, - [912] = {.lex_state = 66}, - [913] = {.lex_state = 66, .external_lex_state = 4}, - [914] = {.lex_state = 66}, - [915] = {.lex_state = 66}, - [916] = {.lex_state = 11}, - [917] = {.lex_state = 11}, - [918] = {.lex_state = 66}, - [919] = {.lex_state = 11}, - [920] = {.lex_state = 0}, - [921] = {.lex_state = 66}, - [922] = {.lex_state = 8, .external_lex_state = 5}, - [923] = {.lex_state = 0, .external_lex_state = 4}, - [924] = {.lex_state = 11}, - [925] = {.lex_state = 8, .external_lex_state = 5}, - [926] = {.lex_state = 8, .external_lex_state = 5}, - [927] = {.lex_state = 66, .external_lex_state = 4}, - [928] = {.lex_state = 66, .external_lex_state = 4}, - [929] = {.lex_state = 0, .external_lex_state = 4}, - [930] = {.lex_state = 11}, - [931] = {.lex_state = 66}, - [932] = {.lex_state = 66}, - [933] = {.lex_state = 11}, - [934] = {.lex_state = 66}, - [935] = {.lex_state = 66}, - [936] = {.lex_state = 0, .external_lex_state = 4}, - [937] = {.lex_state = 8, .external_lex_state = 5}, - [938] = {.lex_state = 66}, - [939] = {.lex_state = 11}, - [940] = {.lex_state = 11}, - [941] = {.lex_state = 66}, - [942] = {.lex_state = 8, .external_lex_state = 5}, - [943] = {.lex_state = 11}, - [944] = {.lex_state = 11}, - [945] = {.lex_state = 11}, - [946] = {.lex_state = 11}, - [947] = {.lex_state = 11}, - [948] = {.lex_state = 66, .external_lex_state = 4}, - [949] = {.lex_state = 66, .external_lex_state = 4}, - [950] = {.lex_state = 66, .external_lex_state = 4}, - [951] = {.lex_state = 66, .external_lex_state = 4}, - [952] = {.lex_state = 66, .external_lex_state = 4}, - [953] = {.lex_state = 0, .external_lex_state = 4}, - [954] = {.lex_state = 11}, - [955] = {.lex_state = 11}, - [956] = {.lex_state = 11}, - [957] = {.lex_state = 11}, - [958] = {.lex_state = 11}, - [959] = {.lex_state = 0}, - [960] = {.lex_state = 66}, - [961] = {.lex_state = 11}, - [962] = {.lex_state = 11}, - [963] = {.lex_state = 11}, - [964] = {.lex_state = 11}, - [965] = {.lex_state = 66}, - [966] = {.lex_state = 11}, - [967] = {.lex_state = 11}, - [968] = {.lex_state = 0}, - [969] = {.lex_state = 11}, - [970] = {.lex_state = 0}, - [971] = {.lex_state = 66}, - [972] = {.lex_state = 66}, - [973] = {.lex_state = 11}, - [974] = {.lex_state = 11}, - [975] = {.lex_state = 11}, - [976] = {.lex_state = 66}, - [977] = {.lex_state = 66}, - [978] = {.lex_state = 0}, - [979] = {.lex_state = 0}, - [980] = {.lex_state = 66}, - [981] = {.lex_state = 11}, - [982] = {.lex_state = 0}, - [983] = {.lex_state = 0, .external_lex_state = 4}, - [984] = {.lex_state = 0}, - [985] = {.lex_state = 11}, - [986] = {.lex_state = 11}, - [987] = {.lex_state = 66}, - [988] = {.lex_state = 11}, - [989] = {.lex_state = 66}, - [990] = {.lex_state = 66, .external_lex_state = 4}, - [991] = {.lex_state = 66}, - [992] = {.lex_state = 11}, - [993] = {.lex_state = 11}, - [994] = {.lex_state = 11}, - [995] = {.lex_state = 11}, - [996] = {.lex_state = 66}, - [997] = {.lex_state = 66}, - [998] = {.lex_state = 66}, - [999] = {.lex_state = 7}, - [1000] = {.lex_state = 10}, - [1001] = {.lex_state = 0, .external_lex_state = 4}, - [1002] = {.lex_state = 0, .external_lex_state = 4}, - [1003] = {.lex_state = 10}, - [1004] = {.lex_state = 66}, - [1005] = {.lex_state = 7}, - [1006] = {.lex_state = 66}, - [1007] = {.lex_state = 66}, - [1008] = {.lex_state = 0}, - [1009] = {.lex_state = 7}, - [1010] = {.lex_state = 10}, - [1011] = {.lex_state = 0, .external_lex_state = 4}, - [1012] = {.lex_state = 66}, - [1013] = {.lex_state = 0}, - [1014] = {.lex_state = 66}, - [1015] = {.lex_state = 0}, - [1016] = {.lex_state = 8, .external_lex_state = 5}, - [1017] = {.lex_state = 10}, - [1018] = {.lex_state = 11}, - [1019] = {.lex_state = 66}, - [1020] = {.lex_state = 66}, - [1021] = {.lex_state = 66}, - [1022] = {.lex_state = 7}, - [1023] = {.lex_state = 66}, - [1024] = {.lex_state = 7}, - [1025] = {.lex_state = 0, .external_lex_state = 4}, - [1026] = {.lex_state = 0}, - [1027] = {.lex_state = 0, .external_lex_state = 4}, - [1028] = {.lex_state = 0, .external_lex_state = 4}, - [1029] = {.lex_state = 0, .external_lex_state = 4}, - [1030] = {.lex_state = 66}, - [1031] = {.lex_state = 66}, - [1032] = {.lex_state = 11}, - [1033] = {.lex_state = 10}, - [1034] = {.lex_state = 66}, - [1035] = {.lex_state = 66}, - [1036] = {.lex_state = 66}, - [1037] = {.lex_state = 66}, - [1038] = {.lex_state = 66}, - [1039] = {.lex_state = 66}, - [1040] = {.lex_state = 11}, - [1041] = {.lex_state = 11}, - [1042] = {.lex_state = 66}, - [1043] = {.lex_state = 66}, - [1044] = {.lex_state = 0}, - [1045] = {.lex_state = 66}, - [1046] = {.lex_state = 7}, - [1047] = {.lex_state = 0}, - [1048] = {.lex_state = 10}, - [1049] = {.lex_state = 66}, - [1050] = {.lex_state = 66}, - [1051] = {.lex_state = 7}, - [1052] = {.lex_state = 10}, - [1053] = {.lex_state = 66}, - [1054] = {.lex_state = 0, .external_lex_state = 4}, - [1055] = {.lex_state = 0}, - [1056] = {.lex_state = 66}, - [1057] = {.lex_state = 0}, - [1058] = {.lex_state = 66}, - [1059] = {.lex_state = 7}, - [1060] = {.lex_state = 66, .external_lex_state = 4}, - [1061] = {.lex_state = 10}, - [1062] = {.lex_state = 0, .external_lex_state = 4}, - [1063] = {.lex_state = 0}, - [1064] = {.lex_state = 10}, - [1065] = {.lex_state = 66}, - [1066] = {.lex_state = 7}, - [1067] = {.lex_state = 66}, - [1068] = {.lex_state = 66}, - [1069] = {.lex_state = 0}, - [1070] = {.lex_state = 3}, - [1071] = {.lex_state = 19}, - [1072] = {.lex_state = 0, .external_lex_state = 4}, - [1073] = {.lex_state = 19}, - [1074] = {.lex_state = 19}, - [1075] = {.lex_state = 19}, - [1076] = {.lex_state = 19}, - [1077] = {.lex_state = 19}, - [1078] = {.lex_state = 66}, - [1079] = {.lex_state = 66}, - [1080] = {.lex_state = 66, .external_lex_state = 4}, - [1081] = {.lex_state = 66, .external_lex_state = 4}, - [1082] = {.lex_state = 0}, - [1083] = {.lex_state = 0}, - [1084] = {.lex_state = 66}, - [1085] = {.lex_state = 66}, - [1086] = {.lex_state = 0, .external_lex_state = 4}, - [1087] = {.lex_state = 66}, - [1088] = {.lex_state = 66}, - [1089] = {.lex_state = 0}, - [1090] = {.lex_state = 66}, - [1091] = {.lex_state = 19}, - [1092] = {.lex_state = 19}, - [1093] = {.lex_state = 0}, - [1094] = {.lex_state = 0}, - [1095] = {.lex_state = 0}, - [1096] = {.lex_state = 3}, - [1097] = {.lex_state = 0}, - [1098] = {.lex_state = 0}, - [1099] = {.lex_state = 19}, - [1100] = {.lex_state = 0}, - [1101] = {.lex_state = 19}, - [1102] = {.lex_state = 3}, - [1103] = {.lex_state = 0}, - [1104] = {.lex_state = 0}, - [1105] = {.lex_state = 66, .external_lex_state = 4}, - [1106] = {.lex_state = 66}, - [1107] = {.lex_state = 66}, - [1108] = {.lex_state = 0}, - [1109] = {.lex_state = 0}, - [1110] = {.lex_state = 0}, - [1111] = {.lex_state = 0}, - [1112] = {.lex_state = 0}, - [1113] = {.lex_state = 0}, - [1114] = {.lex_state = 0}, - [1115] = {.lex_state = 0}, - [1116] = {.lex_state = 0}, - [1117] = {.lex_state = 0}, - [1118] = {.lex_state = 0}, - [1119] = {.lex_state = 0}, - [1120] = {.lex_state = 66}, - [1121] = {.lex_state = 19}, - [1122] = {.lex_state = 0}, - [1123] = {.lex_state = 0}, - [1124] = {.lex_state = 66}, - [1125] = {.lex_state = 0}, - [1126] = {.lex_state = 66}, - [1127] = {.lex_state = 0}, - [1128] = {.lex_state = 66}, - [1129] = {.lex_state = 19}, - [1130] = {.lex_state = 19}, - [1131] = {.lex_state = 0}, - [1132] = {.lex_state = 0}, - [1133] = {.lex_state = 0}, - [1134] = {.lex_state = 0}, - [1135] = {.lex_state = 0}, - [1136] = {.lex_state = 66, .external_lex_state = 4}, - [1137] = {.lex_state = 0}, - [1138] = {.lex_state = 0}, - [1139] = {.lex_state = 0}, - [1140] = {.lex_state = 66}, - [1141] = {.lex_state = 66}, - [1142] = {.lex_state = 0}, - [1143] = {.lex_state = 0}, - [1144] = {.lex_state = 66}, - [1145] = {.lex_state = 19}, - [1146] = {.lex_state = 0}, - [1147] = {.lex_state = 0}, - [1148] = {.lex_state = 0}, - [1149] = {.lex_state = 19}, - [1150] = {.lex_state = 3}, - [1151] = {.lex_state = 0}, - [1152] = {.lex_state = 0}, - [1153] = {.lex_state = 0}, - [1154] = {.lex_state = 0}, - [1155] = {.lex_state = 66}, - [1156] = {.lex_state = 0}, - [1157] = {.lex_state = 66}, - [1158] = {.lex_state = 0}, - [1159] = {.lex_state = 66}, - [1160] = {.lex_state = 66}, - [1161] = {.lex_state = 19}, - [1162] = {.lex_state = 66, .external_lex_state = 4}, - [1163] = {.lex_state = 66}, - [1164] = {.lex_state = 0}, - [1165] = {.lex_state = 0}, - [1166] = {.lex_state = 0}, - [1167] = {.lex_state = 0}, - [1168] = {.lex_state = 66, .external_lex_state = 4}, - [1169] = {.lex_state = 19}, - [1170] = {.lex_state = 0}, - [1171] = {.lex_state = 0}, - [1172] = {.lex_state = 0}, - [1173] = {.lex_state = 66}, - [1174] = {.lex_state = 3}, - [1175] = {.lex_state = 0}, - [1176] = {.lex_state = 0}, - [1177] = {.lex_state = 0}, - [1178] = {.lex_state = 0}, - [1179] = {.lex_state = 0, .external_lex_state = 4}, - [1180] = {.lex_state = 0}, - [1181] = {.lex_state = 0}, - [1182] = {.lex_state = 0}, - [1183] = {.lex_state = 0, .external_lex_state = 4}, - [1184] = {.lex_state = 0}, - [1185] = {.lex_state = 0}, - [1186] = {.lex_state = 0}, - [1187] = {.lex_state = 66}, - [1188] = {.lex_state = 0}, - [1189] = {.lex_state = 3}, - [1190] = {.lex_state = 0}, - [1191] = {.lex_state = 0}, - [1192] = {.lex_state = 0, .external_lex_state = 4}, - [1193] = {.lex_state = 0}, - [1194] = {.lex_state = 0}, - [1195] = {.lex_state = 0}, - [1196] = {.lex_state = 0}, - [1197] = {.lex_state = 0, .external_lex_state = 4}, - [1198] = {.lex_state = 0}, - [1199] = {.lex_state = 0}, - [1200] = {.lex_state = 0}, - [1201] = {.lex_state = 0}, - [1202] = {.lex_state = 0}, - [1203] = {.lex_state = 0}, - [1204] = {.lex_state = 0}, - [1205] = {.lex_state = 66}, - [1206] = {.lex_state = 0}, - [1207] = {.lex_state = 0}, - [1208] = {.lex_state = 0}, - [1209] = {.lex_state = 0}, - [1210] = {.lex_state = 0}, - [1211] = {.lex_state = 66}, - [1212] = {.lex_state = 0}, - [1213] = {.lex_state = 0}, - [1214] = {.lex_state = 0}, - [1215] = {.lex_state = 0}, - [1216] = {.lex_state = 0, .external_lex_state = 4}, - [1217] = {.lex_state = 0}, - [1218] = {.lex_state = 0, .external_lex_state = 4}, - [1219] = {.lex_state = 0, .external_lex_state = 4}, - [1220] = {.lex_state = 0}, - [1221] = {.lex_state = 0}, - [1222] = {.lex_state = 0}, - [1223] = {.lex_state = 0}, - [1224] = {.lex_state = 11}, - [1225] = {.lex_state = 0}, - [1226] = {.lex_state = 66}, - [1227] = {.lex_state = 0, .external_lex_state = 4}, - [1228] = {.lex_state = 0, .external_lex_state = 4}, - [1229] = {.lex_state = 0, .external_lex_state = 4}, - [1230] = {.lex_state = 0, .external_lex_state = 4}, - [1231] = {.lex_state = 0}, - [1232] = {.lex_state = 0}, - [1233] = {.lex_state = 0}, - [1234] = {.lex_state = 0}, - [1235] = {.lex_state = 3}, - [1236] = {.lex_state = 0}, - [1237] = {.lex_state = 0}, - [1238] = {.lex_state = 0, .external_lex_state = 4}, - [1239] = {.lex_state = 0}, - [1240] = {.lex_state = 0}, - [1241] = {.lex_state = 0, .external_lex_state = 4}, - [1242] = {.lex_state = 0}, - [1243] = {.lex_state = 0}, - [1244] = {.lex_state = 0}, - [1245] = {.lex_state = 0}, - [1246] = {.lex_state = 0, .external_lex_state = 4}, - [1247] = {.lex_state = 0}, - [1248] = {.lex_state = 0}, - [1249] = {.lex_state = 0}, - [1250] = {.lex_state = 66}, - [1251] = {.lex_state = 66}, - [1252] = {.lex_state = 0, .external_lex_state = 4}, - [1253] = {.lex_state = 0}, - [1254] = {.lex_state = 66}, - [1255] = {.lex_state = 0}, - [1256] = {.lex_state = 0}, - [1257] = {.lex_state = 0}, - [1258] = {.lex_state = 0}, - [1259] = {.lex_state = 0}, - [1260] = {.lex_state = 66}, - [1261] = {.lex_state = 0}, - [1262] = {.lex_state = 0}, - [1263] = {.lex_state = 0}, - [1264] = {.lex_state = 0}, - [1265] = {.lex_state = 0}, - [1266] = {.lex_state = 0}, - [1267] = {.lex_state = 0}, - [1268] = {.lex_state = 0}, - [1269] = {.lex_state = 0}, - [1270] = {.lex_state = 0}, - [1271] = {.lex_state = 66}, - [1272] = {.lex_state = 0}, - [1273] = {.lex_state = 66}, - [1274] = {.lex_state = 3}, - [1275] = {.lex_state = 66}, - [1276] = {.lex_state = 66}, - [1277] = {.lex_state = 0}, - [1278] = {.lex_state = 0}, - [1279] = {.lex_state = 0}, - [1280] = {.lex_state = 0}, - [1281] = {.lex_state = 0}, - [1282] = {.lex_state = 0}, - [1283] = {.lex_state = 0}, - [1284] = {.lex_state = 0}, - [1285] = {.lex_state = 0}, - [1286] = {.lex_state = 0}, - [1287] = {.lex_state = 0}, - [1288] = {.lex_state = 0}, - [1289] = {.lex_state = 0}, - [1290] = {.lex_state = 0, .external_lex_state = 4}, - [1291] = {.lex_state = 0}, - [1292] = {.lex_state = 0}, - [1293] = {.lex_state = 0}, - [1294] = {.lex_state = 0}, - [1295] = {.lex_state = 0}, - [1296] = {.lex_state = 0}, - [1297] = {.lex_state = 0}, - [1298] = {.lex_state = 0}, - [1299] = {.lex_state = 0}, - [1300] = {.lex_state = 0}, - [1301] = {.lex_state = 66}, - [1302] = {.lex_state = 0}, - [1303] = {.lex_state = 0, .external_lex_state = 4}, - [1304] = {.lex_state = 0}, - [1305] = {.lex_state = 0}, - [1306] = {.lex_state = 0}, - [1307] = {.lex_state = 0}, - [1308] = {.lex_state = 0}, - [1309] = {.lex_state = 0}, - [1310] = {.lex_state = 0}, - [1311] = {.lex_state = 0}, - [1312] = {.lex_state = 0}, - [1313] = {.lex_state = 0}, - [1314] = {.lex_state = 0}, - [1315] = {.lex_state = 0}, - [1316] = {.lex_state = 0}, - [1317] = {.lex_state = 0}, - [1318] = {.lex_state = 0}, - [1319] = {.lex_state = 0}, - [1320] = {.lex_state = 0}, - [1321] = {.lex_state = 0}, - [1322] = {.lex_state = 0}, - [1323] = {.lex_state = 0}, - [1324] = {.lex_state = 0}, - [1325] = {.lex_state = 0}, - [1326] = {.lex_state = 0}, - [1327] = {.lex_state = 0}, - [1328] = {.lex_state = 0}, - [1329] = {.lex_state = 0}, - [1330] = {.lex_state = 0}, - [1331] = {.lex_state = 0}, - [1332] = {.lex_state = 0}, - [1333] = {.lex_state = 0}, - [1334] = {.lex_state = 0}, - [1335] = {.lex_state = 0}, - [1336] = {.lex_state = 0, .external_lex_state = 4}, - [1337] = {.lex_state = 8}, - [1338] = {.lex_state = 1}, - [1339] = {.lex_state = 66}, - [1340] = {.lex_state = 0}, - [1341] = {.lex_state = 66}, - [1342] = {.lex_state = 1}, - [1343] = {.lex_state = 66}, - [1344] = {.lex_state = 66}, - [1345] = {.lex_state = 66}, - [1346] = {.lex_state = 66}, - [1347] = {.lex_state = 0}, - [1348] = {.lex_state = 8}, - [1349] = {.lex_state = 66}, - [1350] = {.lex_state = 66}, - [1351] = {.lex_state = 66}, - [1352] = {.lex_state = 0}, - [1353] = {.lex_state = 66}, - [1354] = {.lex_state = 66}, - [1355] = {.lex_state = 8}, - [1356] = {.lex_state = 66}, - [1357] = {.lex_state = 0}, - [1358] = {.lex_state = 0}, - [1359] = {.lex_state = 0}, - [1360] = {.lex_state = 0}, - [1361] = {.lex_state = 8}, - [1362] = {.lex_state = 0}, - [1363] = {.lex_state = 66}, - [1364] = {.lex_state = 0}, - [1365] = {.lex_state = 66}, - [1366] = {.lex_state = 0}, - [1367] = {.lex_state = 66}, - [1368] = {.lex_state = 66}, - [1369] = {.lex_state = 66}, - [1370] = {.lex_state = 0}, - [1371] = {.lex_state = 0}, - [1372] = {.lex_state = 66}, - [1373] = {.lex_state = 66}, - [1374] = {.lex_state = 66}, - [1375] = {.lex_state = 0}, - [1376] = {.lex_state = 66}, - [1377] = {.lex_state = 66}, - [1378] = {.lex_state = 0}, - [1379] = {.lex_state = 66}, - [1380] = {.lex_state = 0}, - [1381] = {.lex_state = 66}, - [1382] = {.lex_state = 66}, - [1383] = {.lex_state = 0}, - [1384] = {.lex_state = 66}, - [1385] = {.lex_state = 66}, - [1386] = {.lex_state = 0}, - [1387] = {.lex_state = 66}, - [1388] = {.lex_state = 0}, - [1389] = {.lex_state = 0}, - [1390] = {.lex_state = 0}, - [1391] = {.lex_state = 0}, - [1392] = {.lex_state = 66}, - [1393] = {.lex_state = 0}, - [1394] = {.lex_state = 0}, - [1395] = {.lex_state = 66}, - [1396] = {.lex_state = 0}, - [1397] = {.lex_state = 0}, - [1398] = {.lex_state = 66}, - [1399] = {.lex_state = 66}, - [1400] = {.lex_state = 66}, - [1401] = {.lex_state = 66}, - [1402] = {.lex_state = 66}, - [1403] = {.lex_state = 0}, - [1404] = {.lex_state = 0}, - [1405] = {.lex_state = 1}, - [1406] = {.lex_state = 0}, - [1407] = {.lex_state = 66}, - [1408] = {.lex_state = 66}, - [1409] = {.lex_state = 0}, - [1410] = {.lex_state = 66}, - [1411] = {.lex_state = 0}, - [1412] = {.lex_state = 0}, - [1413] = {.lex_state = 0}, - [1414] = {.lex_state = 66}, - [1415] = {.lex_state = 0}, - [1416] = {.lex_state = 1}, - [1417] = {.lex_state = 66}, - [1418] = {.lex_state = 0}, - [1419] = {.lex_state = 0}, - [1420] = {.lex_state = 0}, - [1421] = {.lex_state = 0}, - [1422] = {.lex_state = 0}, - [1423] = {.lex_state = 66}, - [1424] = {.lex_state = 0}, - [1425] = {.lex_state = 0}, - [1426] = {.lex_state = 66}, - [1427] = {.lex_state = 0}, - [1428] = {.lex_state = 66}, - [1429] = {.lex_state = 66}, - [1430] = {.lex_state = 0}, - [1431] = {.lex_state = 66}, - [1432] = {.lex_state = 0}, - [1433] = {.lex_state = 66}, - [1434] = {.lex_state = 66}, - [1435] = {.lex_state = 66}, - [1436] = {.lex_state = 66}, - [1437] = {.lex_state = 66}, - [1438] = {.lex_state = 66}, - [1439] = {.lex_state = 66}, - [1440] = {.lex_state = 0}, - [1441] = {.lex_state = 0}, -}; - -enum { - ts_external_token_automatic_semicolon = 0, - ts_external_token_template_chars = 1, - ts_external_token_ternary_qmark = 2, -}; - -static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { - [ts_external_token_automatic_semicolon] = sym_automatic_semicolon, - [ts_external_token_template_chars] = sym_template_chars, - [ts_external_token_ternary_qmark] = sym_ternary_qmark, -}; - -static const bool ts_external_scanner_states[6][EXTERNAL_TOKEN_COUNT] = { - [1] = { - [ts_external_token_automatic_semicolon] = true, - [ts_external_token_template_chars] = true, - [ts_external_token_ternary_qmark] = true, - }, - [2] = { - [ts_external_token_ternary_qmark] = true, - }, - [3] = { - [ts_external_token_automatic_semicolon] = true, - [ts_external_token_ternary_qmark] = true, - }, - [4] = { - [ts_external_token_automatic_semicolon] = true, - }, - [5] = { - [ts_external_token_template_chars] = true, - }, + [1] = {.lex_state = 125, .external_lex_state = 2}, + [2] = {.lex_state = 4, .external_lex_state = 2}, + [3] = {.lex_state = 4, .external_lex_state = 2}, + [4] = {.lex_state = 4, .external_lex_state = 2}, + [5] = {.lex_state = 4, .external_lex_state = 2}, + [6] = {.lex_state = 4, .external_lex_state = 2}, + [7] = {.lex_state = 125, .external_lex_state = 2}, + [8] = {.lex_state = 125, .external_lex_state = 2}, + [9] = {.lex_state = 125, .external_lex_state = 2}, + [10] = {.lex_state = 125, .external_lex_state = 2}, + [11] = {.lex_state = 125, .external_lex_state = 2}, + [12] = {.lex_state = 125, .external_lex_state = 2}, + [13] = {.lex_state = 125, .external_lex_state = 2}, + [14] = {.lex_state = 125, .external_lex_state = 2}, + [15] = {.lex_state = 125, .external_lex_state = 2}, + [16] = {.lex_state = 125, .external_lex_state = 2}, + [17] = {.lex_state = 125, .external_lex_state = 2}, + [18] = {.lex_state = 125, .external_lex_state = 2}, + [19] = {.lex_state = 125, .external_lex_state = 2}, + [20] = {.lex_state = 125, .external_lex_state = 2}, + [21] = {.lex_state = 125, .external_lex_state = 2}, + [22] = {.lex_state = 125, .external_lex_state = 2}, + [23] = {.lex_state = 125, .external_lex_state = 2}, + [24] = {.lex_state = 125, .external_lex_state = 2}, + [25] = {.lex_state = 125, .external_lex_state = 2}, + [26] = {.lex_state = 125, .external_lex_state = 2}, + [27] = {.lex_state = 125, .external_lex_state = 2}, + [28] = {.lex_state = 125, .external_lex_state = 2}, + [29] = {.lex_state = 125, .external_lex_state = 2}, + [30] = {.lex_state = 125, .external_lex_state = 2}, + [31] = {.lex_state = 125, .external_lex_state = 2}, + [32] = {.lex_state = 125, .external_lex_state = 2}, + [33] = {.lex_state = 125, .external_lex_state = 2}, + [34] = {.lex_state = 125, .external_lex_state = 2}, + [35] = {.lex_state = 125, .external_lex_state = 2}, + [36] = {.lex_state = 125, .external_lex_state = 2}, + [37] = {.lex_state = 125, .external_lex_state = 2}, + [38] = {.lex_state = 125, .external_lex_state = 2}, + [39] = {.lex_state = 125, .external_lex_state = 2}, + [40] = {.lex_state = 125, .external_lex_state = 2}, + [41] = {.lex_state = 125, .external_lex_state = 2}, + [42] = {.lex_state = 125, .external_lex_state = 2}, + [43] = {.lex_state = 125, .external_lex_state = 2}, + [44] = {.lex_state = 125, .external_lex_state = 2}, + [45] = {.lex_state = 125, .external_lex_state = 2}, + [46] = {.lex_state = 125, .external_lex_state = 2}, + [47] = {.lex_state = 125, .external_lex_state = 2}, + [48] = {.lex_state = 125, .external_lex_state = 2}, + [49] = {.lex_state = 125, .external_lex_state = 2}, + [50] = {.lex_state = 125, .external_lex_state = 2}, + [51] = {.lex_state = 125, .external_lex_state = 2}, + [52] = {.lex_state = 125, .external_lex_state = 2}, + [53] = {.lex_state = 125, .external_lex_state = 2}, + [54] = {.lex_state = 125, .external_lex_state = 2}, + [55] = {.lex_state = 125, .external_lex_state = 2}, + [56] = {.lex_state = 124, .external_lex_state = 3}, + [57] = {.lex_state = 124, .external_lex_state = 4}, + [58] = {.lex_state = 124, .external_lex_state = 4}, + [59] = {.lex_state = 124, .external_lex_state = 3}, + [60] = {.lex_state = 124, .external_lex_state = 3}, + [61] = {.lex_state = 124, .external_lex_state = 4}, + [62] = {.lex_state = 124, .external_lex_state = 4}, + [63] = {.lex_state = 124, .external_lex_state = 4}, + [64] = {.lex_state = 124, .external_lex_state = 4}, + [65] = {.lex_state = 124, .external_lex_state = 4}, + [66] = {.lex_state = 124, .external_lex_state = 4}, + [67] = {.lex_state = 124, .external_lex_state = 4}, + [68] = {.lex_state = 124, .external_lex_state = 4}, + [69] = {.lex_state = 124, .external_lex_state = 4}, + [70] = {.lex_state = 124, .external_lex_state = 4}, + [71] = {.lex_state = 124, .external_lex_state = 4}, + [72] = {.lex_state = 124, .external_lex_state = 4}, + [73] = {.lex_state = 124, .external_lex_state = 4}, + [74] = {.lex_state = 124, .external_lex_state = 4}, + [75] = {.lex_state = 124, .external_lex_state = 4}, + [76] = {.lex_state = 125, .external_lex_state = 2}, + [77] = {.lex_state = 125, .external_lex_state = 2}, + [78] = {.lex_state = 125, .external_lex_state = 2}, + [79] = {.lex_state = 125, .external_lex_state = 2}, + [80] = {.lex_state = 125, .external_lex_state = 2}, + [81] = {.lex_state = 125, .external_lex_state = 2}, + [82] = {.lex_state = 125, .external_lex_state = 2}, + [83] = {.lex_state = 125, .external_lex_state = 2}, + [84] = {.lex_state = 125, .external_lex_state = 2}, + [85] = {.lex_state = 125, .external_lex_state = 2}, + [86] = {.lex_state = 125, .external_lex_state = 2}, + [87] = {.lex_state = 125, .external_lex_state = 2}, + [88] = {.lex_state = 125, .external_lex_state = 2}, + [89] = {.lex_state = 125, .external_lex_state = 2}, + [90] = {.lex_state = 125, .external_lex_state = 2}, + [91] = {.lex_state = 125, .external_lex_state = 2}, + [92] = {.lex_state = 125, .external_lex_state = 2}, + [93] = {.lex_state = 125, .external_lex_state = 2}, + [94] = {.lex_state = 125, .external_lex_state = 2}, + [95] = {.lex_state = 125, .external_lex_state = 2}, + [96] = {.lex_state = 125, .external_lex_state = 2}, + [97] = {.lex_state = 125, .external_lex_state = 2}, + [98] = {.lex_state = 125, .external_lex_state = 2}, + [99] = {.lex_state = 125, .external_lex_state = 2}, + [100] = {.lex_state = 125, .external_lex_state = 2}, + [101] = {.lex_state = 125, .external_lex_state = 2}, + [102] = {.lex_state = 125, .external_lex_state = 2}, + [103] = {.lex_state = 125, .external_lex_state = 2}, + [104] = {.lex_state = 125, .external_lex_state = 2}, + [105] = {.lex_state = 125, .external_lex_state = 2}, + [106] = {.lex_state = 125, .external_lex_state = 2}, + [107] = {.lex_state = 125, .external_lex_state = 2}, + [108] = {.lex_state = 125, .external_lex_state = 2}, + [109] = {.lex_state = 125, .external_lex_state = 2}, + [110] = {.lex_state = 125, .external_lex_state = 5}, + [111] = {.lex_state = 125, .external_lex_state = 2}, + [112] = {.lex_state = 125, .external_lex_state = 2}, + [113] = {.lex_state = 125, .external_lex_state = 2}, + [114] = {.lex_state = 125, .external_lex_state = 2}, + [115] = {.lex_state = 125, .external_lex_state = 2}, + [116] = {.lex_state = 125, .external_lex_state = 2}, + [117] = {.lex_state = 125, .external_lex_state = 2}, + [118] = {.lex_state = 125, .external_lex_state = 2}, + [119] = {.lex_state = 125, .external_lex_state = 2}, + [120] = {.lex_state = 125, .external_lex_state = 2}, + [121] = {.lex_state = 125, .external_lex_state = 2}, + [122] = {.lex_state = 125, .external_lex_state = 2}, + [123] = {.lex_state = 125, .external_lex_state = 2}, + [124] = {.lex_state = 125, .external_lex_state = 2}, + [125] = {.lex_state = 5, .external_lex_state = 2}, + [126] = {.lex_state = 125, .external_lex_state = 2}, + [127] = {.lex_state = 125, .external_lex_state = 2}, + [128] = {.lex_state = 125, .external_lex_state = 2}, + [129] = {.lex_state = 125, .external_lex_state = 2}, + [130] = {.lex_state = 125, .external_lex_state = 2}, + [131] = {.lex_state = 125, .external_lex_state = 2}, + [132] = {.lex_state = 125, .external_lex_state = 2}, + [133] = {.lex_state = 6, .external_lex_state = 4}, + [134] = {.lex_state = 125, .external_lex_state = 2}, + [135] = {.lex_state = 125, .external_lex_state = 2}, + [136] = {.lex_state = 5, .external_lex_state = 2}, + [137] = {.lex_state = 125, .external_lex_state = 2}, + [138] = {.lex_state = 125, .external_lex_state = 2}, + [139] = {.lex_state = 125, .external_lex_state = 2}, + [140] = {.lex_state = 125, .external_lex_state = 2}, + [141] = {.lex_state = 125, .external_lex_state = 2}, + [142] = {.lex_state = 125, .external_lex_state = 2}, + [143] = {.lex_state = 6, .external_lex_state = 4}, + [144] = {.lex_state = 125, .external_lex_state = 2}, + [145] = {.lex_state = 125, .external_lex_state = 2}, + [146] = {.lex_state = 125, .external_lex_state = 2}, + [147] = {.lex_state = 125, .external_lex_state = 2}, + [148] = {.lex_state = 125, .external_lex_state = 2}, + [149] = {.lex_state = 125, .external_lex_state = 2}, + [150] = {.lex_state = 6, .external_lex_state = 4}, + [151] = {.lex_state = 5, .external_lex_state = 2}, + [152] = {.lex_state = 5, .external_lex_state = 2}, + [153] = {.lex_state = 125, .external_lex_state = 2}, + [154] = {.lex_state = 125, .external_lex_state = 2}, + [155] = {.lex_state = 5, .external_lex_state = 2}, + [156] = {.lex_state = 125, .external_lex_state = 2}, + [157] = {.lex_state = 125, .external_lex_state = 2}, + [158] = {.lex_state = 125, .external_lex_state = 2}, + [159] = {.lex_state = 125, .external_lex_state = 2}, + [160] = {.lex_state = 125, .external_lex_state = 2}, + [161] = {.lex_state = 125, .external_lex_state = 2}, + [162] = {.lex_state = 125, .external_lex_state = 2}, + [163] = {.lex_state = 125, .external_lex_state = 2}, + [164] = {.lex_state = 125, .external_lex_state = 2}, + [165] = {.lex_state = 125, .external_lex_state = 2}, + [166] = {.lex_state = 125, .external_lex_state = 2}, + [167] = {.lex_state = 125, .external_lex_state = 2}, + [168] = {.lex_state = 125, .external_lex_state = 2}, + [169] = {.lex_state = 125, .external_lex_state = 2}, + [170] = {.lex_state = 125, .external_lex_state = 2}, + [171] = {.lex_state = 125, .external_lex_state = 2}, + [172] = {.lex_state = 125, .external_lex_state = 2}, + [173] = {.lex_state = 125, .external_lex_state = 2}, + [174] = {.lex_state = 125, .external_lex_state = 2}, + [175] = {.lex_state = 125, .external_lex_state = 2}, + [176] = {.lex_state = 125, .external_lex_state = 2}, + [177] = {.lex_state = 125, .external_lex_state = 2}, + [178] = {.lex_state = 125, .external_lex_state = 2}, + [179] = {.lex_state = 125, .external_lex_state = 2}, + [180] = {.lex_state = 125, .external_lex_state = 2}, + [181] = {.lex_state = 125, .external_lex_state = 2}, + [182] = {.lex_state = 125, .external_lex_state = 2}, + [183] = {.lex_state = 125, .external_lex_state = 2}, + [184] = {.lex_state = 125, .external_lex_state = 2}, + [185] = {.lex_state = 125, .external_lex_state = 2}, + [186] = {.lex_state = 125, .external_lex_state = 2}, + [187] = {.lex_state = 125, .external_lex_state = 2}, + [188] = {.lex_state = 125, .external_lex_state = 2}, + [189] = {.lex_state = 125, .external_lex_state = 2}, + [190] = {.lex_state = 125, .external_lex_state = 2}, + [191] = {.lex_state = 125, .external_lex_state = 2}, + [192] = {.lex_state = 125, .external_lex_state = 2}, + [193] = {.lex_state = 125, .external_lex_state = 2}, + [194] = {.lex_state = 125, .external_lex_state = 2}, + [195] = {.lex_state = 125, .external_lex_state = 2}, + [196] = {.lex_state = 125, .external_lex_state = 2}, + [197] = {.lex_state = 125, .external_lex_state = 2}, + [198] = {.lex_state = 125, .external_lex_state = 2}, + [199] = {.lex_state = 125, .external_lex_state = 2}, + [200] = {.lex_state = 125, .external_lex_state = 2}, + [201] = {.lex_state = 125, .external_lex_state = 2}, + [202] = {.lex_state = 125, .external_lex_state = 2}, + [203] = {.lex_state = 125, .external_lex_state = 2}, + [204] = {.lex_state = 125, .external_lex_state = 2}, + [205] = {.lex_state = 125, .external_lex_state = 2}, + [206] = {.lex_state = 125, .external_lex_state = 2}, + [207] = {.lex_state = 125, .external_lex_state = 2}, + [208] = {.lex_state = 125, .external_lex_state = 2}, + [209] = {.lex_state = 125, .external_lex_state = 2}, + [210] = {.lex_state = 125, .external_lex_state = 2}, + [211] = {.lex_state = 125, .external_lex_state = 2}, + [212] = {.lex_state = 125, .external_lex_state = 2}, + [213] = {.lex_state = 125, .external_lex_state = 2}, + [214] = {.lex_state = 125, .external_lex_state = 2}, + [215] = {.lex_state = 125, .external_lex_state = 2}, + [216] = {.lex_state = 125, .external_lex_state = 2}, + [217] = {.lex_state = 125, .external_lex_state = 2}, + [218] = {.lex_state = 125, .external_lex_state = 2}, + [219] = {.lex_state = 125, .external_lex_state = 2}, + [220] = {.lex_state = 125, .external_lex_state = 2}, + [221] = {.lex_state = 125, .external_lex_state = 2}, + [222] = {.lex_state = 125, .external_lex_state = 2}, + [223] = {.lex_state = 125, .external_lex_state = 2}, + [224] = {.lex_state = 125, .external_lex_state = 2}, + [225] = {.lex_state = 125, .external_lex_state = 2}, + [226] = {.lex_state = 125, .external_lex_state = 2}, + [227] = {.lex_state = 125, .external_lex_state = 2}, + [228] = {.lex_state = 125, .external_lex_state = 2}, + [229] = {.lex_state = 125, .external_lex_state = 2}, + [230] = {.lex_state = 125, .external_lex_state = 2}, + [231] = {.lex_state = 125, .external_lex_state = 2}, + [232] = {.lex_state = 125, .external_lex_state = 2}, + [233] = {.lex_state = 125, .external_lex_state = 2}, + [234] = {.lex_state = 125, .external_lex_state = 2}, + [235] = {.lex_state = 125, .external_lex_state = 2}, + [236] = {.lex_state = 125, .external_lex_state = 2}, + [237] = {.lex_state = 125, .external_lex_state = 2}, + [238] = {.lex_state = 125, .external_lex_state = 2}, + [239] = {.lex_state = 125, .external_lex_state = 2}, + [240] = {.lex_state = 125, .external_lex_state = 2}, + [241] = {.lex_state = 125, .external_lex_state = 2}, + [242] = {.lex_state = 125, .external_lex_state = 2}, + [243] = {.lex_state = 125, .external_lex_state = 2}, + [244] = {.lex_state = 125, .external_lex_state = 2}, + [245] = {.lex_state = 125, .external_lex_state = 2}, + [246] = {.lex_state = 125, .external_lex_state = 2}, + [247] = {.lex_state = 125, .external_lex_state = 2}, + [248] = {.lex_state = 125, .external_lex_state = 2}, + [249] = {.lex_state = 125, .external_lex_state = 2}, + [250] = {.lex_state = 125, .external_lex_state = 2}, + [251] = {.lex_state = 125, .external_lex_state = 2}, + [252] = {.lex_state = 125, .external_lex_state = 2}, + [253] = {.lex_state = 125, .external_lex_state = 2}, + [254] = {.lex_state = 125, .external_lex_state = 2}, + [255] = {.lex_state = 125, .external_lex_state = 2}, + [256] = {.lex_state = 125, .external_lex_state = 2}, + [257] = {.lex_state = 125, .external_lex_state = 2}, + [258] = {.lex_state = 125, .external_lex_state = 2}, + [259] = {.lex_state = 125, .external_lex_state = 2}, + [260] = {.lex_state = 125, .external_lex_state = 2}, + [261] = {.lex_state = 125, .external_lex_state = 2}, + [262] = {.lex_state = 125, .external_lex_state = 2}, + [263] = {.lex_state = 125, .external_lex_state = 2}, + [264] = {.lex_state = 125, .external_lex_state = 2}, + [265] = {.lex_state = 125, .external_lex_state = 2}, + [266] = {.lex_state = 125, .external_lex_state = 2}, + [267] = {.lex_state = 125, .external_lex_state = 2}, + [268] = {.lex_state = 125, .external_lex_state = 2}, + [269] = {.lex_state = 125, .external_lex_state = 2}, + [270] = {.lex_state = 125, .external_lex_state = 2}, + [271] = {.lex_state = 125, .external_lex_state = 2}, + [272] = {.lex_state = 125, .external_lex_state = 2}, + [273] = {.lex_state = 125, .external_lex_state = 2}, + [274] = {.lex_state = 125, .external_lex_state = 2}, + [275] = {.lex_state = 125, .external_lex_state = 2}, + [276] = {.lex_state = 125, .external_lex_state = 2}, + [277] = {.lex_state = 6, .external_lex_state = 4}, + [278] = {.lex_state = 6, .external_lex_state = 4}, + [279] = {.lex_state = 6, .external_lex_state = 4}, + [280] = {.lex_state = 6, .external_lex_state = 4}, + [281] = {.lex_state = 6, .external_lex_state = 4}, + [282] = {.lex_state = 6, .external_lex_state = 4}, + [283] = {.lex_state = 6, .external_lex_state = 4}, + [284] = {.lex_state = 6, .external_lex_state = 4}, + [285] = {.lex_state = 6, .external_lex_state = 4}, + [286] = {.lex_state = 6, .external_lex_state = 4}, + [287] = {.lex_state = 6, .external_lex_state = 4}, + [288] = {.lex_state = 6, .external_lex_state = 3}, + [289] = {.lex_state = 6, .external_lex_state = 3}, + [290] = {.lex_state = 6, .external_lex_state = 4}, + [291] = {.lex_state = 6, .external_lex_state = 4}, + [292] = {.lex_state = 125, .external_lex_state = 5}, + [293] = {.lex_state = 6, .external_lex_state = 3}, + [294] = {.lex_state = 6, .external_lex_state = 4}, + [295] = {.lex_state = 6, .external_lex_state = 4}, + [296] = {.lex_state = 125, .external_lex_state = 5}, + [297] = {.lex_state = 6, .external_lex_state = 4}, + [298] = {.lex_state = 6, .external_lex_state = 3}, + [299] = {.lex_state = 6, .external_lex_state = 4}, + [300] = {.lex_state = 6, .external_lex_state = 4}, + [301] = {.lex_state = 125, .external_lex_state = 2}, + [302] = {.lex_state = 6, .external_lex_state = 3}, + [303] = {.lex_state = 6, .external_lex_state = 4}, + [304] = {.lex_state = 6, .external_lex_state = 4}, + [305] = {.lex_state = 125, .external_lex_state = 2}, + [306] = {.lex_state = 6, .external_lex_state = 3}, + [307] = {.lex_state = 125, .external_lex_state = 2}, + [308] = {.lex_state = 6, .external_lex_state = 3}, + [309] = {.lex_state = 6, .external_lex_state = 4}, + [310] = {.lex_state = 6, .external_lex_state = 3}, + [311] = {.lex_state = 6, .external_lex_state = 4}, + [312] = {.lex_state = 6, .external_lex_state = 3}, + [313] = {.lex_state = 125, .external_lex_state = 2}, + [314] = {.lex_state = 125, .external_lex_state = 5}, + [315] = {.lex_state = 125, .external_lex_state = 2}, + [316] = {.lex_state = 6, .external_lex_state = 4}, + [317] = {.lex_state = 125, .external_lex_state = 5}, + [318] = {.lex_state = 125, .external_lex_state = 5}, + [319] = {.lex_state = 125, .external_lex_state = 5}, + [320] = {.lex_state = 125, .external_lex_state = 5}, + [321] = {.lex_state = 6, .external_lex_state = 3}, + [322] = {.lex_state = 6, .external_lex_state = 3}, + [323] = {.lex_state = 6, .external_lex_state = 3}, + [324] = {.lex_state = 125, .external_lex_state = 2}, + [325] = {.lex_state = 6, .external_lex_state = 4}, + [326] = {.lex_state = 125, .external_lex_state = 5}, + [327] = {.lex_state = 125, .external_lex_state = 5}, + [328] = {.lex_state = 125, .external_lex_state = 5}, + [329] = {.lex_state = 125, .external_lex_state = 5}, + [330] = {.lex_state = 125, .external_lex_state = 2}, + [331] = {.lex_state = 125, .external_lex_state = 5}, + [332] = {.lex_state = 125, .external_lex_state = 5}, + [333] = {.lex_state = 125, .external_lex_state = 2}, + [334] = {.lex_state = 125, .external_lex_state = 5}, + [335] = {.lex_state = 125, .external_lex_state = 5}, + [336] = {.lex_state = 125, .external_lex_state = 5}, + [337] = {.lex_state = 125, .external_lex_state = 5}, + [338] = {.lex_state = 125, .external_lex_state = 5}, + [339] = {.lex_state = 125, .external_lex_state = 2}, + [340] = {.lex_state = 125, .external_lex_state = 2}, + [341] = {.lex_state = 125, .external_lex_state = 2}, + [342] = {.lex_state = 125, .external_lex_state = 2}, + [343] = {.lex_state = 125, .external_lex_state = 2}, + [344] = {.lex_state = 125, .external_lex_state = 2}, + [345] = {.lex_state = 125, .external_lex_state = 2}, + [346] = {.lex_state = 125, .external_lex_state = 2}, + [347] = {.lex_state = 125, .external_lex_state = 2}, + [348] = {.lex_state = 125, .external_lex_state = 2}, + [349] = {.lex_state = 125, .external_lex_state = 2}, + [350] = {.lex_state = 125, .external_lex_state = 2}, + [351] = {.lex_state = 125, .external_lex_state = 2}, + [352] = {.lex_state = 125, .external_lex_state = 2}, + [353] = {.lex_state = 125, .external_lex_state = 2}, + [354] = {.lex_state = 125, .external_lex_state = 2}, + [355] = {.lex_state = 125, .external_lex_state = 2}, + [356] = {.lex_state = 125, .external_lex_state = 2}, + [357] = {.lex_state = 125, .external_lex_state = 2}, + [358] = {.lex_state = 125, .external_lex_state = 2}, + [359] = {.lex_state = 125, .external_lex_state = 2}, + [360] = {.lex_state = 125, .external_lex_state = 2}, + [361] = {.lex_state = 125, .external_lex_state = 2}, + [362] = {.lex_state = 125, .external_lex_state = 2}, + [363] = {.lex_state = 125, .external_lex_state = 2}, + [364] = {.lex_state = 125, .external_lex_state = 2}, + [365] = {.lex_state = 125, .external_lex_state = 2}, + [366] = {.lex_state = 125, .external_lex_state = 2}, + [367] = {.lex_state = 125, .external_lex_state = 2}, + [368] = {.lex_state = 125, .external_lex_state = 2}, + [369] = {.lex_state = 125, .external_lex_state = 2}, + [370] = {.lex_state = 125, .external_lex_state = 2}, + [371] = {.lex_state = 125, .external_lex_state = 2}, + [372] = {.lex_state = 125, .external_lex_state = 2}, + [373] = {.lex_state = 125, .external_lex_state = 2}, + [374] = {.lex_state = 125, .external_lex_state = 2}, + [375] = {.lex_state = 125, .external_lex_state = 2}, + [376] = {.lex_state = 125, .external_lex_state = 2}, + [377] = {.lex_state = 125, .external_lex_state = 2}, + [378] = {.lex_state = 125, .external_lex_state = 2}, + [379] = {.lex_state = 125, .external_lex_state = 2}, + [380] = {.lex_state = 125, .external_lex_state = 2}, + [381] = {.lex_state = 125, .external_lex_state = 2}, + [382] = {.lex_state = 125, .external_lex_state = 2}, + [383] = {.lex_state = 125, .external_lex_state = 2}, + [384] = {.lex_state = 125, .external_lex_state = 2}, + [385] = {.lex_state = 125, .external_lex_state = 2}, + [386] = {.lex_state = 125, .external_lex_state = 2}, + [387] = {.lex_state = 125, .external_lex_state = 2}, + [388] = {.lex_state = 125, .external_lex_state = 2}, + [389] = {.lex_state = 125, .external_lex_state = 2}, + [390] = {.lex_state = 125, .external_lex_state = 2}, + [391] = {.lex_state = 125, .external_lex_state = 2}, + [392] = {.lex_state = 125, .external_lex_state = 2}, + [393] = {.lex_state = 125, .external_lex_state = 2}, + [394] = {.lex_state = 6, .external_lex_state = 3}, + [395] = {.lex_state = 125, .external_lex_state = 2}, + [396] = {.lex_state = 125, .external_lex_state = 2}, + [397] = {.lex_state = 125, .external_lex_state = 2}, + [398] = {.lex_state = 6, .external_lex_state = 4}, + [399] = {.lex_state = 6, .external_lex_state = 4}, + [400] = {.lex_state = 6, .external_lex_state = 3}, + [401] = {.lex_state = 6, .external_lex_state = 3}, + [402] = {.lex_state = 6, .external_lex_state = 3}, + [403] = {.lex_state = 6, .external_lex_state = 3}, + [404] = {.lex_state = 6, .external_lex_state = 4}, + [405] = {.lex_state = 6, .external_lex_state = 3}, + [406] = {.lex_state = 6, .external_lex_state = 3}, + [407] = {.lex_state = 6, .external_lex_state = 4}, + [408] = {.lex_state = 6, .external_lex_state = 3}, + [409] = {.lex_state = 6, .external_lex_state = 3}, + [410] = {.lex_state = 6, .external_lex_state = 3}, + [411] = {.lex_state = 6, .external_lex_state = 3}, + [412] = {.lex_state = 125, .external_lex_state = 2}, + [413] = {.lex_state = 6, .external_lex_state = 4}, + [414] = {.lex_state = 6, .external_lex_state = 4}, + [415] = {.lex_state = 125, .external_lex_state = 2}, + [416] = {.lex_state = 6, .external_lex_state = 4}, + [417] = {.lex_state = 6, .external_lex_state = 4}, + [418] = {.lex_state = 6, .external_lex_state = 4}, + [419] = {.lex_state = 6, .external_lex_state = 4}, + [420] = {.lex_state = 125, .external_lex_state = 2}, + [421] = {.lex_state = 6, .external_lex_state = 3}, + [422] = {.lex_state = 6, .external_lex_state = 4}, + [423] = {.lex_state = 125, .external_lex_state = 2}, + [424] = {.lex_state = 6, .external_lex_state = 4}, + [425] = {.lex_state = 6, .external_lex_state = 3}, + [426] = {.lex_state = 6, .external_lex_state = 4}, + [427] = {.lex_state = 6, .external_lex_state = 4}, + [428] = {.lex_state = 6, .external_lex_state = 4}, + [429] = {.lex_state = 6, .external_lex_state = 4}, + [430] = {.lex_state = 6, .external_lex_state = 3}, + [431] = {.lex_state = 6, .external_lex_state = 3}, + [432] = {.lex_state = 6, .external_lex_state = 3}, + [433] = {.lex_state = 6, .external_lex_state = 3}, + [434] = {.lex_state = 6, .external_lex_state = 3}, + [435] = {.lex_state = 6, .external_lex_state = 3}, + [436] = {.lex_state = 6, .external_lex_state = 4}, + [437] = {.lex_state = 6, .external_lex_state = 4}, + [438] = {.lex_state = 6, .external_lex_state = 3}, + [439] = {.lex_state = 6, .external_lex_state = 3}, + [440] = {.lex_state = 6, .external_lex_state = 3}, + [441] = {.lex_state = 6, .external_lex_state = 3}, + [442] = {.lex_state = 6, .external_lex_state = 3}, + [443] = {.lex_state = 6, .external_lex_state = 3}, + [444] = {.lex_state = 6, .external_lex_state = 3}, + [445] = {.lex_state = 6, .external_lex_state = 3}, + [446] = {.lex_state = 6, .external_lex_state = 3}, + [447] = {.lex_state = 6, .external_lex_state = 3}, + [448] = {.lex_state = 124, .external_lex_state = 3}, + [449] = {.lex_state = 124, .external_lex_state = 3}, + [450] = {.lex_state = 124, .external_lex_state = 4}, + [451] = {.lex_state = 124, .external_lex_state = 3}, + [452] = {.lex_state = 124, .external_lex_state = 3}, + [453] = {.lex_state = 124, .external_lex_state = 3}, + [454] = {.lex_state = 124, .external_lex_state = 3}, + [455] = {.lex_state = 124, .external_lex_state = 3}, + [456] = {.lex_state = 124, .external_lex_state = 3}, + [457] = {.lex_state = 124, .external_lex_state = 4}, + [458] = {.lex_state = 124, .external_lex_state = 4}, + [459] = {.lex_state = 124, .external_lex_state = 3}, + [460] = {.lex_state = 124, .external_lex_state = 3}, + [461] = {.lex_state = 124, .external_lex_state = 3}, + [462] = {.lex_state = 124, .external_lex_state = 3}, + [463] = {.lex_state = 124, .external_lex_state = 3}, + [464] = {.lex_state = 124, .external_lex_state = 3}, + [465] = {.lex_state = 124, .external_lex_state = 3}, + [466] = {.lex_state = 124, .external_lex_state = 3}, + [467] = {.lex_state = 124, .external_lex_state = 3}, + [468] = {.lex_state = 124, .external_lex_state = 3}, + [469] = {.lex_state = 124, .external_lex_state = 3}, + [470] = {.lex_state = 124, .external_lex_state = 3}, + [471] = {.lex_state = 124, .external_lex_state = 3}, + [472] = {.lex_state = 7, .external_lex_state = 3}, + [473] = {.lex_state = 124, .external_lex_state = 3}, + [474] = {.lex_state = 124, .external_lex_state = 3}, + [475] = {.lex_state = 124, .external_lex_state = 3}, + [476] = {.lex_state = 124, .external_lex_state = 3}, + [477] = {.lex_state = 124, .external_lex_state = 3}, + [478] = {.lex_state = 124, .external_lex_state = 3}, + [479] = {.lex_state = 124, .external_lex_state = 3}, + [480] = {.lex_state = 124, .external_lex_state = 3}, + [481] = {.lex_state = 124, .external_lex_state = 3}, + [482] = {.lex_state = 124, .external_lex_state = 3}, + [483] = {.lex_state = 124, .external_lex_state = 3}, + [484] = {.lex_state = 124, .external_lex_state = 3}, + [485] = {.lex_state = 124, .external_lex_state = 3}, + [486] = {.lex_state = 124, .external_lex_state = 3}, + [487] = {.lex_state = 124, .external_lex_state = 3}, + [488] = {.lex_state = 124, .external_lex_state = 3}, + [489] = {.lex_state = 124, .external_lex_state = 3}, + [490] = {.lex_state = 124, .external_lex_state = 3}, + [491] = {.lex_state = 124, .external_lex_state = 3}, + [492] = {.lex_state = 124, .external_lex_state = 3}, + [493] = {.lex_state = 124, .external_lex_state = 3}, + [494] = {.lex_state = 124, .external_lex_state = 3}, + [495] = {.lex_state = 124, .external_lex_state = 3}, + [496] = {.lex_state = 124, .external_lex_state = 3}, + [497] = {.lex_state = 124, .external_lex_state = 3}, + [498] = {.lex_state = 124, .external_lex_state = 3}, + [499] = {.lex_state = 124, .external_lex_state = 3}, + [500] = {.lex_state = 124, .external_lex_state = 3}, + [501] = {.lex_state = 124, .external_lex_state = 3}, + [502] = {.lex_state = 124, .external_lex_state = 3}, + [503] = {.lex_state = 124, .external_lex_state = 3}, + [504] = {.lex_state = 124, .external_lex_state = 3}, + [505] = {.lex_state = 124, .external_lex_state = 3}, + [506] = {.lex_state = 124, .external_lex_state = 3}, + [507] = {.lex_state = 124, .external_lex_state = 3}, + [508] = {.lex_state = 124, .external_lex_state = 3}, + [509] = {.lex_state = 124, .external_lex_state = 3}, + [510] = {.lex_state = 124, .external_lex_state = 3}, + [511] = {.lex_state = 124, .external_lex_state = 3}, + [512] = {.lex_state = 124, .external_lex_state = 3}, + [513] = {.lex_state = 124, .external_lex_state = 3}, + [514] = {.lex_state = 124, .external_lex_state = 3}, + [515] = {.lex_state = 124, .external_lex_state = 3}, + [516] = {.lex_state = 124, .external_lex_state = 3}, + [517] = {.lex_state = 124, .external_lex_state = 4}, + [518] = {.lex_state = 124, .external_lex_state = 3}, + [519] = {.lex_state = 124, .external_lex_state = 3}, + [520] = {.lex_state = 124, .external_lex_state = 3}, + [521] = {.lex_state = 124, .external_lex_state = 3}, + [522] = {.lex_state = 124, .external_lex_state = 3}, + [523] = {.lex_state = 124, .external_lex_state = 3}, + [524] = {.lex_state = 124, .external_lex_state = 3}, + [525] = {.lex_state = 124, .external_lex_state = 3}, + [526] = {.lex_state = 124, .external_lex_state = 3}, + [527] = {.lex_state = 124, .external_lex_state = 3}, + [528] = {.lex_state = 124, .external_lex_state = 3}, + [529] = {.lex_state = 124, .external_lex_state = 3}, + [530] = {.lex_state = 124, .external_lex_state = 3}, + [531] = {.lex_state = 124, .external_lex_state = 3}, + [532] = {.lex_state = 124, .external_lex_state = 3}, + [533] = {.lex_state = 124, .external_lex_state = 3}, + [534] = {.lex_state = 124, .external_lex_state = 3}, + [535] = {.lex_state = 124, .external_lex_state = 3}, + [536] = {.lex_state = 124, .external_lex_state = 3}, + [537] = {.lex_state = 124, .external_lex_state = 3}, + [538] = {.lex_state = 124, .external_lex_state = 3}, + [539] = {.lex_state = 124, .external_lex_state = 4}, + [540] = {.lex_state = 124, .external_lex_state = 3}, + [541] = {.lex_state = 124, .external_lex_state = 3}, + [542] = {.lex_state = 124, .external_lex_state = 3}, + [543] = {.lex_state = 124, .external_lex_state = 4}, + [544] = {.lex_state = 124, .external_lex_state = 3}, + [545] = {.lex_state = 124, .external_lex_state = 4}, + [546] = {.lex_state = 124, .external_lex_state = 4}, + [547] = {.lex_state = 124, .external_lex_state = 4}, + [548] = {.lex_state = 124, .external_lex_state = 4}, + [549] = {.lex_state = 124, .external_lex_state = 4}, + [550] = {.lex_state = 124, .external_lex_state = 4}, + [551] = {.lex_state = 124, .external_lex_state = 4}, + [552] = {.lex_state = 124, .external_lex_state = 4}, + [553] = {.lex_state = 124, .external_lex_state = 4}, + [554] = {.lex_state = 124, .external_lex_state = 4}, + [555] = {.lex_state = 124, .external_lex_state = 4}, + [556] = {.lex_state = 124, .external_lex_state = 4}, + [557] = {.lex_state = 124, .external_lex_state = 4}, + [558] = {.lex_state = 124, .external_lex_state = 4}, + [559] = {.lex_state = 124, .external_lex_state = 4}, + [560] = {.lex_state = 124, .external_lex_state = 4}, + [561] = {.lex_state = 124, .external_lex_state = 4}, + [562] = {.lex_state = 124, .external_lex_state = 4}, + [563] = {.lex_state = 7, .external_lex_state = 4}, + [564] = {.lex_state = 124, .external_lex_state = 4}, + [565] = {.lex_state = 124, .external_lex_state = 4}, + [566] = {.lex_state = 124, .external_lex_state = 4}, + [567] = {.lex_state = 124, .external_lex_state = 3}, + [568] = {.lex_state = 124, .external_lex_state = 4}, + [569] = {.lex_state = 124, .external_lex_state = 4}, + [570] = {.lex_state = 124, .external_lex_state = 4}, + [571] = {.lex_state = 124, .external_lex_state = 4}, + [572] = {.lex_state = 124, .external_lex_state = 4}, + [573] = {.lex_state = 124, .external_lex_state = 4}, + [574] = {.lex_state = 124, .external_lex_state = 4}, + [575] = {.lex_state = 124, .external_lex_state = 4}, + [576] = {.lex_state = 124, .external_lex_state = 4}, + [577] = {.lex_state = 124, .external_lex_state = 4}, + [578] = {.lex_state = 124, .external_lex_state = 4}, + [579] = {.lex_state = 124, .external_lex_state = 4}, + [580] = {.lex_state = 124, .external_lex_state = 4}, + [581] = {.lex_state = 124, .external_lex_state = 4}, + [582] = {.lex_state = 124, .external_lex_state = 4}, + [583] = {.lex_state = 124, .external_lex_state = 4}, + [584] = {.lex_state = 124, .external_lex_state = 4}, + [585] = {.lex_state = 124, .external_lex_state = 4}, + [586] = {.lex_state = 124, .external_lex_state = 4}, + [587] = {.lex_state = 124, .external_lex_state = 4}, + [588] = {.lex_state = 124, .external_lex_state = 4}, + [589] = {.lex_state = 124, .external_lex_state = 4}, + [590] = {.lex_state = 124, .external_lex_state = 4}, + [591] = {.lex_state = 124, .external_lex_state = 4}, + [592] = {.lex_state = 124, .external_lex_state = 3}, + [593] = {.lex_state = 124, .external_lex_state = 4}, + [594] = {.lex_state = 124, .external_lex_state = 4}, + [595] = {.lex_state = 124, .external_lex_state = 4}, + [596] = {.lex_state = 124, .external_lex_state = 4}, + [597] = {.lex_state = 124, .external_lex_state = 4}, + [598] = {.lex_state = 124, .external_lex_state = 4}, + [599] = {.lex_state = 124, .external_lex_state = 4}, + [600] = {.lex_state = 124, .external_lex_state = 4}, + [601] = {.lex_state = 124, .external_lex_state = 4}, + [602] = {.lex_state = 124, .external_lex_state = 4}, + [603] = {.lex_state = 124, .external_lex_state = 4}, + [604] = {.lex_state = 124, .external_lex_state = 4}, + [605] = {.lex_state = 124, .external_lex_state = 4}, + [606] = {.lex_state = 124, .external_lex_state = 4}, + [607] = {.lex_state = 124, .external_lex_state = 4}, + [608] = {.lex_state = 124, .external_lex_state = 4}, + [609] = {.lex_state = 124, .external_lex_state = 4}, + [610] = {.lex_state = 124, .external_lex_state = 4}, + [611] = {.lex_state = 124, .external_lex_state = 4}, + [612] = {.lex_state = 124, .external_lex_state = 4}, + [613] = {.lex_state = 124, .external_lex_state = 4}, + [614] = {.lex_state = 124, .external_lex_state = 4}, + [615] = {.lex_state = 124, .external_lex_state = 4}, + [616] = {.lex_state = 124, .external_lex_state = 4}, + [617] = {.lex_state = 124, .external_lex_state = 4}, + [618] = {.lex_state = 124, .external_lex_state = 4}, + [619] = {.lex_state = 124, .external_lex_state = 4}, + [620] = {.lex_state = 124, .external_lex_state = 4}, + [621] = {.lex_state = 124, .external_lex_state = 4}, + [622] = {.lex_state = 124, .external_lex_state = 4}, + [623] = {.lex_state = 124, .external_lex_state = 4}, + [624] = {.lex_state = 124, .external_lex_state = 4}, + [625] = {.lex_state = 124, .external_lex_state = 4}, + [626] = {.lex_state = 124, .external_lex_state = 4}, + [627] = {.lex_state = 124, .external_lex_state = 4}, + [628] = {.lex_state = 124, .external_lex_state = 4}, + [629] = {.lex_state = 124, .external_lex_state = 4}, + [630] = {.lex_state = 124, .external_lex_state = 3}, + [631] = {.lex_state = 124, .external_lex_state = 3}, + [632] = {.lex_state = 124, .external_lex_state = 3}, + [633] = {.lex_state = 124, .external_lex_state = 4}, + [634] = {.lex_state = 124, .external_lex_state = 4}, + [635] = {.lex_state = 124, .external_lex_state = 4}, + [636] = {.lex_state = 124, .external_lex_state = 4}, + [637] = {.lex_state = 7, .external_lex_state = 4}, + [638] = {.lex_state = 124, .external_lex_state = 4}, + [639] = {.lex_state = 124, .external_lex_state = 4}, + [640] = {.lex_state = 124, .external_lex_state = 4}, + [641] = {.lex_state = 124, .external_lex_state = 4}, + [642] = {.lex_state = 124, .external_lex_state = 4}, + [643] = {.lex_state = 124, .external_lex_state = 4}, + [644] = {.lex_state = 124, .external_lex_state = 4}, + [645] = {.lex_state = 124, .external_lex_state = 4}, + [646] = {.lex_state = 124, .external_lex_state = 4}, + [647] = {.lex_state = 124, .external_lex_state = 4}, + [648] = {.lex_state = 124, .external_lex_state = 4}, + [649] = {.lex_state = 124, .external_lex_state = 4}, + [650] = {.lex_state = 124, .external_lex_state = 4}, + [651] = {.lex_state = 124, .external_lex_state = 4}, + [652] = {.lex_state = 124, .external_lex_state = 4}, + [653] = {.lex_state = 124, .external_lex_state = 3}, + [654] = {.lex_state = 124, .external_lex_state = 4}, + [655] = {.lex_state = 124, .external_lex_state = 4}, + [656] = {.lex_state = 124, .external_lex_state = 4}, + [657] = {.lex_state = 124, .external_lex_state = 4}, + [658] = {.lex_state = 124, .external_lex_state = 4}, + [659] = {.lex_state = 124, .external_lex_state = 4}, + [660] = {.lex_state = 124, .external_lex_state = 4}, + [661] = {.lex_state = 124, .external_lex_state = 4}, + [662] = {.lex_state = 124, .external_lex_state = 4}, + [663] = {.lex_state = 124, .external_lex_state = 4}, + [664] = {.lex_state = 124, .external_lex_state = 3}, + [665] = {.lex_state = 124, .external_lex_state = 3}, + [666] = {.lex_state = 124, .external_lex_state = 3}, + [667] = {.lex_state = 124, .external_lex_state = 4}, + [668] = {.lex_state = 124, .external_lex_state = 3}, + [669] = {.lex_state = 124, .external_lex_state = 3}, + [670] = {.lex_state = 124, .external_lex_state = 4}, + [671] = {.lex_state = 124, .external_lex_state = 4}, + [672] = {.lex_state = 124, .external_lex_state = 4}, + [673] = {.lex_state = 124, .external_lex_state = 3}, + [674] = {.lex_state = 124, .external_lex_state = 4}, + [675] = {.lex_state = 124, .external_lex_state = 4}, + [676] = {.lex_state = 124, .external_lex_state = 3}, + [677] = {.lex_state = 124, .external_lex_state = 4}, + [678] = {.lex_state = 124, .external_lex_state = 3}, + [679] = {.lex_state = 124, .external_lex_state = 4}, + [680] = {.lex_state = 124, .external_lex_state = 3}, + [681] = {.lex_state = 124, .external_lex_state = 4}, + [682] = {.lex_state = 124, .external_lex_state = 3}, + [683] = {.lex_state = 124, .external_lex_state = 3}, + [684] = {.lex_state = 124, .external_lex_state = 3}, + [685] = {.lex_state = 124, .external_lex_state = 3}, + [686] = {.lex_state = 124, .external_lex_state = 3}, + [687] = {.lex_state = 124, .external_lex_state = 3}, + [688] = {.lex_state = 124, .external_lex_state = 3}, + [689] = {.lex_state = 124, .external_lex_state = 3}, + [690] = {.lex_state = 124, .external_lex_state = 3}, + [691] = {.lex_state = 124, .external_lex_state = 3}, + [692] = {.lex_state = 124, .external_lex_state = 3}, + [693] = {.lex_state = 124, .external_lex_state = 3}, + [694] = {.lex_state = 124, .external_lex_state = 3}, + [695] = {.lex_state = 124, .external_lex_state = 3}, + [696] = {.lex_state = 124, .external_lex_state = 3}, + [697] = {.lex_state = 124, .external_lex_state = 3}, + [698] = {.lex_state = 124, .external_lex_state = 3}, + [699] = {.lex_state = 124, .external_lex_state = 3}, + [700] = {.lex_state = 124, .external_lex_state = 3}, + [701] = {.lex_state = 124, .external_lex_state = 3}, + [702] = {.lex_state = 124, .external_lex_state = 3}, + [703] = {.lex_state = 124, .external_lex_state = 3}, + [704] = {.lex_state = 124, .external_lex_state = 3}, + [705] = {.lex_state = 124, .external_lex_state = 3}, + [706] = {.lex_state = 124, .external_lex_state = 3}, + [707] = {.lex_state = 124, .external_lex_state = 3}, + [708] = {.lex_state = 124, .external_lex_state = 3}, + [709] = {.lex_state = 124, .external_lex_state = 3}, + [710] = {.lex_state = 124, .external_lex_state = 3}, + [711] = {.lex_state = 124, .external_lex_state = 3}, + [712] = {.lex_state = 124, .external_lex_state = 3}, + [713] = {.lex_state = 124, .external_lex_state = 3}, + [714] = {.lex_state = 124, .external_lex_state = 3}, + [715] = {.lex_state = 124, .external_lex_state = 3}, + [716] = {.lex_state = 124, .external_lex_state = 3}, + [717] = {.lex_state = 124, .external_lex_state = 3}, + [718] = {.lex_state = 124, .external_lex_state = 3}, + [719] = {.lex_state = 124, .external_lex_state = 3}, + [720] = {.lex_state = 124, .external_lex_state = 3}, + [721] = {.lex_state = 124, .external_lex_state = 3}, + [722] = {.lex_state = 124, .external_lex_state = 3}, + [723] = {.lex_state = 124, .external_lex_state = 3}, + [724] = {.lex_state = 124, .external_lex_state = 3}, + [725] = {.lex_state = 124, .external_lex_state = 3}, + [726] = {.lex_state = 124, .external_lex_state = 3}, + [727] = {.lex_state = 124, .external_lex_state = 3}, + [728] = {.lex_state = 124, .external_lex_state = 3}, + [729] = {.lex_state = 124, .external_lex_state = 3}, + [730] = {.lex_state = 124, .external_lex_state = 3}, + [731] = {.lex_state = 124, .external_lex_state = 3}, + [732] = {.lex_state = 124, .external_lex_state = 3}, + [733] = {.lex_state = 124, .external_lex_state = 3}, + [734] = {.lex_state = 124, .external_lex_state = 3}, + [735] = {.lex_state = 124, .external_lex_state = 3}, + [736] = {.lex_state = 124, .external_lex_state = 3}, + [737] = {.lex_state = 124, .external_lex_state = 3}, + [738] = {.lex_state = 124, .external_lex_state = 3}, + [739] = {.lex_state = 124, .external_lex_state = 3}, + [740] = {.lex_state = 124, .external_lex_state = 3}, + [741] = {.lex_state = 4, .external_lex_state = 2}, + [742] = {.lex_state = 124, .external_lex_state = 3}, + [743] = {.lex_state = 124, .external_lex_state = 3}, + [744] = {.lex_state = 124, .external_lex_state = 3}, + [745] = {.lex_state = 124, .external_lex_state = 3}, + [746] = {.lex_state = 124, .external_lex_state = 3}, + [747] = {.lex_state = 4, .external_lex_state = 2}, + [748] = {.lex_state = 124, .external_lex_state = 3}, + [749] = {.lex_state = 124, .external_lex_state = 3}, + [750] = {.lex_state = 124, .external_lex_state = 3}, + [751] = {.lex_state = 4, .external_lex_state = 2}, + [752] = {.lex_state = 124, .external_lex_state = 3}, + [753] = {.lex_state = 4, .external_lex_state = 2}, + [754] = {.lex_state = 124, .external_lex_state = 3}, + [755] = {.lex_state = 4, .external_lex_state = 2}, + [756] = {.lex_state = 124, .external_lex_state = 3}, + [757] = {.lex_state = 124, .external_lex_state = 3}, + [758] = {.lex_state = 124, .external_lex_state = 4}, + [759] = {.lex_state = 124, .external_lex_state = 3}, + [760] = {.lex_state = 124, .external_lex_state = 3}, + [761] = {.lex_state = 124, .external_lex_state = 3}, + [762] = {.lex_state = 124, .external_lex_state = 3}, + [763] = {.lex_state = 4, .external_lex_state = 2}, + [764] = {.lex_state = 7, .external_lex_state = 3}, + [765] = {.lex_state = 124, .external_lex_state = 3}, + [766] = {.lex_state = 124, .external_lex_state = 3}, + [767] = {.lex_state = 124, .external_lex_state = 3}, + [768] = {.lex_state = 124, .external_lex_state = 3}, + [769] = {.lex_state = 124, .external_lex_state = 3}, + [770] = {.lex_state = 124, .external_lex_state = 3}, + [771] = {.lex_state = 124, .external_lex_state = 4}, + [772] = {.lex_state = 124, .external_lex_state = 3}, + [773] = {.lex_state = 124, .external_lex_state = 3}, + [774] = {.lex_state = 124, .external_lex_state = 3}, + [775] = {.lex_state = 124, .external_lex_state = 3}, + [776] = {.lex_state = 124, .external_lex_state = 3}, + [777] = {.lex_state = 124, .external_lex_state = 3}, + [778] = {.lex_state = 124, .external_lex_state = 3}, + [779] = {.lex_state = 124, .external_lex_state = 3}, + [780] = {.lex_state = 124, .external_lex_state = 3}, + [781] = {.lex_state = 124, .external_lex_state = 3}, + [782] = {.lex_state = 124, .external_lex_state = 3}, + [783] = {.lex_state = 124, .external_lex_state = 3}, + [784] = {.lex_state = 124, .external_lex_state = 3}, + [785] = {.lex_state = 4, .external_lex_state = 2}, + [786] = {.lex_state = 124, .external_lex_state = 3}, + [787] = {.lex_state = 4, .external_lex_state = 2}, + [788] = {.lex_state = 4, .external_lex_state = 2}, + [789] = {.lex_state = 4, .external_lex_state = 2}, + [790] = {.lex_state = 4, .external_lex_state = 2}, + [791] = {.lex_state = 4, .external_lex_state = 2}, + [792] = {.lex_state = 4, .external_lex_state = 2}, + [793] = {.lex_state = 4, .external_lex_state = 2}, + [794] = {.lex_state = 125, .external_lex_state = 2}, + [795] = {.lex_state = 4, .external_lex_state = 2}, + [796] = {.lex_state = 4, .external_lex_state = 2}, + [797] = {.lex_state = 125, .external_lex_state = 2}, + [798] = {.lex_state = 125, .external_lex_state = 2}, + [799] = {.lex_state = 125, .external_lex_state = 2}, + [800] = {.lex_state = 125, .external_lex_state = 2}, + [801] = {.lex_state = 125, .external_lex_state = 2}, + [802] = {.lex_state = 125, .external_lex_state = 2}, + [803] = {.lex_state = 125, .external_lex_state = 2}, + [804] = {.lex_state = 125, .external_lex_state = 2}, + [805] = {.lex_state = 125, .external_lex_state = 2}, + [806] = {.lex_state = 125, .external_lex_state = 2}, + [807] = {.lex_state = 125, .external_lex_state = 2}, + [808] = {.lex_state = 125, .external_lex_state = 2}, + [809] = {.lex_state = 125, .external_lex_state = 2}, + [810] = {.lex_state = 125, .external_lex_state = 2}, + [811] = {.lex_state = 125, .external_lex_state = 2}, + [812] = {.lex_state = 125, .external_lex_state = 2}, + [813] = {.lex_state = 125, .external_lex_state = 5}, + [814] = {.lex_state = 125, .external_lex_state = 2}, + [815] = {.lex_state = 125, .external_lex_state = 2}, + [816] = {.lex_state = 125, .external_lex_state = 2}, + [817] = {.lex_state = 125, .external_lex_state = 2}, + [818] = {.lex_state = 125, .external_lex_state = 2}, + [819] = {.lex_state = 125, .external_lex_state = 2}, + [820] = {.lex_state = 125, .external_lex_state = 2}, + [821] = {.lex_state = 125, .external_lex_state = 2}, + [822] = {.lex_state = 4, .external_lex_state = 2}, + [823] = {.lex_state = 125, .external_lex_state = 2}, + [824] = {.lex_state = 125, .external_lex_state = 2}, + [825] = {.lex_state = 125, .external_lex_state = 5}, + [826] = {.lex_state = 125, .external_lex_state = 2}, + [827] = {.lex_state = 4, .external_lex_state = 2}, + [828] = {.lex_state = 125, .external_lex_state = 2}, + [829] = {.lex_state = 125, .external_lex_state = 5}, + [830] = {.lex_state = 4, .external_lex_state = 2}, + [831] = {.lex_state = 125, .external_lex_state = 5}, + [832] = {.lex_state = 125, .external_lex_state = 5}, + [833] = {.lex_state = 125, .external_lex_state = 5}, + [834] = {.lex_state = 125, .external_lex_state = 5}, + [835] = {.lex_state = 9, .external_lex_state = 2}, + [836] = {.lex_state = 125, .external_lex_state = 5}, + [837] = {.lex_state = 125, .external_lex_state = 5}, + [838] = {.lex_state = 125, .external_lex_state = 5}, + [839] = {.lex_state = 125, .external_lex_state = 5}, + [840] = {.lex_state = 125, .external_lex_state = 5}, + [841] = {.lex_state = 125, .external_lex_state = 2}, + [842] = {.lex_state = 4, .external_lex_state = 2}, + [843] = {.lex_state = 4, .external_lex_state = 2}, + [844] = {.lex_state = 4, .external_lex_state = 2}, + [845] = {.lex_state = 4, .external_lex_state = 2}, + [846] = {.lex_state = 4, .external_lex_state = 2}, + [847] = {.lex_state = 4, .external_lex_state = 2}, + [848] = {.lex_state = 4, .external_lex_state = 2}, + [849] = {.lex_state = 4, .external_lex_state = 2}, + [850] = {.lex_state = 4, .external_lex_state = 2}, + [851] = {.lex_state = 4, .external_lex_state = 2}, + [852] = {.lex_state = 4, .external_lex_state = 2}, + [853] = {.lex_state = 4, .external_lex_state = 2}, + [854] = {.lex_state = 4, .external_lex_state = 2}, + [855] = {.lex_state = 4, .external_lex_state = 2}, + [856] = {.lex_state = 4, .external_lex_state = 5}, + [857] = {.lex_state = 4, .external_lex_state = 2}, + [858] = {.lex_state = 4, .external_lex_state = 2}, + [859] = {.lex_state = 4, .external_lex_state = 2}, + [860] = {.lex_state = 4, .external_lex_state = 2}, + [861] = {.lex_state = 4, .external_lex_state = 2}, + [862] = {.lex_state = 4, .external_lex_state = 2}, + [863] = {.lex_state = 4, .external_lex_state = 2}, + [864] = {.lex_state = 4, .external_lex_state = 2}, + [865] = {.lex_state = 4, .external_lex_state = 2}, + [866] = {.lex_state = 4, .external_lex_state = 2}, + [867] = {.lex_state = 4, .external_lex_state = 2}, + [868] = {.lex_state = 4, .external_lex_state = 2}, + [869] = {.lex_state = 4, .external_lex_state = 5}, + [870] = {.lex_state = 4, .external_lex_state = 2}, + [871] = {.lex_state = 4, .external_lex_state = 2}, + [872] = {.lex_state = 4, .external_lex_state = 2}, + [873] = {.lex_state = 4, .external_lex_state = 2}, + [874] = {.lex_state = 9, .external_lex_state = 2}, + [875] = {.lex_state = 4, .external_lex_state = 2}, + [876] = {.lex_state = 4, .external_lex_state = 2}, + [877] = {.lex_state = 125, .external_lex_state = 2}, + [878] = {.lex_state = 4, .external_lex_state = 2}, + [879] = {.lex_state = 125, .external_lex_state = 2}, + [880] = {.lex_state = 4, .external_lex_state = 2}, + [881] = {.lex_state = 125, .external_lex_state = 2}, + [882] = {.lex_state = 4, .external_lex_state = 2}, + [883] = {.lex_state = 4, .external_lex_state = 2}, + [884] = {.lex_state = 125, .external_lex_state = 2}, + [885] = {.lex_state = 4, .external_lex_state = 2}, + [886] = {.lex_state = 125, .external_lex_state = 2}, + [887] = {.lex_state = 125, .external_lex_state = 2}, + [888] = {.lex_state = 4, .external_lex_state = 2}, + [889] = {.lex_state = 125, .external_lex_state = 2}, + [890] = {.lex_state = 4, .external_lex_state = 2}, + [891] = {.lex_state = 125, .external_lex_state = 2}, + [892] = {.lex_state = 125, .external_lex_state = 2}, + [893] = {.lex_state = 125, .external_lex_state = 2}, + [894] = {.lex_state = 125, .external_lex_state = 2}, + [895] = {.lex_state = 125, .external_lex_state = 2}, + [896] = {.lex_state = 125, .external_lex_state = 2}, + [897] = {.lex_state = 125, .external_lex_state = 2}, + [898] = {.lex_state = 125, .external_lex_state = 2}, + [899] = {.lex_state = 125, .external_lex_state = 2}, + [900] = {.lex_state = 125, .external_lex_state = 2}, + [901] = {.lex_state = 125, .external_lex_state = 2}, + [902] = {.lex_state = 125, .external_lex_state = 2}, + [903] = {.lex_state = 125, .external_lex_state = 2}, + [904] = {.lex_state = 125, .external_lex_state = 2}, + [905] = {.lex_state = 125, .external_lex_state = 2}, + [906] = {.lex_state = 125, .external_lex_state = 2}, + [907] = {.lex_state = 125, .external_lex_state = 2}, + [908] = {.lex_state = 4, .external_lex_state = 2}, + [909] = {.lex_state = 125, .external_lex_state = 2}, + [910] = {.lex_state = 125, .external_lex_state = 2}, + [911] = {.lex_state = 125, .external_lex_state = 2}, + [912] = {.lex_state = 125, .external_lex_state = 2}, + [913] = {.lex_state = 125, .external_lex_state = 2}, + [914] = {.lex_state = 125, .external_lex_state = 2}, + [915] = {.lex_state = 125, .external_lex_state = 2}, + [916] = {.lex_state = 125, .external_lex_state = 2}, + [917] = {.lex_state = 4, .external_lex_state = 2}, + [918] = {.lex_state = 125, .external_lex_state = 2}, + [919] = {.lex_state = 125, .external_lex_state = 2}, + [920] = {.lex_state = 125, .external_lex_state = 2}, + [921] = {.lex_state = 4, .external_lex_state = 2}, + [922] = {.lex_state = 4, .external_lex_state = 2}, + [923] = {.lex_state = 125, .external_lex_state = 2}, + [924] = {.lex_state = 125, .external_lex_state = 2}, + [925] = {.lex_state = 125, .external_lex_state = 2}, + [926] = {.lex_state = 4, .external_lex_state = 2}, + [927] = {.lex_state = 125, .external_lex_state = 2}, + [928] = {.lex_state = 125, .external_lex_state = 2}, + [929] = {.lex_state = 125, .external_lex_state = 2}, + [930] = {.lex_state = 125, .external_lex_state = 2}, + [931] = {.lex_state = 125, .external_lex_state = 2}, + [932] = {.lex_state = 125, .external_lex_state = 2}, + [933] = {.lex_state = 4, .external_lex_state = 2}, + [934] = {.lex_state = 125, .external_lex_state = 2}, + [935] = {.lex_state = 6, .external_lex_state = 2}, + [936] = {.lex_state = 125, .external_lex_state = 2}, + [937] = {.lex_state = 125, .external_lex_state = 2}, + [938] = {.lex_state = 125, .external_lex_state = 2}, + [939] = {.lex_state = 6, .external_lex_state = 2}, + [940] = {.lex_state = 6, .external_lex_state = 2}, + [941] = {.lex_state = 125, .external_lex_state = 2}, + [942] = {.lex_state = 125, .external_lex_state = 2}, + [943] = {.lex_state = 125, .external_lex_state = 2}, + [944] = {.lex_state = 125, .external_lex_state = 2}, + [945] = {.lex_state = 125, .external_lex_state = 2}, + [946] = {.lex_state = 6, .external_lex_state = 2}, + [947] = {.lex_state = 125, .external_lex_state = 2}, + [948] = {.lex_state = 125, .external_lex_state = 2}, + [949] = {.lex_state = 125, .external_lex_state = 2}, + [950] = {.lex_state = 125, .external_lex_state = 2}, + [951] = {.lex_state = 125, .external_lex_state = 2}, + [952] = {.lex_state = 125, .external_lex_state = 2}, + [953] = {.lex_state = 125, .external_lex_state = 2}, + [954] = {.lex_state = 6, .external_lex_state = 2}, + [955] = {.lex_state = 125, .external_lex_state = 2}, + [956] = {.lex_state = 125, .external_lex_state = 2}, + [957] = {.lex_state = 125, .external_lex_state = 2}, + [958] = {.lex_state = 125, .external_lex_state = 2}, + [959] = {.lex_state = 125, .external_lex_state = 2}, + [960] = {.lex_state = 125, .external_lex_state = 2}, + [961] = {.lex_state = 9, .external_lex_state = 6}, + [962] = {.lex_state = 9, .external_lex_state = 6}, + [963] = {.lex_state = 9, .external_lex_state = 6}, + [964] = {.lex_state = 9, .external_lex_state = 6}, + [965] = {.lex_state = 124, .external_lex_state = 2}, + [966] = {.lex_state = 9, .external_lex_state = 6}, + [967] = {.lex_state = 9, .external_lex_state = 6}, + [968] = {.lex_state = 9, .external_lex_state = 6}, + [969] = {.lex_state = 9, .external_lex_state = 6}, + [970] = {.lex_state = 31, .external_lex_state = 2}, + [971] = {.lex_state = 31, .external_lex_state = 2}, + [972] = {.lex_state = 9, .external_lex_state = 6}, + [973] = {.lex_state = 31, .external_lex_state = 2}, + [974] = {.lex_state = 31, .external_lex_state = 2}, + [975] = {.lex_state = 31, .external_lex_state = 2}, + [976] = {.lex_state = 31, .external_lex_state = 2}, + [977] = {.lex_state = 31, .external_lex_state = 2}, + [978] = {.lex_state = 31, .external_lex_state = 2}, + [979] = {.lex_state = 31, .external_lex_state = 2}, + [980] = {.lex_state = 31, .external_lex_state = 2}, + [981] = {.lex_state = 31, .external_lex_state = 2}, + [982] = {.lex_state = 31, .external_lex_state = 2}, + [983] = {.lex_state = 31, .external_lex_state = 2}, + [984] = {.lex_state = 31, .external_lex_state = 2}, + [985] = {.lex_state = 125, .external_lex_state = 2}, + [986] = {.lex_state = 31, .external_lex_state = 2}, + [987] = {.lex_state = 31, .external_lex_state = 2}, + [988] = {.lex_state = 31, .external_lex_state = 2}, + [989] = {.lex_state = 31, .external_lex_state = 2}, + [990] = {.lex_state = 31, .external_lex_state = 2}, + [991] = {.lex_state = 31, .external_lex_state = 2}, + [992] = {.lex_state = 31, .external_lex_state = 2}, + [993] = {.lex_state = 31, .external_lex_state = 2}, + [994] = {.lex_state = 31, .external_lex_state = 2}, + [995] = {.lex_state = 31, .external_lex_state = 2}, + [996] = {.lex_state = 31, .external_lex_state = 2}, + [997] = {.lex_state = 31, .external_lex_state = 2}, + [998] = {.lex_state = 31, .external_lex_state = 2}, + [999] = {.lex_state = 31, .external_lex_state = 2}, + [1000] = {.lex_state = 31, .external_lex_state = 2}, + [1001] = {.lex_state = 31, .external_lex_state = 2}, + [1002] = {.lex_state = 31, .external_lex_state = 2}, + [1003] = {.lex_state = 31, .external_lex_state = 2}, + [1004] = {.lex_state = 31, .external_lex_state = 2}, + [1005] = {.lex_state = 125, .external_lex_state = 2}, + [1006] = {.lex_state = 125, .external_lex_state = 2}, + [1007] = {.lex_state = 125, .external_lex_state = 2}, + [1008] = {.lex_state = 125, .external_lex_state = 2}, + [1009] = {.lex_state = 125, .external_lex_state = 2}, + [1010] = {.lex_state = 125, .external_lex_state = 2}, + [1011] = {.lex_state = 125, .external_lex_state = 2}, + [1012] = {.lex_state = 125, .external_lex_state = 2}, + [1013] = {.lex_state = 125, .external_lex_state = 2}, + [1014] = {.lex_state = 125, .external_lex_state = 2}, + [1015] = {.lex_state = 125, .external_lex_state = 2}, + [1016] = {.lex_state = 125, .external_lex_state = 2}, + [1017] = {.lex_state = 125, .external_lex_state = 2}, + [1018] = {.lex_state = 125, .external_lex_state = 2}, + [1019] = {.lex_state = 125, .external_lex_state = 2}, + [1020] = {.lex_state = 125, .external_lex_state = 2}, + [1021] = {.lex_state = 125, .external_lex_state = 5}, + [1022] = {.lex_state = 125, .external_lex_state = 2}, + [1023] = {.lex_state = 125, .external_lex_state = 2}, + [1024] = {.lex_state = 125, .external_lex_state = 5}, + [1025] = {.lex_state = 125, .external_lex_state = 2}, + [1026] = {.lex_state = 31, .external_lex_state = 2}, + [1027] = {.lex_state = 125, .external_lex_state = 2}, + [1028] = {.lex_state = 125, .external_lex_state = 2}, + [1029] = {.lex_state = 125, .external_lex_state = 2}, + [1030] = {.lex_state = 125, .external_lex_state = 2}, + [1031] = {.lex_state = 125, .external_lex_state = 2}, + [1032] = {.lex_state = 125, .external_lex_state = 2}, + [1033] = {.lex_state = 125, .external_lex_state = 2}, + [1034] = {.lex_state = 125, .external_lex_state = 5}, + [1035] = {.lex_state = 9, .external_lex_state = 6}, + [1036] = {.lex_state = 16, .external_lex_state = 7}, + [1037] = {.lex_state = 31, .external_lex_state = 2}, + [1038] = {.lex_state = 9, .external_lex_state = 6}, + [1039] = {.lex_state = 9, .external_lex_state = 6}, + [1040] = {.lex_state = 9, .external_lex_state = 6}, + [1041] = {.lex_state = 125, .external_lex_state = 2}, + [1042] = {.lex_state = 125, .external_lex_state = 5}, + [1043] = {.lex_state = 9, .external_lex_state = 6}, + [1044] = {.lex_state = 9, .external_lex_state = 6}, + [1045] = {.lex_state = 125, .external_lex_state = 2}, + [1046] = {.lex_state = 9, .external_lex_state = 6}, + [1047] = {.lex_state = 9, .external_lex_state = 6}, + [1048] = {.lex_state = 9, .external_lex_state = 6}, + [1049] = {.lex_state = 9, .external_lex_state = 6}, + [1050] = {.lex_state = 16, .external_lex_state = 7}, + [1051] = {.lex_state = 9, .external_lex_state = 6}, + [1052] = {.lex_state = 9, .external_lex_state = 6}, + [1053] = {.lex_state = 125, .external_lex_state = 2}, + [1054] = {.lex_state = 125, .external_lex_state = 5}, + [1055] = {.lex_state = 125, .external_lex_state = 5}, + [1056] = {.lex_state = 125, .external_lex_state = 5}, + [1057] = {.lex_state = 125, .external_lex_state = 5}, + [1058] = {.lex_state = 125, .external_lex_state = 5}, + [1059] = {.lex_state = 125, .external_lex_state = 2}, + [1060] = {.lex_state = 16, .external_lex_state = 7}, + [1061] = {.lex_state = 125, .external_lex_state = 2}, + [1062] = {.lex_state = 125, .external_lex_state = 2}, + [1063] = {.lex_state = 125, .external_lex_state = 5}, + [1064] = {.lex_state = 31, .external_lex_state = 2}, + [1065] = {.lex_state = 16, .external_lex_state = 7}, + [1066] = {.lex_state = 125, .external_lex_state = 2}, + [1067] = {.lex_state = 9, .external_lex_state = 6}, + [1068] = {.lex_state = 9, .external_lex_state = 6}, + [1069] = {.lex_state = 9, .external_lex_state = 6}, + [1070] = {.lex_state = 125, .external_lex_state = 2}, + [1071] = {.lex_state = 125, .external_lex_state = 5}, + [1072] = {.lex_state = 16, .external_lex_state = 7}, + [1073] = {.lex_state = 31, .external_lex_state = 2}, + [1074] = {.lex_state = 9, .external_lex_state = 6}, + [1075] = {.lex_state = 125, .external_lex_state = 5}, + [1076] = {.lex_state = 125, .external_lex_state = 5}, + [1077] = {.lex_state = 9, .external_lex_state = 6}, + [1078] = {.lex_state = 31, .external_lex_state = 2}, + [1079] = {.lex_state = 125, .external_lex_state = 2}, + [1080] = {.lex_state = 31, .external_lex_state = 2}, + [1081] = {.lex_state = 125, .external_lex_state = 2}, + [1082] = {.lex_state = 125, .external_lex_state = 2}, + [1083] = {.lex_state = 31, .external_lex_state = 2}, + [1084] = {.lex_state = 125, .external_lex_state = 2}, + [1085] = {.lex_state = 125, .external_lex_state = 2}, + [1086] = {.lex_state = 125, .external_lex_state = 2}, + [1087] = {.lex_state = 125, .external_lex_state = 2}, + [1088] = {.lex_state = 125, .external_lex_state = 2}, + [1089] = {.lex_state = 31, .external_lex_state = 2}, + [1090] = {.lex_state = 31, .external_lex_state = 2}, + [1091] = {.lex_state = 125, .external_lex_state = 5}, + [1092] = {.lex_state = 125, .external_lex_state = 5}, + [1093] = {.lex_state = 31, .external_lex_state = 2}, + [1094] = {.lex_state = 31, .external_lex_state = 2}, + [1095] = {.lex_state = 31, .external_lex_state = 2}, + [1096] = {.lex_state = 31, .external_lex_state = 2}, + [1097] = {.lex_state = 125, .external_lex_state = 2}, + [1098] = {.lex_state = 31, .external_lex_state = 2}, + [1099] = {.lex_state = 31, .external_lex_state = 2}, + [1100] = {.lex_state = 31, .external_lex_state = 2}, + [1101] = {.lex_state = 125, .external_lex_state = 2}, + [1102] = {.lex_state = 31, .external_lex_state = 2}, + [1103] = {.lex_state = 125, .external_lex_state = 2}, + [1104] = {.lex_state = 125, .external_lex_state = 2}, + [1105] = {.lex_state = 125, .external_lex_state = 2}, + [1106] = {.lex_state = 125, .external_lex_state = 2}, + [1107] = {.lex_state = 31, .external_lex_state = 2}, + [1108] = {.lex_state = 125, .external_lex_state = 2}, + [1109] = {.lex_state = 31, .external_lex_state = 2}, + [1110] = {.lex_state = 31, .external_lex_state = 2}, + [1111] = {.lex_state = 31, .external_lex_state = 2}, + [1112] = {.lex_state = 31, .external_lex_state = 2}, + [1113] = {.lex_state = 125, .external_lex_state = 2}, + [1114] = {.lex_state = 31, .external_lex_state = 2}, + [1115] = {.lex_state = 31, .external_lex_state = 2}, + [1116] = {.lex_state = 125, .external_lex_state = 2}, + [1117] = {.lex_state = 125, .external_lex_state = 2}, + [1118] = {.lex_state = 31, .external_lex_state = 2}, + [1119] = {.lex_state = 125, .external_lex_state = 2}, + [1120] = {.lex_state = 125, .external_lex_state = 2}, + [1121] = {.lex_state = 125, .external_lex_state = 5}, + [1122] = {.lex_state = 31, .external_lex_state = 2}, + [1123] = {.lex_state = 125, .external_lex_state = 2}, + [1124] = {.lex_state = 125, .external_lex_state = 2}, + [1125] = {.lex_state = 31, .external_lex_state = 2}, + [1126] = {.lex_state = 125, .external_lex_state = 5}, + [1127] = {.lex_state = 125, .external_lex_state = 5}, + [1128] = {.lex_state = 125, .external_lex_state = 2}, + [1129] = {.lex_state = 125, .external_lex_state = 5}, + [1130] = {.lex_state = 20, .external_lex_state = 8}, + [1131] = {.lex_state = 125, .external_lex_state = 2}, + [1132] = {.lex_state = 12, .external_lex_state = 8}, + [1133] = {.lex_state = 20, .external_lex_state = 8}, + [1134] = {.lex_state = 12, .external_lex_state = 8}, + [1135] = {.lex_state = 125, .external_lex_state = 2}, + [1136] = {.lex_state = 20, .external_lex_state = 8}, + [1137] = {.lex_state = 12, .external_lex_state = 8}, + [1138] = {.lex_state = 125, .external_lex_state = 2}, + [1139] = {.lex_state = 125, .external_lex_state = 2}, + [1140] = {.lex_state = 125, .external_lex_state = 2}, + [1141] = {.lex_state = 18, .external_lex_state = 2}, + [1142] = {.lex_state = 125, .external_lex_state = 2}, + [1143] = {.lex_state = 125, .external_lex_state = 5}, + [1144] = {.lex_state = 10, .external_lex_state = 2}, + [1145] = {.lex_state = 125, .external_lex_state = 2}, + [1146] = {.lex_state = 125, .external_lex_state = 2}, + [1147] = {.lex_state = 125, .external_lex_state = 5}, + [1148] = {.lex_state = 125, .external_lex_state = 2}, + [1149] = {.lex_state = 125, .external_lex_state = 2}, + [1150] = {.lex_state = 12, .external_lex_state = 8}, + [1151] = {.lex_state = 125, .external_lex_state = 2}, + [1152] = {.lex_state = 10, .external_lex_state = 2}, + [1153] = {.lex_state = 125, .external_lex_state = 2}, + [1154] = {.lex_state = 125, .external_lex_state = 2}, + [1155] = {.lex_state = 18, .external_lex_state = 2}, + [1156] = {.lex_state = 124, .external_lex_state = 2}, + [1157] = {.lex_state = 125, .external_lex_state = 2}, + [1158] = {.lex_state = 125, .external_lex_state = 5}, + [1159] = {.lex_state = 125, .external_lex_state = 5}, + [1160] = {.lex_state = 125, .external_lex_state = 2}, + [1161] = {.lex_state = 125, .external_lex_state = 2}, + [1162] = {.lex_state = 12, .external_lex_state = 8}, + [1163] = {.lex_state = 20, .external_lex_state = 8}, + [1164] = {.lex_state = 125, .external_lex_state = 2}, + [1165] = {.lex_state = 125, .external_lex_state = 2}, + [1166] = {.lex_state = 12, .external_lex_state = 8}, + [1167] = {.lex_state = 20, .external_lex_state = 8}, + [1168] = {.lex_state = 125, .external_lex_state = 5}, + [1169] = {.lex_state = 125, .external_lex_state = 5}, + [1170] = {.lex_state = 20, .external_lex_state = 8}, + [1171] = {.lex_state = 125, .external_lex_state = 5}, + [1172] = {.lex_state = 125, .external_lex_state = 2}, + [1173] = {.lex_state = 125, .external_lex_state = 2}, + [1174] = {.lex_state = 125, .external_lex_state = 2}, + [1175] = {.lex_state = 125, .external_lex_state = 5}, + [1176] = {.lex_state = 125, .external_lex_state = 2}, + [1177] = {.lex_state = 125, .external_lex_state = 2}, + [1178] = {.lex_state = 125, .external_lex_state = 2}, + [1179] = {.lex_state = 125, .external_lex_state = 2}, + [1180] = {.lex_state = 125, .external_lex_state = 2}, + [1181] = {.lex_state = 125, .external_lex_state = 5}, + [1182] = {.lex_state = 125, .external_lex_state = 5}, + [1183] = {.lex_state = 18, .external_lex_state = 2}, + [1184] = {.lex_state = 10, .external_lex_state = 2}, + [1185] = {.lex_state = 125, .external_lex_state = 2}, + [1186] = {.lex_state = 125, .external_lex_state = 2}, + [1187] = {.lex_state = 124, .external_lex_state = 2}, + [1188] = {.lex_state = 12, .external_lex_state = 8}, + [1189] = {.lex_state = 125, .external_lex_state = 2}, + [1190] = {.lex_state = 125, .external_lex_state = 2}, + [1191] = {.lex_state = 20, .external_lex_state = 8}, + [1192] = {.lex_state = 12, .external_lex_state = 8}, + [1193] = {.lex_state = 125, .external_lex_state = 2}, + [1194] = {.lex_state = 125, .external_lex_state = 2}, + [1195] = {.lex_state = 20, .external_lex_state = 8}, + [1196] = {.lex_state = 125, .external_lex_state = 2}, + [1197] = {.lex_state = 12, .external_lex_state = 8}, + [1198] = {.lex_state = 125, .external_lex_state = 2}, + [1199] = {.lex_state = 16, .external_lex_state = 7}, + [1200] = {.lex_state = 20, .external_lex_state = 8}, + [1201] = {.lex_state = 125, .external_lex_state = 2}, + [1202] = {.lex_state = 125, .external_lex_state = 2}, + [1203] = {.lex_state = 125, .external_lex_state = 2}, + [1204] = {.lex_state = 125, .external_lex_state = 2}, + [1205] = {.lex_state = 125, .external_lex_state = 2}, + [1206] = {.lex_state = 125, .external_lex_state = 2}, + [1207] = {.lex_state = 125, .external_lex_state = 5}, + [1208] = {.lex_state = 125, .external_lex_state = 2}, + [1209] = {.lex_state = 125, .external_lex_state = 2}, + [1210] = {.lex_state = 125, .external_lex_state = 5}, + [1211] = {.lex_state = 125, .external_lex_state = 2}, + [1212] = {.lex_state = 125, .external_lex_state = 2}, + [1213] = {.lex_state = 125, .external_lex_state = 5}, + [1214] = {.lex_state = 125, .external_lex_state = 2}, + [1215] = {.lex_state = 125, .external_lex_state = 5}, + [1216] = {.lex_state = 125, .external_lex_state = 2}, + [1217] = {.lex_state = 125, .external_lex_state = 5}, + [1218] = {.lex_state = 125, .external_lex_state = 2}, + [1219] = {.lex_state = 125, .external_lex_state = 2}, + [1220] = {.lex_state = 5, .external_lex_state = 2}, + [1221] = {.lex_state = 5, .external_lex_state = 2}, + [1222] = {.lex_state = 125, .external_lex_state = 2}, + [1223] = {.lex_state = 125, .external_lex_state = 2}, + [1224] = {.lex_state = 125, .external_lex_state = 2}, + [1225] = {.lex_state = 125, .external_lex_state = 2}, + [1226] = {.lex_state = 125, .external_lex_state = 2}, + [1227] = {.lex_state = 125, .external_lex_state = 2}, + [1228] = {.lex_state = 5, .external_lex_state = 2}, + [1229] = {.lex_state = 125, .external_lex_state = 5}, + [1230] = {.lex_state = 125, .external_lex_state = 2}, + [1231] = {.lex_state = 125, .external_lex_state = 2}, + [1232] = {.lex_state = 125, .external_lex_state = 2}, + [1233] = {.lex_state = 125, .external_lex_state = 2}, + [1234] = {.lex_state = 125, .external_lex_state = 2}, + [1235] = {.lex_state = 125, .external_lex_state = 5}, + [1236] = {.lex_state = 125, .external_lex_state = 2}, + [1237] = {.lex_state = 125, .external_lex_state = 2}, + [1238] = {.lex_state = 125, .external_lex_state = 2}, + [1239] = {.lex_state = 125, .external_lex_state = 2}, + [1240] = {.lex_state = 125, .external_lex_state = 2}, + [1241] = {.lex_state = 125, .external_lex_state = 2}, + [1242] = {.lex_state = 125, .external_lex_state = 2}, + [1243] = {.lex_state = 125, .external_lex_state = 2}, + [1244] = {.lex_state = 125, .external_lex_state = 2}, + [1245] = {.lex_state = 125, .external_lex_state = 2}, + [1246] = {.lex_state = 5, .external_lex_state = 2}, + [1247] = {.lex_state = 125, .external_lex_state = 2}, + [1248] = {.lex_state = 125, .external_lex_state = 2}, + [1249] = {.lex_state = 125, .external_lex_state = 2}, + [1250] = {.lex_state = 125, .external_lex_state = 2}, + [1251] = {.lex_state = 125, .external_lex_state = 2}, + [1252] = {.lex_state = 125, .external_lex_state = 2}, + [1253] = {.lex_state = 125, .external_lex_state = 2}, + [1254] = {.lex_state = 125, .external_lex_state = 2}, + [1255] = {.lex_state = 125, .external_lex_state = 2}, + [1256] = {.lex_state = 125, .external_lex_state = 2}, + [1257] = {.lex_state = 125, .external_lex_state = 2}, + [1258] = {.lex_state = 125, .external_lex_state = 2}, + [1259] = {.lex_state = 125, .external_lex_state = 5}, + [1260] = {.lex_state = 125, .external_lex_state = 2}, + [1261] = {.lex_state = 125, .external_lex_state = 2}, + [1262] = {.lex_state = 125, .external_lex_state = 2}, + [1263] = {.lex_state = 125, .external_lex_state = 5}, + [1264] = {.lex_state = 125, .external_lex_state = 2}, + [1265] = {.lex_state = 125, .external_lex_state = 2}, + [1266] = {.lex_state = 125, .external_lex_state = 2}, + [1267] = {.lex_state = 125, .external_lex_state = 2}, + [1268] = {.lex_state = 125, .external_lex_state = 2}, + [1269] = {.lex_state = 125, .external_lex_state = 2}, + [1270] = {.lex_state = 125, .external_lex_state = 2}, + [1271] = {.lex_state = 125, .external_lex_state = 2}, + [1272] = {.lex_state = 124, .external_lex_state = 2}, + [1273] = {.lex_state = 125, .external_lex_state = 2}, + [1274] = {.lex_state = 125, .external_lex_state = 2}, + [1275] = {.lex_state = 125, .external_lex_state = 2}, + [1276] = {.lex_state = 125, .external_lex_state = 2}, + [1277] = {.lex_state = 125, .external_lex_state = 2}, + [1278] = {.lex_state = 125, .external_lex_state = 2}, + [1279] = {.lex_state = 125, .external_lex_state = 2}, + [1280] = {.lex_state = 125, .external_lex_state = 2}, + [1281] = {.lex_state = 125, .external_lex_state = 2}, + [1282] = {.lex_state = 125, .external_lex_state = 2}, + [1283] = {.lex_state = 125, .external_lex_state = 5}, + [1284] = {.lex_state = 125, .external_lex_state = 2}, + [1285] = {.lex_state = 125, .external_lex_state = 2}, + [1286] = {.lex_state = 125, .external_lex_state = 2}, + [1287] = {.lex_state = 125, .external_lex_state = 2}, + [1288] = {.lex_state = 125, .external_lex_state = 2}, + [1289] = {.lex_state = 125, .external_lex_state = 2}, + [1290] = {.lex_state = 125, .external_lex_state = 2}, + [1291] = {.lex_state = 125, .external_lex_state = 2}, + [1292] = {.lex_state = 124, .external_lex_state = 2}, + [1293] = {.lex_state = 125, .external_lex_state = 2}, + [1294] = {.lex_state = 125, .external_lex_state = 2}, + [1295] = {.lex_state = 125, .external_lex_state = 2}, + [1296] = {.lex_state = 125, .external_lex_state = 5}, + [1297] = {.lex_state = 125, .external_lex_state = 2}, + [1298] = {.lex_state = 125, .external_lex_state = 5}, + [1299] = {.lex_state = 125, .external_lex_state = 2}, + [1300] = {.lex_state = 125, .external_lex_state = 5}, + [1301] = {.lex_state = 125, .external_lex_state = 5}, + [1302] = {.lex_state = 125, .external_lex_state = 5}, + [1303] = {.lex_state = 125, .external_lex_state = 2}, + [1304] = {.lex_state = 125, .external_lex_state = 2}, + [1305] = {.lex_state = 5, .external_lex_state = 2}, + [1306] = {.lex_state = 125, .external_lex_state = 2}, + [1307] = {.lex_state = 125, .external_lex_state = 2}, + [1308] = {.lex_state = 125, .external_lex_state = 2}, + [1309] = {.lex_state = 125, .external_lex_state = 2}, + [1310] = {.lex_state = 125, .external_lex_state = 2}, + [1311] = {.lex_state = 125, .external_lex_state = 2}, + [1312] = {.lex_state = 125, .external_lex_state = 2}, + [1313] = {.lex_state = 125, .external_lex_state = 2}, + [1314] = {.lex_state = 125, .external_lex_state = 2}, + [1315] = {.lex_state = 125, .external_lex_state = 2}, + [1316] = {.lex_state = 125, .external_lex_state = 2}, + [1317] = {.lex_state = 125, .external_lex_state = 2}, + [1318] = {.lex_state = 125, .external_lex_state = 2}, + [1319] = {.lex_state = 125, .external_lex_state = 2}, + [1320] = {.lex_state = 125, .external_lex_state = 2}, + [1321] = {.lex_state = 125, .external_lex_state = 2}, + [1322] = {.lex_state = 125, .external_lex_state = 2}, + [1323] = {.lex_state = 125, .external_lex_state = 2}, + [1324] = {.lex_state = 31, .external_lex_state = 2}, + [1325] = {.lex_state = 125, .external_lex_state = 2}, + [1326] = {.lex_state = 125, .external_lex_state = 2}, + [1327] = {.lex_state = 125, .external_lex_state = 2}, + [1328] = {.lex_state = 125, .external_lex_state = 2}, + [1329] = {.lex_state = 125, .external_lex_state = 2}, + [1330] = {.lex_state = 125, .external_lex_state = 2}, + [1331] = {.lex_state = 125, .external_lex_state = 2}, + [1332] = {.lex_state = 125, .external_lex_state = 2}, + [1333] = {.lex_state = 125, .external_lex_state = 2}, + [1334] = {.lex_state = 125, .external_lex_state = 2}, + [1335] = {.lex_state = 125, .external_lex_state = 2}, + [1336] = {.lex_state = 125, .external_lex_state = 2}, + [1337] = {.lex_state = 125, .external_lex_state = 2}, + [1338] = {.lex_state = 125, .external_lex_state = 2}, + [1339] = {.lex_state = 125, .external_lex_state = 2}, + [1340] = {.lex_state = 125, .external_lex_state = 2}, + [1341] = {.lex_state = 5, .external_lex_state = 2}, + [1342] = {.lex_state = 125, .external_lex_state = 2}, + [1343] = {.lex_state = 125, .external_lex_state = 2}, + [1344] = {.lex_state = 125, .external_lex_state = 2}, + [1345] = {.lex_state = 125, .external_lex_state = 2}, + [1346] = {.lex_state = 125, .external_lex_state = 2}, + [1347] = {.lex_state = 125, .external_lex_state = 2}, + [1348] = {.lex_state = 125, .external_lex_state = 2}, + [1349] = {.lex_state = 125, .external_lex_state = 2}, + [1350] = {.lex_state = 125, .external_lex_state = 2}, + [1351] = {.lex_state = 125, .external_lex_state = 2}, + [1352] = {.lex_state = 125, .external_lex_state = 2}, + [1353] = {.lex_state = 125, .external_lex_state = 5}, + [1354] = {.lex_state = 125, .external_lex_state = 2}, + [1355] = {.lex_state = 125, .external_lex_state = 2}, + [1356] = {.lex_state = 125, .external_lex_state = 2}, + [1357] = {.lex_state = 125, .external_lex_state = 2}, + [1358] = {.lex_state = 125, .external_lex_state = 2}, + [1359] = {.lex_state = 125, .external_lex_state = 2}, + [1360] = {.lex_state = 125, .external_lex_state = 2}, + [1361] = {.lex_state = 125, .external_lex_state = 2}, + [1362] = {.lex_state = 125, .external_lex_state = 2}, + [1363] = {.lex_state = 125, .external_lex_state = 2}, + [1364] = {.lex_state = 125, .external_lex_state = 2}, + [1365] = {.lex_state = 125, .external_lex_state = 2}, + [1366] = {.lex_state = 125, .external_lex_state = 2}, + [1367] = {.lex_state = 125, .external_lex_state = 5}, + [1368] = {.lex_state = 125, .external_lex_state = 2}, + [1369] = {.lex_state = 125, .external_lex_state = 2}, + [1370] = {.lex_state = 125, .external_lex_state = 2}, + [1371] = {.lex_state = 125, .external_lex_state = 2}, + [1372] = {.lex_state = 125, .external_lex_state = 2}, + [1373] = {.lex_state = 125, .external_lex_state = 2}, + [1374] = {.lex_state = 125, .external_lex_state = 2}, + [1375] = {.lex_state = 5, .external_lex_state = 2}, + [1376] = {.lex_state = 5, .external_lex_state = 2}, + [1377] = {.lex_state = 125, .external_lex_state = 2}, + [1378] = {.lex_state = 125, .external_lex_state = 5}, + [1379] = {.lex_state = 125, .external_lex_state = 5}, + [1380] = {.lex_state = 125, .external_lex_state = 2}, + [1381] = {.lex_state = 125, .external_lex_state = 2}, + [1382] = {.lex_state = 125, .external_lex_state = 2}, + [1383] = {.lex_state = 125, .external_lex_state = 2}, + [1384] = {.lex_state = 125, .external_lex_state = 2}, + [1385] = {.lex_state = 125, .external_lex_state = 2}, + [1386] = {.lex_state = 125, .external_lex_state = 2}, + [1387] = {.lex_state = 125, .external_lex_state = 2}, + [1388] = {.lex_state = 125, .external_lex_state = 2}, + [1389] = {.lex_state = 125, .external_lex_state = 5}, + [1390] = {.lex_state = 125, .external_lex_state = 2}, + [1391] = {.lex_state = 125, .external_lex_state = 2}, + [1392] = {.lex_state = 125, .external_lex_state = 2}, + [1393] = {.lex_state = 125, .external_lex_state = 2}, + [1394] = {.lex_state = 125, .external_lex_state = 2}, + [1395] = {.lex_state = 125, .external_lex_state = 2}, + [1396] = {.lex_state = 125, .external_lex_state = 2}, + [1397] = {.lex_state = 125, .external_lex_state = 2}, + [1398] = {.lex_state = 125, .external_lex_state = 2}, + [1399] = {.lex_state = 125, .external_lex_state = 2}, + [1400] = {.lex_state = 125, .external_lex_state = 2}, + [1401] = {.lex_state = 125, .external_lex_state = 2}, + [1402] = {.lex_state = 125, .external_lex_state = 2}, + [1403] = {.lex_state = 125, .external_lex_state = 2}, + [1404] = {.lex_state = 125, .external_lex_state = 2}, + [1405] = {.lex_state = 125, .external_lex_state = 2}, + [1406] = {.lex_state = 125, .external_lex_state = 2}, + [1407] = {.lex_state = 125, .external_lex_state = 2}, + [1408] = {.lex_state = 125, .external_lex_state = 2}, + [1409] = {.lex_state = 125, .external_lex_state = 2}, + [1410] = {.lex_state = 125, .external_lex_state = 2}, + [1411] = {.lex_state = 125, .external_lex_state = 2}, + [1412] = {.lex_state = 125, .external_lex_state = 2}, + [1413] = {.lex_state = 125, .external_lex_state = 2}, + [1414] = {.lex_state = 125, .external_lex_state = 2}, + [1415] = {.lex_state = 125, .external_lex_state = 2}, + [1416] = {.lex_state = 125, .external_lex_state = 2}, + [1417] = {.lex_state = 125, .external_lex_state = 2}, + [1418] = {.lex_state = 125, .external_lex_state = 2}, + [1419] = {.lex_state = 125, .external_lex_state = 2}, + [1420] = {.lex_state = 125, .external_lex_state = 2}, + [1421] = {.lex_state = 125, .external_lex_state = 2}, + [1422] = {.lex_state = 125, .external_lex_state = 2}, + [1423] = {.lex_state = 125, .external_lex_state = 5}, + [1424] = {.lex_state = 125, .external_lex_state = 2}, + [1425] = {.lex_state = 125, .external_lex_state = 2}, + [1426] = {.lex_state = 125, .external_lex_state = 2}, + [1427] = {.lex_state = 125, .external_lex_state = 2}, + [1428] = {.lex_state = 125, .external_lex_state = 2}, + [1429] = {.lex_state = 125, .external_lex_state = 2}, + [1430] = {.lex_state = 125, .external_lex_state = 2}, + [1431] = {.lex_state = 125, .external_lex_state = 2}, + [1432] = {.lex_state = 125, .external_lex_state = 2}, + [1433] = {.lex_state = 125, .external_lex_state = 2}, + [1434] = {.lex_state = 125, .external_lex_state = 2}, + [1435] = {.lex_state = 125, .external_lex_state = 2}, + [1436] = {.lex_state = 125, .external_lex_state = 2}, + [1437] = {.lex_state = 125, .external_lex_state = 2}, + [1438] = {.lex_state = 125, .external_lex_state = 2}, + [1439] = {.lex_state = 125, .external_lex_state = 2}, + [1440] = {.lex_state = 125, .external_lex_state = 2}, + [1441] = {.lex_state = 125, .external_lex_state = 2}, + [1442] = {.lex_state = 125, .external_lex_state = 2}, + [1443] = {.lex_state = 125, .external_lex_state = 2}, + [1444] = {.lex_state = 125, .external_lex_state = 2}, + [1445] = {.lex_state = 125, .external_lex_state = 2}, + [1446] = {.lex_state = 125, .external_lex_state = 5}, + [1447] = {.lex_state = 125, .external_lex_state = 2}, + [1448] = {.lex_state = 125, .external_lex_state = 2}, + [1449] = {.lex_state = 125, .external_lex_state = 2}, + [1450] = {.lex_state = 125, .external_lex_state = 2}, + [1451] = {.lex_state = 125, .external_lex_state = 2}, + [1452] = {.lex_state = 125, .external_lex_state = 2}, + [1453] = {.lex_state = 125, .external_lex_state = 2}, + [1454] = {.lex_state = 125, .external_lex_state = 2}, + [1455] = {.lex_state = 125, .external_lex_state = 5}, + [1456] = {.lex_state = 125, .external_lex_state = 2}, + [1457] = {.lex_state = 125, .external_lex_state = 2}, + [1458] = {.lex_state = 125, .external_lex_state = 2}, + [1459] = {.lex_state = 125, .external_lex_state = 2}, + [1460] = {.lex_state = 125, .external_lex_state = 2}, + [1461] = {.lex_state = 125, .external_lex_state = 2}, + [1462] = {.lex_state = 125, .external_lex_state = 2}, + [1463] = {.lex_state = 125, .external_lex_state = 2}, + [1464] = {.lex_state = 125, .external_lex_state = 2}, + [1465] = {.lex_state = 125, .external_lex_state = 2}, + [1466] = {.lex_state = 125, .external_lex_state = 2}, + [1467] = {.lex_state = 125, .external_lex_state = 2}, + [1468] = {.lex_state = 125, .external_lex_state = 2}, + [1469] = {.lex_state = 125, .external_lex_state = 2}, + [1470] = {.lex_state = 125, .external_lex_state = 2}, + [1471] = {.lex_state = 125, .external_lex_state = 2}, + [1472] = {.lex_state = 125, .external_lex_state = 2}, + [1473] = {.lex_state = 125, .external_lex_state = 2}, + [1474] = {.lex_state = 125, .external_lex_state = 2}, + [1475] = {.lex_state = 125, .external_lex_state = 2}, + [1476] = {.lex_state = 125, .external_lex_state = 2}, + [1477] = {.lex_state = 125, .external_lex_state = 2}, + [1478] = {.lex_state = 125, .external_lex_state = 2}, + [1479] = {.lex_state = 125, .external_lex_state = 2}, + [1480] = {.lex_state = 125, .external_lex_state = 2}, + [1481] = {.lex_state = 125, .external_lex_state = 2}, + [1482] = {.lex_state = 125, .external_lex_state = 2}, + [1483] = {.lex_state = 125, .external_lex_state = 2}, + [1484] = {.lex_state = 125, .external_lex_state = 2}, + [1485] = {.lex_state = 125, .external_lex_state = 2}, + [1486] = {.lex_state = 125, .external_lex_state = 2}, + [1487] = {.lex_state = 125, .external_lex_state = 2}, + [1488] = {.lex_state = 125, .external_lex_state = 2}, + [1489] = {.lex_state = 125, .external_lex_state = 2}, + [1490] = {.lex_state = 125, .external_lex_state = 2}, + [1491] = {.lex_state = 125, .external_lex_state = 2}, + [1492] = {.lex_state = 125, .external_lex_state = 2}, + [1493] = {.lex_state = 125, .external_lex_state = 2}, + [1494] = {.lex_state = 125, .external_lex_state = 2}, + [1495] = {.lex_state = 125, .external_lex_state = 2}, + [1496] = {.lex_state = 125, .external_lex_state = 2}, + [1497] = {.lex_state = 125, .external_lex_state = 2}, + [1498] = {.lex_state = 125, .external_lex_state = 2}, + [1499] = {.lex_state = 125, .external_lex_state = 2}, + [1500] = {.lex_state = 125, .external_lex_state = 2}, + [1501] = {.lex_state = 125, .external_lex_state = 2}, + [1502] = {.lex_state = 125, .external_lex_state = 2}, + [1503] = {.lex_state = 125, .external_lex_state = 2}, + [1504] = {.lex_state = 125, .external_lex_state = 2}, + [1505] = {.lex_state = 125, .external_lex_state = 2}, + [1506] = {.lex_state = 125, .external_lex_state = 2}, + [1507] = {.lex_state = 125, .external_lex_state = 2}, + [1508] = {.lex_state = 125, .external_lex_state = 2}, + [1509] = {.lex_state = 125, .external_lex_state = 2}, + [1510] = {.lex_state = 125, .external_lex_state = 2}, + [1511] = {.lex_state = 125, .external_lex_state = 2}, + [1512] = {.lex_state = 125, .external_lex_state = 2}, + [1513] = {.lex_state = 125, .external_lex_state = 2}, + [1514] = {.lex_state = 125, .external_lex_state = 2}, + [1515] = {.lex_state = 125, .external_lex_state = 2}, + [1516] = {.lex_state = 125, .external_lex_state = 5}, + [1517] = {.lex_state = 125, .external_lex_state = 2}, + [1518] = {.lex_state = 125, .external_lex_state = 2}, + [1519] = {.lex_state = 125, .external_lex_state = 2}, + [1520] = {.lex_state = 125, .external_lex_state = 2}, + [1521] = {.lex_state = 125, .external_lex_state = 2}, + [1522] = {.lex_state = 125, .external_lex_state = 2}, + [1523] = {.lex_state = 125, .external_lex_state = 5}, + [1524] = {.lex_state = 125, .external_lex_state = 5}, + [1525] = {.lex_state = 125, .external_lex_state = 2}, + [1526] = {.lex_state = 125, .external_lex_state = 2}, + [1527] = {.lex_state = 125, .external_lex_state = 5}, + [1528] = {.lex_state = 125, .external_lex_state = 2}, + [1529] = {.lex_state = 125, .external_lex_state = 2}, + [1530] = {.lex_state = 125, .external_lex_state = 2}, + [1531] = {.lex_state = 125, .external_lex_state = 5}, + [1532] = {.lex_state = 125, .external_lex_state = 2}, + [1533] = {.lex_state = 125, .external_lex_state = 2}, + [1534] = {.lex_state = 125, .external_lex_state = 2}, + [1535] = {.lex_state = 125, .external_lex_state = 2}, + [1536] = {.lex_state = 125, .external_lex_state = 2}, + [1537] = {.lex_state = 125, .external_lex_state = 2}, + [1538] = {.lex_state = 125, .external_lex_state = 2}, + [1539] = {.lex_state = 125, .external_lex_state = 2}, + [1540] = {.lex_state = 125, .external_lex_state = 2}, + [1541] = {.lex_state = 125, .external_lex_state = 2}, + [1542] = {.lex_state = 125, .external_lex_state = 2}, + [1543] = {.lex_state = 125, .external_lex_state = 2}, + [1544] = {.lex_state = 125, .external_lex_state = 2}, + [1545] = {.lex_state = 125, .external_lex_state = 2}, + [1546] = {.lex_state = 125, .external_lex_state = 2}, + [1547] = {.lex_state = 125, .external_lex_state = 2}, + [1548] = {.lex_state = 125, .external_lex_state = 2}, + [1549] = {.lex_state = 125, .external_lex_state = 2}, + [1550] = {.lex_state = 125, .external_lex_state = 2}, + [1551] = {.lex_state = 125, .external_lex_state = 2}, + [1552] = {.lex_state = 125, .external_lex_state = 2}, + [1553] = {.lex_state = 125, .external_lex_state = 2}, + [1554] = {.lex_state = 125, .external_lex_state = 2}, + [1555] = {.lex_state = 125, .external_lex_state = 2}, + [1556] = {.lex_state = 2, .external_lex_state = 9}, + [1557] = {.lex_state = 125, .external_lex_state = 2}, + [1558] = {.lex_state = 2, .external_lex_state = 9}, + [1559] = {.lex_state = 125, .external_lex_state = 2}, + [1560] = {.lex_state = 125, .external_lex_state = 2}, + [1561] = {.lex_state = 125, .external_lex_state = 2}, + [1562] = {.lex_state = 125, .external_lex_state = 2}, + [1563] = {.lex_state = 125, .external_lex_state = 2}, + [1564] = {.lex_state = 125, .external_lex_state = 2}, + [1565] = {.lex_state = 125, .external_lex_state = 2}, + [1566] = {.lex_state = 125, .external_lex_state = 2}, + [1567] = {.lex_state = 125, .external_lex_state = 2}, + [1568] = {.lex_state = 125, .external_lex_state = 2}, + [1569] = {.lex_state = 125, .external_lex_state = 2}, + [1570] = {.lex_state = 125, .external_lex_state = 2}, + [1571] = {.lex_state = 125, .external_lex_state = 2}, + [1572] = {.lex_state = 125, .external_lex_state = 2}, + [1573] = {.lex_state = 125, .external_lex_state = 2}, + [1574] = {.lex_state = 125, .external_lex_state = 2}, + [1575] = {.lex_state = 125, .external_lex_state = 2}, + [1576] = {.lex_state = 125, .external_lex_state = 2}, + [1577] = {.lex_state = 125, .external_lex_state = 2}, + [1578] = {.lex_state = 125, .external_lex_state = 2}, + [1579] = {.lex_state = 125, .external_lex_state = 2}, + [1580] = {.lex_state = 125, .external_lex_state = 2}, + [1581] = {.lex_state = 125, .external_lex_state = 2}, + [1582] = {.lex_state = 125, .external_lex_state = 2}, + [1583] = {.lex_state = 125, .external_lex_state = 2}, + [1584] = {.lex_state = 125, .external_lex_state = 2}, + [1585] = {.lex_state = 125, .external_lex_state = 2}, + [1586] = {.lex_state = 125, .external_lex_state = 2}, + [1587] = {.lex_state = 125, .external_lex_state = 2}, + [1588] = {.lex_state = 125, .external_lex_state = 2}, + [1589] = {.lex_state = 125, .external_lex_state = 2}, + [1590] = {.lex_state = 2, .external_lex_state = 9}, + [1591] = {.lex_state = 32, .external_lex_state = 2}, + [1592] = {.lex_state = 125, .external_lex_state = 2}, + [1593] = {.lex_state = 125, .external_lex_state = 2}, + [1594] = {.lex_state = 2, .external_lex_state = 9}, + [1595] = {.lex_state = 125, .external_lex_state = 2}, + [1596] = {.lex_state = 125, .external_lex_state = 2}, + [1597] = {.lex_state = 125, .external_lex_state = 2}, + [1598] = {.lex_state = 125, .external_lex_state = 2}, + [1599] = {.lex_state = 125, .external_lex_state = 2}, + [1600] = {.lex_state = 125, .external_lex_state = 2}, + [1601] = {.lex_state = 125, .external_lex_state = 2}, + [1602] = {.lex_state = 125, .external_lex_state = 2}, + [1603] = {.lex_state = 125, .external_lex_state = 2}, + [1604] = {.lex_state = 125, .external_lex_state = 2}, + [1605] = {.lex_state = 125, .external_lex_state = 2}, + [1606] = {.lex_state = 125, .external_lex_state = 2}, + [1607] = {.lex_state = 125, .external_lex_state = 2}, + [1608] = {.lex_state = 125, .external_lex_state = 2}, + [1609] = {.lex_state = 125, .external_lex_state = 2}, + [1610] = {.lex_state = 125, .external_lex_state = 2}, + [1611] = {.lex_state = 125, .external_lex_state = 2}, + [1612] = {.lex_state = 32, .external_lex_state = 2}, + [1613] = {.lex_state = 125, .external_lex_state = 2}, + [1614] = {.lex_state = 125, .external_lex_state = 2}, + [1615] = {.lex_state = 125, .external_lex_state = 2}, + [1616] = {.lex_state = 125, .external_lex_state = 2}, + [1617] = {.lex_state = 125, .external_lex_state = 2}, + [1618] = {.lex_state = 125, .external_lex_state = 2}, + [1619] = {.lex_state = 32, .external_lex_state = 2}, + [1620] = {.lex_state = 125, .external_lex_state = 2}, + [1621] = {.lex_state = 125, .external_lex_state = 2}, + [1622] = {.lex_state = 32, .external_lex_state = 2}, + [1623] = {.lex_state = 125, .external_lex_state = 2}, + [1624] = {.lex_state = 125, .external_lex_state = 2}, + [1625] = {.lex_state = 125, .external_lex_state = 2}, + [1626] = {.lex_state = 125, .external_lex_state = 2}, + [1627] = {.lex_state = 125, .external_lex_state = 2}, + [1628] = {.lex_state = 125, .external_lex_state = 2}, + [1629] = {.lex_state = 125, .external_lex_state = 2}, + [1630] = {.lex_state = 125, .external_lex_state = 2}, + [1631] = {.lex_state = 125, .external_lex_state = 2}, + [1632] = {.lex_state = 125, .external_lex_state = 2}, + [1633] = {.lex_state = 125, .external_lex_state = 2}, + [1634] = {.lex_state = 125, .external_lex_state = 2}, + [1635] = {.lex_state = 125, .external_lex_state = 2}, + [1636] = {.lex_state = 125, .external_lex_state = 2}, + [1637] = {.lex_state = 125, .external_lex_state = 2}, + [1638] = {.lex_state = 125, .external_lex_state = 2}, + [1639] = {.lex_state = 125, .external_lex_state = 2}, + [1640] = {.lex_state = 125, .external_lex_state = 2}, + [1641] = {.lex_state = 125, .external_lex_state = 2}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -5622,12 +8060,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1), [anon_sym_SEMI] = ACTIONS(1), [anon_sym_default] = ACTIONS(1), + [anon_sym_as] = ACTIONS(1), [anon_sym_LBRACE] = ACTIONS(1), [anon_sym_COMMA] = ACTIONS(1), [anon_sym_RBRACE] = ACTIONS(1), - [anon_sym_as] = ACTIONS(1), [anon_sym_import] = ACTIONS(1), [anon_sym_from] = ACTIONS(1), + [anon_sym_with] = ACTIONS(1), [anon_sym_var] = ACTIONS(1), [anon_sym_let] = ACTIONS(1), [anon_sym_const] = ACTIONS(1), @@ -5647,7 +8086,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1), [anon_sym_do] = ACTIONS(1), [anon_sym_try] = ACTIONS(1), - [anon_sym_with] = ACTIONS(1), [anon_sym_break] = ACTIONS(1), [anon_sym_continue] = ACTIONS(1), [anon_sym_debugger] = ACTIONS(1), @@ -5661,19 +8099,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(1), [anon_sym_LBRACK] = ACTIONS(1), [anon_sym_RBRACK] = ACTIONS(1), - [anon_sym_LT] = ACTIONS(1), [anon_sym_GT] = ACTIONS(1), - [anon_sym_SLASH] = ACTIONS(1), + [anon_sym_LT] = ACTIONS(1), [anon_sym_DOT] = ACTIONS(1), + [anon_sym_LT_SLASH] = ACTIONS(1), + [anon_sym_DQUOTE] = ACTIONS(1), + [anon_sym_SQUOTE] = ACTIONS(1), [anon_sym_class] = ACTIONS(1), [anon_sym_extends] = ACTIONS(1), [anon_sym_function] = ACTIONS(1), [anon_sym_EQ_GT] = ACTIONS(1), - [anon_sym_QMARK_DOT] = ACTIONS(1), + [sym_optional_chain] = ACTIONS(1), [anon_sym_new] = ACTIONS(1), [anon_sym_PLUS_EQ] = ACTIONS(1), [anon_sym_DASH_EQ] = ACTIONS(1), [anon_sym_STAR_EQ] = ACTIONS(1), + [anon_sym_SLASH_EQ] = ACTIONS(1), [anon_sym_PERCENT_EQ] = ACTIONS(1), [anon_sym_CARET_EQ] = ACTIONS(1), [anon_sym_AMP_EQ] = ACTIONS(1), @@ -5696,6 +8137,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(1), [anon_sym_PLUS] = ACTIONS(1), [anon_sym_DASH] = ACTIONS(1), + [anon_sym_SLASH] = ACTIONS(1), [anon_sym_PERCENT] = ACTIONS(1), [anon_sym_STAR_STAR] = ACTIONS(1), [anon_sym_LT_EQ] = ACTIONS(1), @@ -5713,8 +8155,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1), [anon_sym_PLUS_PLUS] = ACTIONS(1), [anon_sym_DASH_DASH] = ACTIONS(1), - [anon_sym_DQUOTE] = ACTIONS(1), - [anon_sym_SQUOTE] = ACTIONS(1), [sym_escape_sequence] = ACTIONS(1), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1), @@ -5723,6 +8163,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(1), [sym_private_property_identifier] = ACTIONS(1), [anon_sym_target] = ACTIONS(1), + [anon_sym_meta] = ACTIONS(1), [sym_this] = ACTIONS(1), [sym_super] = ACTIONS(1), [sym_true] = ACTIONS(1), @@ -5730,6250 +8171,7522 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1), [sym_undefined] = ACTIONS(1), [anon_sym_AT] = ACTIONS(1), + [aux_sym_method_definition_token1] = ACTIONS(1), [sym_automatic_semicolon] = ACTIONS(1), [sym_template_chars] = ACTIONS(1), [sym_ternary_qmark] = ACTIONS(1), + [sym_html_comment] = ACTIONS(5), + [sym_jsx_text] = ACTIONS(1), }, [1] = { - [sym_program] = STATE(1352), - [sym_export_statement] = STATE(15), - [sym_declaration] = STATE(15), - [sym_import] = STATE(595), - [sym_import_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym_variable_declaration] = STATE(341), - [sym_lexical_declaration] = STATE(341), - [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(388), - [sym_expression] = STATE(600), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_class_declaration] = STATE(341), - [sym_function] = STATE(595), - [sym_function_declaration] = STATE(341), - [sym_generator_function] = STATE(595), - [sym_generator_function_declaration] = STATE(341), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_sequence_expression] = STATE(1227), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(997), - [ts_builtin_sym_end] = ACTIONS(5), - [sym_identifier] = ACTIONS(7), - [sym_hash_bang_line] = ACTIONS(9), - [anon_sym_export] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [anon_sym_const] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_async] = ACTIONS(33), - [anon_sym_static] = ACTIONS(7), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = 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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_program] = STATE(1584), + [sym_export_statement] = STATE(350), + [sym_declaration] = STATE(350), + [sym_import] = STATE(1156), + [sym_import_statement] = STATE(350), + [sym_statement] = STATE(16), + [sym_expression_statement] = STATE(350), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_statement_block] = STATE(350), + [sym_if_statement] = STATE(350), + [sym_switch_statement] = STATE(350), + [sym_for_statement] = STATE(350), + [sym_for_in_statement] = STATE(350), + [sym_while_statement] = STATE(350), + [sym_do_statement] = STATE(350), + [sym_try_statement] = STATE(350), + [sym_with_statement] = STATE(350), + [sym_break_statement] = STATE(350), + [sym_continue_statement] = STATE(350), + [sym_debugger_statement] = STATE(350), + [sym_return_statement] = STATE(350), + [sym_throw_statement] = STATE(350), + [sym_empty_statement] = STATE(350), + [sym_labeled_statement] = STATE(350), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_class_declaration] = STATE(346), + [sym_function_expression] = STATE(609), + [sym_function_declaration] = STATE(346), + [sym_generator_function] = STATE(609), + [sym_generator_function_declaration] = STATE(346), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_sequence_expression] = STATE(1527), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_program_repeat1] = STATE(16), + [aux_sym_export_statement_repeat1] = STATE(1103), + [ts_builtin_sym_end] = ACTIONS(7), + [sym_identifier] = ACTIONS(9), + [sym_hash_bang_line] = ACTIONS(11), + [anon_sym_export] = ACTIONS(13), + [anon_sym_SEMI] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_import] = ACTIONS(19), + [anon_sym_with] = ACTIONS(21), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_if] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_for] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(9), + [anon_sym_set] = ACTIONS(9), + [anon_sym_async] = ACTIONS(39), + [anon_sym_static] = ACTIONS(9), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [2] = { - [sym_export_statement] = STATE(21), - [sym_declaration] = STATE(21), - [sym_import] = STATE(595), - [sym_import_statement] = STATE(21), - [sym_expression_statement] = STATE(21), - [sym_variable_declaration] = STATE(341), - [sym_lexical_declaration] = STATE(341), - [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(388), - [sym_expression] = STATE(600), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_object_assignment_pattern] = STATE(1098), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_class_declaration] = STATE(341), - [sym_function] = STATE(595), - [sym_function_declaration] = STATE(341), - [sym_generator_function] = STATE(595), - [sym_generator_function_declaration] = STATE(341), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1370), - [sym_spread_element] = STATE(1114), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_sequence_expression] = STATE(1227), - [sym_string] = STATE(652), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [sym_rest_pattern] = STATE(1098), - [sym_method_definition] = STATE(1114), - [sym_pair] = STATE(1114), - [sym_pair_pattern] = STATE(1098), - [sym_property_name] = STATE(1111), - [sym_computed_property_name] = STATE(1175), - [aux_sym_program_repeat1] = STATE(21), - [aux_sym_export_statement_repeat1] = STATE(771), - [aux_sym_object_repeat1] = STATE(1117), - [aux_sym_object_pattern_repeat1] = STATE(1153), - [sym_identifier] = ACTIONS(87), - [anon_sym_export] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(91), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_COMMA] = ACTIONS(93), - [anon_sym_RBRACE] = ACTIONS(95), - [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [anon_sym_const] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(97), - [anon_sym_set] = ACTIONS(97), - [anon_sym_async] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(105), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(69), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(107), - [sym_private_property_identifier] = ACTIONS(109), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_export_statement] = STATE(350), + [sym_declaration] = STATE(350), + [sym_import] = STATE(1156), + [sym_import_statement] = STATE(350), + [sym_statement] = STATE(23), + [sym_expression_statement] = STATE(350), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_statement_block] = STATE(350), + [sym_if_statement] = STATE(350), + [sym_switch_statement] = STATE(350), + [sym_for_statement] = STATE(350), + [sym_for_in_statement] = STATE(350), + [sym_while_statement] = STATE(350), + [sym_do_statement] = STATE(350), + [sym_try_statement] = STATE(350), + [sym_with_statement] = STATE(350), + [sym_break_statement] = STATE(350), + [sym_continue_statement] = STATE(350), + [sym_debugger_statement] = STATE(350), + [sym_return_statement] = STATE(350), + [sym_throw_statement] = STATE(350), + [sym_empty_statement] = STATE(350), + [sym_labeled_statement] = STATE(350), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_object_assignment_pattern] = STATE(1218), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_class_declaration] = STATE(346), + [sym_function_expression] = STATE(609), + [sym_function_declaration] = STATE(346), + [sym_generator_function] = STATE(609), + [sym_generator_function_declaration] = STATE(346), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1573), + [sym_spread_element] = STATE(1251), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_sequence_expression] = STATE(1527), + [sym_string] = STATE(670), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [sym_rest_pattern] = STATE(1218), + [sym_method_definition] = STATE(1251), + [sym_pair] = STATE(1251), + [sym_pair_pattern] = STATE(1218), + [sym_property_name] = STATE(1232), + [sym_computed_property_name] = STATE(1424), + [aux_sym_program_repeat1] = STATE(23), + [aux_sym_export_statement_repeat1] = STATE(822), + [aux_sym_object_repeat1] = STATE(1256), + [aux_sym_object_pattern_repeat1] = STATE(1258), + [sym_identifier] = ACTIONS(93), + [anon_sym_export] = ACTIONS(95), + [anon_sym_STAR] = ACTIONS(97), + [anon_sym_SEMI] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_COMMA] = ACTIONS(99), + [anon_sym_RBRACE] = ACTIONS(101), + [anon_sym_import] = ACTIONS(19), + [anon_sym_with] = ACTIONS(21), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(103), + [anon_sym_const] = ACTIONS(27), + [anon_sym_if] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_for] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(105), + [anon_sym_set] = ACTIONS(105), + [anon_sym_async] = ACTIONS(107), + [anon_sym_static] = ACTIONS(109), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(115), + [sym_private_property_identifier] = ACTIONS(117), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [aux_sym_method_definition_token1] = ACTIONS(119), + [sym_html_comment] = ACTIONS(5), }, [3] = { - [sym_export_statement] = STATE(14), - [sym_declaration] = STATE(14), - [sym_import] = STATE(595), - [sym_import_statement] = STATE(14), - [sym_expression_statement] = STATE(14), - [sym_variable_declaration] = STATE(341), - [sym_lexical_declaration] = STATE(341), - [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(388), - [sym_expression] = STATE(600), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_object_assignment_pattern] = STATE(1098), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_class_declaration] = STATE(341), - [sym_function] = STATE(595), - [sym_function_declaration] = STATE(341), - [sym_generator_function] = STATE(595), - [sym_generator_function_declaration] = STATE(341), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1370), - [sym_spread_element] = STATE(1104), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_sequence_expression] = STATE(1227), - [sym_string] = STATE(652), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [sym_rest_pattern] = STATE(1098), - [sym_method_definition] = STATE(1104), - [sym_pair] = STATE(1104), - [sym_pair_pattern] = STATE(1098), - [sym_property_name] = STATE(1111), - [sym_computed_property_name] = STATE(1175), + [sym_export_statement] = STATE(350), + [sym_declaration] = STATE(350), + [sym_import] = STATE(1156), + [sym_import_statement] = STATE(350), + [sym_statement] = STATE(14), + [sym_expression_statement] = STATE(350), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_statement_block] = STATE(350), + [sym_if_statement] = STATE(350), + [sym_switch_statement] = STATE(350), + [sym_for_statement] = STATE(350), + [sym_for_in_statement] = STATE(350), + [sym_while_statement] = STATE(350), + [sym_do_statement] = STATE(350), + [sym_try_statement] = STATE(350), + [sym_with_statement] = STATE(350), + [sym_break_statement] = STATE(350), + [sym_continue_statement] = STATE(350), + [sym_debugger_statement] = STATE(350), + [sym_return_statement] = STATE(350), + [sym_throw_statement] = STATE(350), + [sym_empty_statement] = STATE(350), + [sym_labeled_statement] = STATE(350), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_object_assignment_pattern] = STATE(1218), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_class_declaration] = STATE(346), + [sym_function_expression] = STATE(609), + [sym_function_declaration] = STATE(346), + [sym_generator_function] = STATE(609), + [sym_generator_function_declaration] = STATE(346), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1573), + [sym_spread_element] = STATE(1224), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_sequence_expression] = STATE(1527), + [sym_string] = STATE(670), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [sym_rest_pattern] = STATE(1218), + [sym_method_definition] = STATE(1224), + [sym_pair] = STATE(1224), + [sym_pair_pattern] = STATE(1218), + [sym_property_name] = STATE(1232), + [sym_computed_property_name] = STATE(1424), [aux_sym_program_repeat1] = STATE(14), - [aux_sym_export_statement_repeat1] = STATE(771), - [aux_sym_object_repeat1] = STATE(1143), - [aux_sym_object_pattern_repeat1] = STATE(1153), - [sym_identifier] = ACTIONS(111), - [anon_sym_export] = ACTIONS(113), - [anon_sym_STAR] = ACTIONS(91), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_COMMA] = ACTIONS(93), - [anon_sym_RBRACE] = ACTIONS(115), - [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [anon_sym_const] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(117), - [anon_sym_set] = ACTIONS(117), - [anon_sym_async] = ACTIONS(119), - [anon_sym_static] = ACTIONS(121), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(105), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(69), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(107), - [sym_private_property_identifier] = ACTIONS(109), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [aux_sym_export_statement_repeat1] = STATE(822), + [aux_sym_object_repeat1] = STATE(1247), + [aux_sym_object_pattern_repeat1] = STATE(1258), + [sym_identifier] = ACTIONS(121), + [anon_sym_export] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(97), + [anon_sym_SEMI] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_COMMA] = ACTIONS(99), + [anon_sym_RBRACE] = ACTIONS(125), + [anon_sym_import] = ACTIONS(19), + [anon_sym_with] = ACTIONS(21), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(127), + [anon_sym_const] = ACTIONS(27), + [anon_sym_if] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_for] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(129), + [anon_sym_set] = ACTIONS(129), + [anon_sym_async] = ACTIONS(131), + [anon_sym_static] = ACTIONS(133), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(115), + [sym_private_property_identifier] = ACTIONS(117), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [aux_sym_method_definition_token1] = ACTIONS(119), + [sym_html_comment] = ACTIONS(5), }, [4] = { - [sym_export_statement] = STATE(14), - [sym_declaration] = STATE(14), - [sym_import] = STATE(595), - [sym_import_statement] = STATE(14), - [sym_expression_statement] = STATE(14), - [sym_variable_declaration] = STATE(341), - [sym_lexical_declaration] = STATE(341), - [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(388), - [sym_expression] = STATE(600), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_object_assignment_pattern] = STATE(1098), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_class_declaration] = STATE(341), - [sym_function] = STATE(595), - [sym_function_declaration] = STATE(341), - [sym_generator_function] = STATE(595), - [sym_generator_function_declaration] = STATE(341), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1370), - [sym_spread_element] = STATE(1104), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_sequence_expression] = STATE(1227), - [sym_string] = STATE(652), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [sym_rest_pattern] = STATE(1098), - [sym_method_definition] = STATE(1104), - [sym_pair] = STATE(1104), - [sym_pair_pattern] = STATE(1098), - [sym_property_name] = STATE(1111), - [sym_computed_property_name] = STATE(1175), + [sym_export_statement] = STATE(350), + [sym_declaration] = STATE(350), + [sym_import] = STATE(1156), + [sym_import_statement] = STATE(350), + [sym_statement] = STATE(14), + [sym_expression_statement] = STATE(350), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_statement_block] = STATE(350), + [sym_if_statement] = STATE(350), + [sym_switch_statement] = STATE(350), + [sym_for_statement] = STATE(350), + [sym_for_in_statement] = STATE(350), + [sym_while_statement] = STATE(350), + [sym_do_statement] = STATE(350), + [sym_try_statement] = STATE(350), + [sym_with_statement] = STATE(350), + [sym_break_statement] = STATE(350), + [sym_continue_statement] = STATE(350), + [sym_debugger_statement] = STATE(350), + [sym_return_statement] = STATE(350), + [sym_throw_statement] = STATE(350), + [sym_empty_statement] = STATE(350), + [sym_labeled_statement] = STATE(350), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_object_assignment_pattern] = STATE(1218), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_class_declaration] = STATE(346), + [sym_function_expression] = STATE(609), + [sym_function_declaration] = STATE(346), + [sym_generator_function] = STATE(609), + [sym_generator_function_declaration] = STATE(346), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1573), + [sym_spread_element] = STATE(1224), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_sequence_expression] = STATE(1527), + [sym_string] = STATE(670), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [sym_rest_pattern] = STATE(1218), + [sym_method_definition] = STATE(1224), + [sym_pair] = STATE(1224), + [sym_pair_pattern] = STATE(1218), + [sym_property_name] = STATE(1232), + [sym_computed_property_name] = STATE(1424), [aux_sym_program_repeat1] = STATE(14), - [aux_sym_export_statement_repeat1] = STATE(771), - [aux_sym_object_repeat1] = STATE(1143), - [aux_sym_object_pattern_repeat1] = STATE(1153), - [sym_identifier] = ACTIONS(111), - [anon_sym_export] = ACTIONS(113), - [anon_sym_STAR] = ACTIONS(91), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_COMMA] = ACTIONS(93), - [anon_sym_RBRACE] = ACTIONS(123), - [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [anon_sym_const] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(117), - [anon_sym_set] = ACTIONS(117), - [anon_sym_async] = ACTIONS(119), - [anon_sym_static] = ACTIONS(121), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(105), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(69), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(107), - [sym_private_property_identifier] = ACTIONS(109), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [aux_sym_export_statement_repeat1] = STATE(822), + [aux_sym_object_repeat1] = STATE(1247), + [aux_sym_object_pattern_repeat1] = STATE(1258), + [sym_identifier] = ACTIONS(121), + [anon_sym_export] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(97), + [anon_sym_SEMI] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_COMMA] = ACTIONS(99), + [anon_sym_RBRACE] = ACTIONS(135), + [anon_sym_import] = ACTIONS(19), + [anon_sym_with] = ACTIONS(21), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(127), + [anon_sym_const] = ACTIONS(27), + [anon_sym_if] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_for] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(129), + [anon_sym_set] = ACTIONS(129), + [anon_sym_async] = ACTIONS(131), + [anon_sym_static] = ACTIONS(133), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(115), + [sym_private_property_identifier] = ACTIONS(117), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [aux_sym_method_definition_token1] = ACTIONS(119), + [sym_html_comment] = ACTIONS(5), }, [5] = { - [sym_export_statement] = STATE(12), - [sym_declaration] = STATE(12), - [sym_import] = STATE(595), - [sym_import_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_variable_declaration] = STATE(341), - [sym_lexical_declaration] = STATE(341), - [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(388), - [sym_expression] = STATE(600), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_object_assignment_pattern] = STATE(1098), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_class_declaration] = STATE(341), - [sym_function] = STATE(595), - [sym_function_declaration] = STATE(341), - [sym_generator_function] = STATE(595), - [sym_generator_function_declaration] = STATE(341), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1370), - [sym_spread_element] = STATE(1104), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_sequence_expression] = STATE(1227), - [sym_string] = STATE(652), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [sym_rest_pattern] = STATE(1098), - [sym_method_definition] = STATE(1104), - [sym_pair] = STATE(1104), - [sym_pair_pattern] = STATE(1098), - [sym_property_name] = STATE(1111), - [sym_computed_property_name] = STATE(1175), - [aux_sym_program_repeat1] = STATE(12), - [aux_sym_export_statement_repeat1] = STATE(771), - [aux_sym_object_repeat1] = STATE(1143), - [aux_sym_object_pattern_repeat1] = STATE(1153), - [sym_identifier] = ACTIONS(111), - [anon_sym_export] = ACTIONS(113), - [anon_sym_STAR] = ACTIONS(91), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_COMMA] = ACTIONS(93), - [anon_sym_RBRACE] = ACTIONS(125), - [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [anon_sym_const] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(117), - [anon_sym_set] = ACTIONS(117), - [anon_sym_async] = ACTIONS(119), - [anon_sym_static] = ACTIONS(121), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(105), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(69), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(107), - [sym_private_property_identifier] = ACTIONS(109), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_export_statement] = STATE(350), + [sym_declaration] = STATE(350), + [sym_import] = STATE(1156), + [sym_import_statement] = STATE(350), + [sym_statement] = STATE(23), + [sym_expression_statement] = STATE(350), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_statement_block] = STATE(350), + [sym_if_statement] = STATE(350), + [sym_switch_statement] = STATE(350), + [sym_for_statement] = STATE(350), + [sym_for_in_statement] = STATE(350), + [sym_while_statement] = STATE(350), + [sym_do_statement] = STATE(350), + [sym_try_statement] = STATE(350), + [sym_with_statement] = STATE(350), + [sym_break_statement] = STATE(350), + [sym_continue_statement] = STATE(350), + [sym_debugger_statement] = STATE(350), + [sym_return_statement] = STATE(350), + [sym_throw_statement] = STATE(350), + [sym_empty_statement] = STATE(350), + [sym_labeled_statement] = STATE(350), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_object_assignment_pattern] = STATE(1218), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_class_declaration] = STATE(346), + [sym_function_expression] = STATE(609), + [sym_function_declaration] = STATE(346), + [sym_generator_function] = STATE(609), + [sym_generator_function_declaration] = STATE(346), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1573), + [sym_spread_element] = STATE(1251), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_sequence_expression] = STATE(1527), + [sym_string] = STATE(670), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [sym_rest_pattern] = STATE(1218), + [sym_method_definition] = STATE(1251), + [sym_pair] = STATE(1251), + [sym_pair_pattern] = STATE(1218), + [sym_property_name] = STATE(1232), + [sym_computed_property_name] = STATE(1424), + [aux_sym_program_repeat1] = STATE(23), + [aux_sym_export_statement_repeat1] = STATE(822), + [aux_sym_object_repeat1] = STATE(1256), + [aux_sym_object_pattern_repeat1] = STATE(1258), + [sym_identifier] = ACTIONS(137), + [anon_sym_export] = ACTIONS(139), + [anon_sym_STAR] = ACTIONS(97), + [anon_sym_SEMI] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_COMMA] = ACTIONS(99), + [anon_sym_RBRACE] = ACTIONS(101), + [anon_sym_import] = ACTIONS(19), + [anon_sym_with] = ACTIONS(21), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(141), + [anon_sym_const] = ACTIONS(27), + [anon_sym_if] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_for] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(143), + [anon_sym_set] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_static] = ACTIONS(147), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(115), + [sym_private_property_identifier] = ACTIONS(117), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [aux_sym_method_definition_token1] = ACTIONS(119), + [sym_html_comment] = ACTIONS(5), }, [6] = { - [sym_export_statement] = STATE(21), - [sym_declaration] = STATE(21), - [sym_import] = STATE(595), - [sym_import_statement] = STATE(21), - [sym_expression_statement] = STATE(21), - [sym_variable_declaration] = STATE(341), - [sym_lexical_declaration] = STATE(341), - [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(388), - [sym_expression] = STATE(600), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_object_assignment_pattern] = STATE(1098), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_class_declaration] = STATE(341), - [sym_function] = STATE(595), - [sym_function_declaration] = STATE(341), - [sym_generator_function] = STATE(595), - [sym_generator_function_declaration] = STATE(341), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1370), - [sym_spread_element] = STATE(1114), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_sequence_expression] = STATE(1227), - [sym_string] = STATE(652), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [sym_rest_pattern] = STATE(1098), - [sym_method_definition] = STATE(1114), - [sym_pair] = STATE(1114), - [sym_pair_pattern] = STATE(1098), - [sym_property_name] = STATE(1111), - [sym_computed_property_name] = STATE(1175), - [aux_sym_program_repeat1] = STATE(21), - [aux_sym_export_statement_repeat1] = STATE(771), - [aux_sym_object_repeat1] = STATE(1117), - [aux_sym_object_pattern_repeat1] = STATE(1153), - [sym_identifier] = ACTIONS(127), - [anon_sym_export] = ACTIONS(129), - [anon_sym_STAR] = ACTIONS(91), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_COMMA] = ACTIONS(93), - [anon_sym_RBRACE] = ACTIONS(95), - [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [anon_sym_const] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(131), - [anon_sym_set] = ACTIONS(131), - [anon_sym_async] = ACTIONS(133), - [anon_sym_static] = ACTIONS(135), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(105), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(69), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(107), - [sym_private_property_identifier] = ACTIONS(109), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_export_statement] = STATE(350), + [sym_declaration] = STATE(350), + [sym_import] = STATE(1156), + [sym_import_statement] = STATE(350), + [sym_statement] = STATE(17), + [sym_expression_statement] = STATE(350), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_statement_block] = STATE(350), + [sym_if_statement] = STATE(350), + [sym_switch_statement] = STATE(350), + [sym_for_statement] = STATE(350), + [sym_for_in_statement] = STATE(350), + [sym_while_statement] = STATE(350), + [sym_do_statement] = STATE(350), + [sym_try_statement] = STATE(350), + [sym_with_statement] = STATE(350), + [sym_break_statement] = STATE(350), + [sym_continue_statement] = STATE(350), + [sym_debugger_statement] = STATE(350), + [sym_return_statement] = STATE(350), + [sym_throw_statement] = STATE(350), + [sym_empty_statement] = STATE(350), + [sym_labeled_statement] = STATE(350), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_object_assignment_pattern] = STATE(1218), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_class_declaration] = STATE(346), + [sym_function_expression] = STATE(609), + [sym_function_declaration] = STATE(346), + [sym_generator_function] = STATE(609), + [sym_generator_function_declaration] = STATE(346), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1573), + [sym_spread_element] = STATE(1224), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_sequence_expression] = STATE(1527), + [sym_string] = STATE(670), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [sym_rest_pattern] = STATE(1218), + [sym_method_definition] = STATE(1224), + [sym_pair] = STATE(1224), + [sym_pair_pattern] = STATE(1218), + [sym_property_name] = STATE(1232), + [sym_computed_property_name] = STATE(1424), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(822), + [aux_sym_object_repeat1] = STATE(1247), + [aux_sym_object_pattern_repeat1] = STATE(1258), + [sym_identifier] = ACTIONS(121), + [anon_sym_export] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(97), + [anon_sym_SEMI] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_COMMA] = ACTIONS(99), + [anon_sym_RBRACE] = ACTIONS(149), + [anon_sym_import] = ACTIONS(19), + [anon_sym_with] = ACTIONS(21), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(127), + [anon_sym_const] = ACTIONS(27), + [anon_sym_if] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_for] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(129), + [anon_sym_set] = ACTIONS(129), + [anon_sym_async] = ACTIONS(131), + [anon_sym_static] = ACTIONS(133), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(115), + [sym_private_property_identifier] = ACTIONS(117), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [aux_sym_method_definition_token1] = ACTIONS(119), + [sym_html_comment] = ACTIONS(5), }, [7] = { - [sym_export_statement] = STATE(7), - [sym_declaration] = STATE(7), - [sym_import] = STATE(595), - [sym_import_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(341), - [sym_lexical_declaration] = STATE(341), - [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(388), - [sym_expression] = STATE(600), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_class_declaration] = STATE(341), - [sym_function] = STATE(595), - [sym_function_declaration] = STATE(341), - [sym_generator_function] = STATE(595), - [sym_generator_function_declaration] = STATE(341), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_sequence_expression] = STATE(1227), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), + [sym_export_statement] = STATE(350), + [sym_declaration] = STATE(350), + [sym_import] = STATE(1156), + [sym_import_statement] = STATE(350), + [sym_statement] = STATE(7), + [sym_expression_statement] = STATE(350), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_statement_block] = STATE(350), + [sym_if_statement] = STATE(350), + [sym_switch_statement] = STATE(350), + [sym_for_statement] = STATE(350), + [sym_for_in_statement] = STATE(350), + [sym_while_statement] = STATE(350), + [sym_do_statement] = STATE(350), + [sym_try_statement] = STATE(350), + [sym_with_statement] = STATE(350), + [sym_break_statement] = STATE(350), + [sym_continue_statement] = STATE(350), + [sym_debugger_statement] = STATE(350), + [sym_return_statement] = STATE(350), + [sym_throw_statement] = STATE(350), + [sym_empty_statement] = STATE(350), + [sym_labeled_statement] = STATE(350), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_class_declaration] = STATE(346), + [sym_function_expression] = STATE(609), + [sym_function_declaration] = STATE(346), + [sym_generator_function] = STATE(609), + [sym_generator_function_declaration] = STATE(346), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_sequence_expression] = STATE(1527), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(997), - [ts_builtin_sym_end] = ACTIONS(137), - [sym_identifier] = ACTIONS(139), - [anon_sym_export] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_default] = ACTIONS(148), - [anon_sym_LBRACE] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(137), - [anon_sym_import] = ACTIONS(153), - [anon_sym_var] = ACTIONS(156), - [anon_sym_let] = ACTIONS(159), - [anon_sym_const] = ACTIONS(159), - [anon_sym_if] = ACTIONS(162), - [anon_sym_switch] = ACTIONS(165), - [anon_sym_for] = ACTIONS(168), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(174), - [anon_sym_get] = ACTIONS(139), - [anon_sym_set] = ACTIONS(139), - [anon_sym_async] = ACTIONS(177), - [anon_sym_static] = ACTIONS(139), - [anon_sym_while] = ACTIONS(180), - [anon_sym_do] = ACTIONS(183), - [anon_sym_try] = ACTIONS(186), - [anon_sym_with] = ACTIONS(189), - [anon_sym_break] = ACTIONS(192), - [anon_sym_continue] = ACTIONS(195), - [anon_sym_debugger] = ACTIONS(198), - [anon_sym_return] = ACTIONS(201), - [anon_sym_throw] = ACTIONS(204), - [anon_sym_case] = ACTIONS(148), - [anon_sym_yield] = ACTIONS(207), - [anon_sym_LBRACK] = ACTIONS(210), - [anon_sym_LT] = ACTIONS(213), - [anon_sym_SLASH] = ACTIONS(216), - [anon_sym_class] = ACTIONS(219), - [anon_sym_function] = ACTIONS(222), - [anon_sym_new] = ACTIONS(225), - [anon_sym_PLUS] = ACTIONS(228), - [anon_sym_DASH] = ACTIONS(228), - [anon_sym_BANG] = ACTIONS(231), - [anon_sym_TILDE] = ACTIONS(231), - [anon_sym_typeof] = ACTIONS(228), - [anon_sym_void] = ACTIONS(228), - [anon_sym_delete] = ACTIONS(228), - [anon_sym_PLUS_PLUS] = ACTIONS(234), - [anon_sym_DASH_DASH] = ACTIONS(234), - [anon_sym_DQUOTE] = ACTIONS(237), - [anon_sym_SQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(243), - [sym_number] = ACTIONS(246), - [sym_this] = ACTIONS(249), - [sym_super] = ACTIONS(249), - [sym_true] = ACTIONS(249), - [sym_false] = ACTIONS(249), - [sym_null] = ACTIONS(249), - [sym_undefined] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(255), + [aux_sym_export_statement_repeat1] = STATE(1103), + [ts_builtin_sym_end] = ACTIONS(151), + [sym_identifier] = ACTIONS(153), + [anon_sym_export] = ACTIONS(156), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_default] = ACTIONS(162), + [anon_sym_LBRACE] = ACTIONS(164), + [anon_sym_RBRACE] = ACTIONS(151), + [anon_sym_import] = ACTIONS(167), + [anon_sym_with] = ACTIONS(170), + [anon_sym_var] = ACTIONS(173), + [anon_sym_let] = ACTIONS(176), + [anon_sym_const] = ACTIONS(179), + [anon_sym_if] = ACTIONS(182), + [anon_sym_switch] = ACTIONS(185), + [anon_sym_for] = ACTIONS(188), + [anon_sym_LPAREN] = ACTIONS(191), + [anon_sym_await] = ACTIONS(194), + [anon_sym_get] = ACTIONS(153), + [anon_sym_set] = ACTIONS(153), + [anon_sym_async] = ACTIONS(197), + [anon_sym_static] = ACTIONS(153), + [anon_sym_while] = ACTIONS(200), + [anon_sym_do] = ACTIONS(203), + [anon_sym_try] = ACTIONS(206), + [anon_sym_break] = ACTIONS(209), + [anon_sym_continue] = ACTIONS(212), + [anon_sym_debugger] = ACTIONS(215), + [anon_sym_return] = ACTIONS(218), + [anon_sym_throw] = ACTIONS(221), + [anon_sym_case] = ACTIONS(162), + [anon_sym_yield] = ACTIONS(224), + [anon_sym_LBRACK] = ACTIONS(227), + [anon_sym_LT] = ACTIONS(230), + [anon_sym_DQUOTE] = ACTIONS(233), + [anon_sym_SQUOTE] = ACTIONS(236), + [anon_sym_class] = ACTIONS(239), + [anon_sym_function] = ACTIONS(242), + [anon_sym_new] = ACTIONS(245), + [anon_sym_PLUS] = ACTIONS(248), + [anon_sym_DASH] = ACTIONS(248), + [anon_sym_SLASH] = ACTIONS(251), + [anon_sym_BANG] = ACTIONS(254), + [anon_sym_TILDE] = ACTIONS(254), + [anon_sym_typeof] = ACTIONS(248), + [anon_sym_void] = ACTIONS(248), + [anon_sym_delete] = ACTIONS(248), + [anon_sym_PLUS_PLUS] = ACTIONS(257), + [anon_sym_DASH_DASH] = ACTIONS(257), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(260), + [sym_number] = ACTIONS(263), + [sym_private_property_identifier] = ACTIONS(266), + [sym_this] = ACTIONS(269), + [sym_super] = ACTIONS(269), + [sym_true] = ACTIONS(269), + [sym_false] = ACTIONS(269), + [sym_null] = ACTIONS(269), + [sym_undefined] = ACTIONS(272), + [anon_sym_AT] = ACTIONS(275), + [sym_html_comment] = ACTIONS(5), }, [8] = { - [sym_export_statement] = STATE(7), - [sym_declaration] = STATE(7), - [sym_import] = STATE(595), - [sym_import_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(341), - [sym_lexical_declaration] = STATE(341), - [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(388), - [sym_expression] = STATE(600), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_class_declaration] = STATE(341), - [sym_function] = STATE(595), - [sym_function_declaration] = STATE(341), - [sym_generator_function] = STATE(595), - [sym_generator_function_declaration] = STATE(341), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_sequence_expression] = STATE(1227), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(997), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_default] = ACTIONS(258), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(260), - [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [anon_sym_const] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_async] = ACTIONS(33), - [anon_sym_static] = ACTIONS(7), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_case] = ACTIONS(258), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = 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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_export_statement] = STATE(350), + [sym_declaration] = STATE(350), + [sym_import] = STATE(1156), + [sym_import_statement] = STATE(350), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(350), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_statement_block] = STATE(350), + [sym_if_statement] = STATE(350), + [sym_switch_statement] = STATE(350), + [sym_for_statement] = STATE(350), + [sym_for_in_statement] = STATE(350), + [sym_while_statement] = STATE(350), + [sym_do_statement] = STATE(350), + [sym_try_statement] = STATE(350), + [sym_with_statement] = STATE(350), + [sym_break_statement] = STATE(350), + [sym_continue_statement] = STATE(350), + [sym_debugger_statement] = STATE(350), + [sym_return_statement] = STATE(350), + [sym_throw_statement] = STATE(350), + [sym_empty_statement] = STATE(350), + [sym_labeled_statement] = STATE(350), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_class_declaration] = STATE(346), + [sym_function_expression] = STATE(609), + [sym_function_declaration] = STATE(346), + [sym_generator_function] = STATE(609), + [sym_generator_function_declaration] = STATE(346), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_sequence_expression] = STATE(1527), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(1103), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_SEMI] = ACTIONS(15), + [anon_sym_default] = ACTIONS(278), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(280), + [anon_sym_import] = ACTIONS(19), + [anon_sym_with] = ACTIONS(21), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_if] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_for] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(9), + [anon_sym_set] = ACTIONS(9), + [anon_sym_async] = ACTIONS(39), + [anon_sym_static] = ACTIONS(9), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_case] = ACTIONS(278), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [9] = { - [sym_export_statement] = STATE(8), - [sym_declaration] = STATE(8), - [sym_import] = STATE(595), - [sym_import_statement] = STATE(8), - [sym_expression_statement] = STATE(8), - [sym_variable_declaration] = STATE(341), - [sym_lexical_declaration] = STATE(341), - [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(388), - [sym_expression] = STATE(600), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_class_declaration] = STATE(341), - [sym_function] = STATE(595), - [sym_function_declaration] = STATE(341), - [sym_generator_function] = STATE(595), - [sym_generator_function_declaration] = STATE(341), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_sequence_expression] = STATE(1227), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_program_repeat1] = STATE(8), - [aux_sym_export_statement_repeat1] = STATE(997), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_default] = ACTIONS(262), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(264), - [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [anon_sym_const] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_async] = ACTIONS(33), - [anon_sym_static] = ACTIONS(7), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_case] = ACTIONS(262), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = 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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_export_statement] = STATE(350), + [sym_declaration] = STATE(350), + [sym_import] = STATE(1156), + [sym_import_statement] = STATE(350), + [sym_statement] = STATE(7), + [sym_expression_statement] = STATE(350), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_statement_block] = STATE(350), + [sym_if_statement] = STATE(350), + [sym_switch_statement] = STATE(350), + [sym_for_statement] = STATE(350), + [sym_for_in_statement] = STATE(350), + [sym_while_statement] = STATE(350), + [sym_do_statement] = STATE(350), + [sym_try_statement] = STATE(350), + [sym_with_statement] = STATE(350), + [sym_break_statement] = STATE(350), + [sym_continue_statement] = STATE(350), + [sym_debugger_statement] = STATE(350), + [sym_return_statement] = STATE(350), + [sym_throw_statement] = STATE(350), + [sym_empty_statement] = STATE(350), + [sym_labeled_statement] = STATE(350), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_class_declaration] = STATE(346), + [sym_function_expression] = STATE(609), + [sym_function_declaration] = STATE(346), + [sym_generator_function] = STATE(609), + [sym_generator_function_declaration] = STATE(346), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_sequence_expression] = STATE(1527), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_export_statement_repeat1] = STATE(1103), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_SEMI] = ACTIONS(15), + [anon_sym_default] = ACTIONS(282), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(284), + [anon_sym_import] = ACTIONS(19), + [anon_sym_with] = ACTIONS(21), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_if] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_for] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(9), + [anon_sym_set] = ACTIONS(9), + [anon_sym_async] = ACTIONS(39), + [anon_sym_static] = ACTIONS(9), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_case] = ACTIONS(282), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [10] = { - [sym_export_statement] = STATE(11), - [sym_declaration] = STATE(11), - [sym_import] = STATE(595), - [sym_import_statement] = STATE(11), - [sym_expression_statement] = STATE(11), - [sym_variable_declaration] = STATE(341), - [sym_lexical_declaration] = STATE(341), - [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(388), - [sym_expression] = STATE(600), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_class_declaration] = STATE(341), - [sym_function] = STATE(595), - [sym_function_declaration] = STATE(341), - [sym_generator_function] = STATE(595), - [sym_generator_function_declaration] = STATE(341), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_sequence_expression] = STATE(1227), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_program_repeat1] = STATE(11), - [aux_sym_export_statement_repeat1] = STATE(997), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_default] = ACTIONS(266), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(268), - [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [anon_sym_const] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_async] = ACTIONS(33), - [anon_sym_static] = ACTIONS(7), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_case] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = 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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_export_statement] = STATE(350), + [sym_declaration] = STATE(350), + [sym_import] = STATE(1156), + [sym_import_statement] = STATE(350), + [sym_statement] = STATE(7), + [sym_expression_statement] = STATE(350), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_statement_block] = STATE(350), + [sym_if_statement] = STATE(350), + [sym_switch_statement] = STATE(350), + [sym_for_statement] = STATE(350), + [sym_for_in_statement] = STATE(350), + [sym_while_statement] = STATE(350), + [sym_do_statement] = STATE(350), + [sym_try_statement] = STATE(350), + [sym_with_statement] = STATE(350), + [sym_break_statement] = STATE(350), + [sym_continue_statement] = STATE(350), + [sym_debugger_statement] = STATE(350), + [sym_return_statement] = STATE(350), + [sym_throw_statement] = STATE(350), + [sym_empty_statement] = STATE(350), + [sym_labeled_statement] = STATE(350), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_class_declaration] = STATE(346), + [sym_function_expression] = STATE(609), + [sym_function_declaration] = STATE(346), + [sym_generator_function] = STATE(609), + [sym_generator_function_declaration] = STATE(346), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_sequence_expression] = STATE(1527), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_export_statement_repeat1] = STATE(1103), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_SEMI] = ACTIONS(15), + [anon_sym_default] = ACTIONS(286), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(288), + [anon_sym_import] = ACTIONS(19), + [anon_sym_with] = ACTIONS(21), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_if] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_for] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(9), + [anon_sym_set] = ACTIONS(9), + [anon_sym_async] = ACTIONS(39), + [anon_sym_static] = ACTIONS(9), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_case] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [11] = { - [sym_export_statement] = STATE(7), - [sym_declaration] = STATE(7), - [sym_import] = STATE(595), - [sym_import_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(341), - [sym_lexical_declaration] = STATE(341), - [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(388), - [sym_expression] = STATE(600), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_class_declaration] = STATE(341), - [sym_function] = STATE(595), - [sym_function_declaration] = STATE(341), - [sym_generator_function] = STATE(595), - [sym_generator_function_declaration] = STATE(341), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_sequence_expression] = STATE(1227), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(997), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_default] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(272), - [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [anon_sym_const] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_async] = ACTIONS(33), - [anon_sym_static] = ACTIONS(7), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_case] = ACTIONS(270), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = 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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_export_statement] = STATE(350), + [sym_declaration] = STATE(350), + [sym_import] = STATE(1156), + [sym_import_statement] = STATE(350), + [sym_statement] = STATE(10), + [sym_expression_statement] = STATE(350), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_statement_block] = STATE(350), + [sym_if_statement] = STATE(350), + [sym_switch_statement] = STATE(350), + [sym_for_statement] = STATE(350), + [sym_for_in_statement] = STATE(350), + [sym_while_statement] = STATE(350), + [sym_do_statement] = STATE(350), + [sym_try_statement] = STATE(350), + [sym_with_statement] = STATE(350), + [sym_break_statement] = STATE(350), + [sym_continue_statement] = STATE(350), + [sym_debugger_statement] = STATE(350), + [sym_return_statement] = STATE(350), + [sym_throw_statement] = STATE(350), + [sym_empty_statement] = STATE(350), + [sym_labeled_statement] = STATE(350), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_class_declaration] = STATE(346), + [sym_function_expression] = STATE(609), + [sym_function_declaration] = STATE(346), + [sym_generator_function] = STATE(609), + [sym_generator_function_declaration] = STATE(346), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_sequence_expression] = STATE(1527), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_program_repeat1] = STATE(10), + [aux_sym_export_statement_repeat1] = STATE(1103), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_SEMI] = ACTIONS(15), + [anon_sym_default] = ACTIONS(290), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(292), + [anon_sym_import] = ACTIONS(19), + [anon_sym_with] = ACTIONS(21), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_if] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_for] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(9), + [anon_sym_set] = ACTIONS(9), + [anon_sym_async] = ACTIONS(39), + [anon_sym_static] = ACTIONS(9), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_case] = ACTIONS(290), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [12] = { - [sym_export_statement] = STATE(7), - [sym_declaration] = STATE(7), - [sym_import] = STATE(595), - [sym_import_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(341), - [sym_lexical_declaration] = STATE(341), - [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(388), - [sym_expression] = STATE(600), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_class_declaration] = STATE(341), - [sym_function] = STATE(595), - [sym_function_declaration] = STATE(341), - [sym_generator_function] = STATE(595), - [sym_generator_function_declaration] = STATE(341), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_sequence_expression] = STATE(1227), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), + [sym_export_statement] = STATE(350), + [sym_declaration] = STATE(350), + [sym_import] = STATE(1156), + [sym_import_statement] = STATE(350), + [sym_statement] = STATE(7), + [sym_expression_statement] = STATE(350), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_statement_block] = STATE(350), + [sym_if_statement] = STATE(350), + [sym_switch_statement] = STATE(350), + [sym_for_statement] = STATE(350), + [sym_for_in_statement] = STATE(350), + [sym_while_statement] = STATE(350), + [sym_do_statement] = STATE(350), + [sym_try_statement] = STATE(350), + [sym_with_statement] = STATE(350), + [sym_break_statement] = STATE(350), + [sym_continue_statement] = STATE(350), + [sym_debugger_statement] = STATE(350), + [sym_return_statement] = STATE(350), + [sym_throw_statement] = STATE(350), + [sym_empty_statement] = STATE(350), + [sym_labeled_statement] = STATE(350), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_class_declaration] = STATE(346), + [sym_function_expression] = STATE(609), + [sym_function_declaration] = STATE(346), + [sym_generator_function] = STATE(609), + [sym_generator_function_declaration] = STATE(346), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_sequence_expression] = STATE(1527), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(997), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(274), - [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [anon_sym_const] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_async] = ACTIONS(33), - [anon_sym_static] = ACTIONS(7), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = 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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [aux_sym_export_statement_repeat1] = STATE(1103), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_SEMI] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(294), + [anon_sym_import] = ACTIONS(19), + [anon_sym_with] = ACTIONS(21), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_if] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_for] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(9), + [anon_sym_set] = ACTIONS(9), + [anon_sym_async] = ACTIONS(39), + [anon_sym_static] = ACTIONS(9), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [13] = { - [sym_export_statement] = STATE(14), - [sym_declaration] = STATE(14), - [sym_import] = STATE(595), - [sym_import_statement] = STATE(14), - [sym_expression_statement] = STATE(14), - [sym_variable_declaration] = STATE(341), - [sym_lexical_declaration] = STATE(341), - [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(388), - [sym_expression] = STATE(600), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_class_declaration] = STATE(341), - [sym_function] = STATE(595), - [sym_function_declaration] = STATE(341), - [sym_generator_function] = STATE(595), - [sym_generator_function_declaration] = STATE(341), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_sequence_expression] = STATE(1227), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_program_repeat1] = STATE(14), - [aux_sym_export_statement_repeat1] = STATE(997), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(276), - [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [anon_sym_const] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_async] = ACTIONS(33), - [anon_sym_static] = ACTIONS(7), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = 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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_export_statement] = STATE(350), + [sym_declaration] = STATE(350), + [sym_import] = STATE(1156), + [sym_import_statement] = STATE(350), + [sym_statement] = STATE(7), + [sym_expression_statement] = STATE(350), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_statement_block] = STATE(350), + [sym_if_statement] = STATE(350), + [sym_switch_statement] = STATE(350), + [sym_for_statement] = STATE(350), + [sym_for_in_statement] = STATE(350), + [sym_while_statement] = STATE(350), + [sym_do_statement] = STATE(350), + [sym_try_statement] = STATE(350), + [sym_with_statement] = STATE(350), + [sym_break_statement] = STATE(350), + [sym_continue_statement] = STATE(350), + [sym_debugger_statement] = STATE(350), + [sym_return_statement] = STATE(350), + [sym_throw_statement] = STATE(350), + [sym_empty_statement] = STATE(350), + [sym_labeled_statement] = STATE(350), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_class_declaration] = STATE(346), + [sym_function_expression] = STATE(609), + [sym_function_declaration] = STATE(346), + [sym_generator_function] = STATE(609), + [sym_generator_function_declaration] = STATE(346), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_sequence_expression] = STATE(1527), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_export_statement_repeat1] = STATE(1103), + [ts_builtin_sym_end] = ACTIONS(296), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_SEMI] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_import] = ACTIONS(19), + [anon_sym_with] = ACTIONS(21), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_if] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_for] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(9), + [anon_sym_set] = ACTIONS(9), + [anon_sym_async] = ACTIONS(39), + [anon_sym_static] = ACTIONS(9), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [14] = { - [sym_export_statement] = STATE(7), - [sym_declaration] = STATE(7), - [sym_import] = STATE(595), - [sym_import_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(341), - [sym_lexical_declaration] = STATE(341), - [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(388), - [sym_expression] = STATE(600), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_class_declaration] = STATE(341), - [sym_function] = STATE(595), - [sym_function_declaration] = STATE(341), - [sym_generator_function] = STATE(595), - [sym_generator_function_declaration] = STATE(341), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_sequence_expression] = STATE(1227), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), + [sym_export_statement] = STATE(350), + [sym_declaration] = STATE(350), + [sym_import] = STATE(1156), + [sym_import_statement] = STATE(350), + [sym_statement] = STATE(7), + [sym_expression_statement] = STATE(350), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_statement_block] = STATE(350), + [sym_if_statement] = STATE(350), + [sym_switch_statement] = STATE(350), + [sym_for_statement] = STATE(350), + [sym_for_in_statement] = STATE(350), + [sym_while_statement] = STATE(350), + [sym_do_statement] = STATE(350), + [sym_try_statement] = STATE(350), + [sym_with_statement] = STATE(350), + [sym_break_statement] = STATE(350), + [sym_continue_statement] = STATE(350), + [sym_debugger_statement] = STATE(350), + [sym_return_statement] = STATE(350), + [sym_throw_statement] = STATE(350), + [sym_empty_statement] = STATE(350), + [sym_labeled_statement] = STATE(350), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_class_declaration] = STATE(346), + [sym_function_expression] = STATE(609), + [sym_function_declaration] = STATE(346), + [sym_generator_function] = STATE(609), + [sym_generator_function_declaration] = STATE(346), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_sequence_expression] = STATE(1527), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(997), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(278), - [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [anon_sym_const] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_async] = ACTIONS(33), - [anon_sym_static] = ACTIONS(7), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = 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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [aux_sym_export_statement_repeat1] = STATE(1103), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_SEMI] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(298), + [anon_sym_import] = ACTIONS(19), + [anon_sym_with] = ACTIONS(21), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_if] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_for] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(9), + [anon_sym_set] = ACTIONS(9), + [anon_sym_async] = ACTIONS(39), + [anon_sym_static] = ACTIONS(9), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [15] = { - [sym_export_statement] = STATE(7), - [sym_declaration] = STATE(7), - [sym_import] = STATE(595), - [sym_import_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(341), - [sym_lexical_declaration] = STATE(341), - [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(388), - [sym_expression] = STATE(600), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_class_declaration] = STATE(341), - [sym_function] = STATE(595), - [sym_function_declaration] = STATE(341), - [sym_generator_function] = STATE(595), - [sym_generator_function_declaration] = STATE(341), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_sequence_expression] = STATE(1227), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(997), - [ts_builtin_sym_end] = ACTIONS(280), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [anon_sym_const] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_async] = ACTIONS(33), - [anon_sym_static] = ACTIONS(7), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = 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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_export_statement] = STATE(350), + [sym_declaration] = STATE(350), + [sym_import] = STATE(1156), + [sym_import_statement] = STATE(350), + [sym_statement] = STATE(17), + [sym_expression_statement] = STATE(350), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_statement_block] = STATE(350), + [sym_if_statement] = STATE(350), + [sym_switch_statement] = STATE(350), + [sym_for_statement] = STATE(350), + [sym_for_in_statement] = STATE(350), + [sym_while_statement] = STATE(350), + [sym_do_statement] = STATE(350), + [sym_try_statement] = STATE(350), + [sym_with_statement] = STATE(350), + [sym_break_statement] = STATE(350), + [sym_continue_statement] = STATE(350), + [sym_debugger_statement] = STATE(350), + [sym_return_statement] = STATE(350), + [sym_throw_statement] = STATE(350), + [sym_empty_statement] = STATE(350), + [sym_labeled_statement] = STATE(350), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_class_declaration] = STATE(346), + [sym_function_expression] = STATE(609), + [sym_function_declaration] = STATE(346), + [sym_generator_function] = STATE(609), + [sym_generator_function_declaration] = STATE(346), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_sequence_expression] = STATE(1527), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(1103), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_SEMI] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(300), + [anon_sym_import] = ACTIONS(19), + [anon_sym_with] = ACTIONS(21), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_if] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_for] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(9), + [anon_sym_set] = ACTIONS(9), + [anon_sym_async] = ACTIONS(39), + [anon_sym_static] = ACTIONS(9), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [16] = { - [sym_export_statement] = STATE(17), - [sym_declaration] = STATE(17), - [sym_import] = STATE(595), - [sym_import_statement] = STATE(17), - [sym_expression_statement] = STATE(17), - [sym_variable_declaration] = STATE(341), - [sym_lexical_declaration] = STATE(341), - [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(388), - [sym_expression] = STATE(600), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_class_declaration] = STATE(341), - [sym_function] = STATE(595), - [sym_function_declaration] = STATE(341), - [sym_generator_function] = STATE(595), - [sym_generator_function_declaration] = STATE(341), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_sequence_expression] = STATE(1227), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(997), - [ts_builtin_sym_end] = ACTIONS(280), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [anon_sym_const] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_async] = ACTIONS(33), - [anon_sym_static] = ACTIONS(7), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = 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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_export_statement] = STATE(350), + [sym_declaration] = STATE(350), + [sym_import] = STATE(1156), + [sym_import_statement] = STATE(350), + [sym_statement] = STATE(7), + [sym_expression_statement] = STATE(350), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_statement_block] = STATE(350), + [sym_if_statement] = STATE(350), + [sym_switch_statement] = STATE(350), + [sym_for_statement] = STATE(350), + [sym_for_in_statement] = STATE(350), + [sym_while_statement] = STATE(350), + [sym_do_statement] = STATE(350), + [sym_try_statement] = STATE(350), + [sym_with_statement] = STATE(350), + [sym_break_statement] = STATE(350), + [sym_continue_statement] = STATE(350), + [sym_debugger_statement] = STATE(350), + [sym_return_statement] = STATE(350), + [sym_throw_statement] = STATE(350), + [sym_empty_statement] = STATE(350), + [sym_labeled_statement] = STATE(350), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_class_declaration] = STATE(346), + [sym_function_expression] = STATE(609), + [sym_function_declaration] = STATE(346), + [sym_generator_function] = STATE(609), + [sym_generator_function_declaration] = STATE(346), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_sequence_expression] = STATE(1527), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_export_statement_repeat1] = STATE(1103), + [ts_builtin_sym_end] = ACTIONS(302), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_SEMI] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_import] = ACTIONS(19), + [anon_sym_with] = ACTIONS(21), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_if] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_for] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(9), + [anon_sym_set] = ACTIONS(9), + [anon_sym_async] = ACTIONS(39), + [anon_sym_static] = ACTIONS(9), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [17] = { - [sym_export_statement] = STATE(7), - [sym_declaration] = STATE(7), - [sym_import] = STATE(595), - [sym_import_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(341), - [sym_lexical_declaration] = STATE(341), - [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(388), - [sym_expression] = STATE(600), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_class_declaration] = STATE(341), - [sym_function] = STATE(595), - [sym_function_declaration] = STATE(341), - [sym_generator_function] = STATE(595), - [sym_generator_function_declaration] = STATE(341), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_sequence_expression] = STATE(1227), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), + [sym_export_statement] = STATE(350), + [sym_declaration] = STATE(350), + [sym_import] = STATE(1156), + [sym_import_statement] = STATE(350), + [sym_statement] = STATE(7), + [sym_expression_statement] = STATE(350), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_statement_block] = STATE(350), + [sym_if_statement] = STATE(350), + [sym_switch_statement] = STATE(350), + [sym_for_statement] = STATE(350), + [sym_for_in_statement] = STATE(350), + [sym_while_statement] = STATE(350), + [sym_do_statement] = STATE(350), + [sym_try_statement] = STATE(350), + [sym_with_statement] = STATE(350), + [sym_break_statement] = STATE(350), + [sym_continue_statement] = STATE(350), + [sym_debugger_statement] = STATE(350), + [sym_return_statement] = STATE(350), + [sym_throw_statement] = STATE(350), + [sym_empty_statement] = STATE(350), + [sym_labeled_statement] = STATE(350), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_class_declaration] = STATE(346), + [sym_function_expression] = STATE(609), + [sym_function_declaration] = STATE(346), + [sym_generator_function] = STATE(609), + [sym_generator_function_declaration] = STATE(346), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_sequence_expression] = STATE(1527), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(997), - [ts_builtin_sym_end] = ACTIONS(282), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [anon_sym_const] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_async] = ACTIONS(33), - [anon_sym_static] = ACTIONS(7), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = 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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [aux_sym_export_statement_repeat1] = STATE(1103), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_SEMI] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(304), + [anon_sym_import] = ACTIONS(19), + [anon_sym_with] = ACTIONS(21), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_if] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_for] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(9), + [anon_sym_set] = ACTIONS(9), + [anon_sym_async] = ACTIONS(39), + [anon_sym_static] = ACTIONS(9), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [18] = { - [sym_export_statement] = STATE(22), - [sym_declaration] = STATE(22), - [sym_import] = STATE(595), - [sym_import_statement] = STATE(22), - [sym_expression_statement] = STATE(22), - [sym_variable_declaration] = STATE(341), - [sym_lexical_declaration] = STATE(341), - [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(388), - [sym_expression] = STATE(600), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_class_declaration] = STATE(341), - [sym_function] = STATE(595), - [sym_function_declaration] = STATE(341), - [sym_generator_function] = STATE(595), - [sym_generator_function_declaration] = STATE(341), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_sequence_expression] = STATE(1227), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_program_repeat1] = STATE(22), - [aux_sym_export_statement_repeat1] = STATE(997), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(284), - [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [anon_sym_const] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_async] = ACTIONS(33), - [anon_sym_static] = ACTIONS(7), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = 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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_export_statement] = STATE(350), + [sym_declaration] = STATE(350), + [sym_import] = STATE(1156), + [sym_import_statement] = STATE(350), + [sym_statement] = STATE(23), + [sym_expression_statement] = STATE(350), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_statement_block] = STATE(350), + [sym_if_statement] = STATE(350), + [sym_switch_statement] = STATE(350), + [sym_for_statement] = STATE(350), + [sym_for_in_statement] = STATE(350), + [sym_while_statement] = STATE(350), + [sym_do_statement] = STATE(350), + [sym_try_statement] = STATE(350), + [sym_with_statement] = STATE(350), + [sym_break_statement] = STATE(350), + [sym_continue_statement] = STATE(350), + [sym_debugger_statement] = STATE(350), + [sym_return_statement] = STATE(350), + [sym_throw_statement] = STATE(350), + [sym_empty_statement] = STATE(350), + [sym_labeled_statement] = STATE(350), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_class_declaration] = STATE(346), + [sym_function_expression] = STATE(609), + [sym_function_declaration] = STATE(346), + [sym_generator_function] = STATE(609), + [sym_generator_function_declaration] = STATE(346), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_sequence_expression] = STATE(1527), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_program_repeat1] = STATE(23), + [aux_sym_export_statement_repeat1] = STATE(1103), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_SEMI] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(306), + [anon_sym_import] = ACTIONS(19), + [anon_sym_with] = ACTIONS(21), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_if] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_for] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(9), + [anon_sym_set] = ACTIONS(9), + [anon_sym_async] = ACTIONS(39), + [anon_sym_static] = ACTIONS(9), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [19] = { - [sym_export_statement] = STATE(21), - [sym_declaration] = STATE(21), - [sym_import] = STATE(595), - [sym_import_statement] = STATE(21), - [sym_expression_statement] = STATE(21), - [sym_variable_declaration] = STATE(341), - [sym_lexical_declaration] = STATE(341), - [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(388), - [sym_expression] = STATE(600), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_class_declaration] = STATE(341), - [sym_function] = STATE(595), - [sym_function_declaration] = STATE(341), - [sym_generator_function] = STATE(595), - [sym_generator_function_declaration] = STATE(341), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_sequence_expression] = STATE(1227), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_program_repeat1] = STATE(21), - [aux_sym_export_statement_repeat1] = STATE(997), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(286), - [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [anon_sym_const] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_async] = ACTIONS(33), - [anon_sym_static] = ACTIONS(7), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = 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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_export_statement] = STATE(350), + [sym_declaration] = STATE(350), + [sym_import] = STATE(1156), + [sym_import_statement] = STATE(350), + [sym_statement] = STATE(12), + [sym_expression_statement] = STATE(350), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_statement_block] = STATE(350), + [sym_if_statement] = STATE(350), + [sym_switch_statement] = STATE(350), + [sym_for_statement] = STATE(350), + [sym_for_in_statement] = STATE(350), + [sym_while_statement] = STATE(350), + [sym_do_statement] = STATE(350), + [sym_try_statement] = STATE(350), + [sym_with_statement] = STATE(350), + [sym_break_statement] = STATE(350), + [sym_continue_statement] = STATE(350), + [sym_debugger_statement] = STATE(350), + [sym_return_statement] = STATE(350), + [sym_throw_statement] = STATE(350), + [sym_empty_statement] = STATE(350), + [sym_labeled_statement] = STATE(350), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_class_declaration] = STATE(346), + [sym_function_expression] = STATE(609), + [sym_function_declaration] = STATE(346), + [sym_generator_function] = STATE(609), + [sym_generator_function_declaration] = STATE(346), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_sequence_expression] = STATE(1527), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_program_repeat1] = STATE(12), + [aux_sym_export_statement_repeat1] = STATE(1103), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_SEMI] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(308), + [anon_sym_import] = ACTIONS(19), + [anon_sym_with] = ACTIONS(21), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_if] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_for] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(9), + [anon_sym_set] = ACTIONS(9), + [anon_sym_async] = ACTIONS(39), + [anon_sym_static] = ACTIONS(9), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [20] = { - [sym_export_statement] = STATE(12), - [sym_declaration] = STATE(12), - [sym_import] = STATE(595), - [sym_import_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_variable_declaration] = STATE(341), - [sym_lexical_declaration] = STATE(341), - [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(388), - [sym_expression] = STATE(600), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_class_declaration] = STATE(341), - [sym_function] = STATE(595), - [sym_function_declaration] = STATE(341), - [sym_generator_function] = STATE(595), - [sym_generator_function_declaration] = STATE(341), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_sequence_expression] = STATE(1227), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_program_repeat1] = STATE(12), - [aux_sym_export_statement_repeat1] = STATE(997), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(288), - [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [anon_sym_const] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_async] = ACTIONS(33), - [anon_sym_static] = ACTIONS(7), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = 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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_export_statement] = STATE(350), + [sym_declaration] = STATE(350), + [sym_import] = STATE(1156), + [sym_import_statement] = STATE(350), + [sym_statement] = STATE(7), + [sym_expression_statement] = STATE(350), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_statement_block] = STATE(350), + [sym_if_statement] = STATE(350), + [sym_switch_statement] = STATE(350), + [sym_for_statement] = STATE(350), + [sym_for_in_statement] = STATE(350), + [sym_while_statement] = STATE(350), + [sym_do_statement] = STATE(350), + [sym_try_statement] = STATE(350), + [sym_with_statement] = STATE(350), + [sym_break_statement] = STATE(350), + [sym_continue_statement] = STATE(350), + [sym_debugger_statement] = STATE(350), + [sym_return_statement] = STATE(350), + [sym_throw_statement] = STATE(350), + [sym_empty_statement] = STATE(350), + [sym_labeled_statement] = STATE(350), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_class_declaration] = STATE(346), + [sym_function_expression] = STATE(609), + [sym_function_declaration] = STATE(346), + [sym_generator_function] = STATE(609), + [sym_generator_function_declaration] = STATE(346), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_sequence_expression] = STATE(1527), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_export_statement_repeat1] = STATE(1103), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_SEMI] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(310), + [anon_sym_import] = ACTIONS(19), + [anon_sym_with] = ACTIONS(21), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_if] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_for] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(9), + [anon_sym_set] = ACTIONS(9), + [anon_sym_async] = ACTIONS(39), + [anon_sym_static] = ACTIONS(9), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [21] = { - [sym_export_statement] = STATE(7), - [sym_declaration] = STATE(7), - [sym_import] = STATE(595), - [sym_import_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(341), - [sym_lexical_declaration] = STATE(341), - [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(388), - [sym_expression] = STATE(600), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_class_declaration] = STATE(341), - [sym_function] = STATE(595), - [sym_function_declaration] = STATE(341), - [sym_generator_function] = STATE(595), - [sym_generator_function_declaration] = STATE(341), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_sequence_expression] = STATE(1227), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(997), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(290), - [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [anon_sym_const] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_async] = ACTIONS(33), - [anon_sym_static] = ACTIONS(7), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = 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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_export_statement] = STATE(350), + [sym_declaration] = STATE(350), + [sym_import] = STATE(1156), + [sym_import_statement] = STATE(350), + [sym_statement] = STATE(14), + [sym_expression_statement] = STATE(350), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_statement_block] = STATE(350), + [sym_if_statement] = STATE(350), + [sym_switch_statement] = STATE(350), + [sym_for_statement] = STATE(350), + [sym_for_in_statement] = STATE(350), + [sym_while_statement] = STATE(350), + [sym_do_statement] = STATE(350), + [sym_try_statement] = STATE(350), + [sym_with_statement] = STATE(350), + [sym_break_statement] = STATE(350), + [sym_continue_statement] = STATE(350), + [sym_debugger_statement] = STATE(350), + [sym_return_statement] = STATE(350), + [sym_throw_statement] = STATE(350), + [sym_empty_statement] = STATE(350), + [sym_labeled_statement] = STATE(350), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_class_declaration] = STATE(346), + [sym_function_expression] = STATE(609), + [sym_function_declaration] = STATE(346), + [sym_generator_function] = STATE(609), + [sym_generator_function_declaration] = STATE(346), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_sequence_expression] = STATE(1527), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_program_repeat1] = STATE(14), + [aux_sym_export_statement_repeat1] = STATE(1103), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_SEMI] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(312), + [anon_sym_import] = ACTIONS(19), + [anon_sym_with] = ACTIONS(21), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_if] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_for] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(9), + [anon_sym_set] = ACTIONS(9), + [anon_sym_async] = ACTIONS(39), + [anon_sym_static] = ACTIONS(9), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [22] = { - [sym_export_statement] = STATE(7), - [sym_declaration] = STATE(7), - [sym_import] = STATE(595), - [sym_import_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(341), - [sym_lexical_declaration] = STATE(341), - [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(388), - [sym_expression] = STATE(600), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_class_declaration] = STATE(341), - [sym_function] = STATE(595), - [sym_function_declaration] = STATE(341), - [sym_generator_function] = STATE(595), - [sym_generator_function_declaration] = STATE(341), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_sequence_expression] = STATE(1227), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(997), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(292), - [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [anon_sym_const] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_async] = ACTIONS(33), - [anon_sym_static] = ACTIONS(7), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = 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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_export_statement] = STATE(350), + [sym_declaration] = STATE(350), + [sym_import] = STATE(1156), + [sym_import_statement] = STATE(350), + [sym_statement] = STATE(20), + [sym_expression_statement] = STATE(350), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_statement_block] = STATE(350), + [sym_if_statement] = STATE(350), + [sym_switch_statement] = STATE(350), + [sym_for_statement] = STATE(350), + [sym_for_in_statement] = STATE(350), + [sym_while_statement] = STATE(350), + [sym_do_statement] = STATE(350), + [sym_try_statement] = STATE(350), + [sym_with_statement] = STATE(350), + [sym_break_statement] = STATE(350), + [sym_continue_statement] = STATE(350), + [sym_debugger_statement] = STATE(350), + [sym_return_statement] = STATE(350), + [sym_throw_statement] = STATE(350), + [sym_empty_statement] = STATE(350), + [sym_labeled_statement] = STATE(350), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_class_declaration] = STATE(346), + [sym_function_expression] = STATE(609), + [sym_function_declaration] = STATE(346), + [sym_generator_function] = STATE(609), + [sym_generator_function_declaration] = STATE(346), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_sequence_expression] = STATE(1527), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_program_repeat1] = STATE(20), + [aux_sym_export_statement_repeat1] = STATE(1103), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_SEMI] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(314), + [anon_sym_import] = ACTIONS(19), + [anon_sym_with] = ACTIONS(21), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_if] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_for] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(9), + [anon_sym_set] = ACTIONS(9), + [anon_sym_async] = ACTIONS(39), + [anon_sym_static] = ACTIONS(9), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [23] = { - [sym_export_statement] = STATE(353), - [sym_declaration] = STATE(353), - [sym_import] = STATE(595), - [sym_import_statement] = STATE(353), - [sym_expression_statement] = STATE(353), - [sym_variable_declaration] = STATE(341), - [sym_lexical_declaration] = STATE(341), - [sym_statement_block] = STATE(353), - [sym_if_statement] = STATE(353), - [sym_switch_statement] = STATE(353), - [sym_for_statement] = STATE(353), - [sym_for_in_statement] = STATE(353), - [sym_while_statement] = STATE(353), - [sym_do_statement] = STATE(353), - [sym_try_statement] = STATE(353), - [sym_with_statement] = STATE(353), - [sym_break_statement] = STATE(353), - [sym_continue_statement] = STATE(353), - [sym_debugger_statement] = STATE(353), - [sym_return_statement] = STATE(353), - [sym_throw_statement] = STATE(353), - [sym_empty_statement] = STATE(353), - [sym_labeled_statement] = STATE(353), - [sym_parenthesized_expression] = STATE(388), - [sym_expression] = STATE(600), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_class_declaration] = STATE(341), - [sym_function] = STATE(595), - [sym_function_declaration] = STATE(341), - [sym_generator_function] = STATE(595), - [sym_generator_function_declaration] = STATE(341), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_sequence_expression] = STATE(1227), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_export_statement_repeat1] = STATE(997), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [anon_sym_const] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_async] = ACTIONS(33), - [anon_sym_static] = ACTIONS(7), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = 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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_export_statement] = STATE(350), + [sym_declaration] = STATE(350), + [sym_import] = STATE(1156), + [sym_import_statement] = STATE(350), + [sym_statement] = STATE(7), + [sym_expression_statement] = STATE(350), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_statement_block] = STATE(350), + [sym_if_statement] = STATE(350), + [sym_switch_statement] = STATE(350), + [sym_for_statement] = STATE(350), + [sym_for_in_statement] = STATE(350), + [sym_while_statement] = STATE(350), + [sym_do_statement] = STATE(350), + [sym_try_statement] = STATE(350), + [sym_with_statement] = STATE(350), + [sym_break_statement] = STATE(350), + [sym_continue_statement] = STATE(350), + [sym_debugger_statement] = STATE(350), + [sym_return_statement] = STATE(350), + [sym_throw_statement] = STATE(350), + [sym_empty_statement] = STATE(350), + [sym_labeled_statement] = STATE(350), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_class_declaration] = STATE(346), + [sym_function_expression] = STATE(609), + [sym_function_declaration] = STATE(346), + [sym_generator_function] = STATE(609), + [sym_generator_function_declaration] = STATE(346), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_sequence_expression] = STATE(1527), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_export_statement_repeat1] = STATE(1103), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_SEMI] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(316), + [anon_sym_import] = ACTIONS(19), + [anon_sym_with] = ACTIONS(21), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_if] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_for] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(9), + [anon_sym_set] = ACTIONS(9), + [anon_sym_async] = ACTIONS(39), + [anon_sym_static] = ACTIONS(9), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [24] = { - [sym_export_statement] = STATE(318), - [sym_declaration] = STATE(318), - [sym_import] = STATE(595), - [sym_import_statement] = STATE(318), - [sym_expression_statement] = STATE(318), - [sym_variable_declaration] = STATE(341), - [sym_lexical_declaration] = STATE(341), - [sym_statement_block] = STATE(318), - [sym_if_statement] = STATE(318), - [sym_switch_statement] = STATE(318), - [sym_for_statement] = STATE(318), - [sym_for_in_statement] = STATE(318), - [sym_while_statement] = STATE(318), - [sym_do_statement] = STATE(318), - [sym_try_statement] = STATE(318), - [sym_with_statement] = STATE(318), - [sym_break_statement] = STATE(318), - [sym_continue_statement] = STATE(318), - [sym_debugger_statement] = STATE(318), - [sym_return_statement] = STATE(318), - [sym_throw_statement] = STATE(318), - [sym_empty_statement] = STATE(318), - [sym_labeled_statement] = STATE(318), - [sym_parenthesized_expression] = STATE(388), - [sym_expression] = STATE(600), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_class_declaration] = STATE(341), - [sym_function] = STATE(595), - [sym_function_declaration] = STATE(341), - [sym_generator_function] = STATE(595), - [sym_generator_function_declaration] = STATE(341), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_sequence_expression] = STATE(1227), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_export_statement_repeat1] = STATE(997), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [anon_sym_const] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_async] = ACTIONS(33), - [anon_sym_static] = ACTIONS(7), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = 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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_export_statement] = STATE(350), + [sym_declaration] = STATE(350), + [sym_import] = STATE(1156), + [sym_import_statement] = STATE(350), + [sym_statement] = STATE(13), + [sym_expression_statement] = STATE(350), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_statement_block] = STATE(350), + [sym_if_statement] = STATE(350), + [sym_switch_statement] = STATE(350), + [sym_for_statement] = STATE(350), + [sym_for_in_statement] = STATE(350), + [sym_while_statement] = STATE(350), + [sym_do_statement] = STATE(350), + [sym_try_statement] = STATE(350), + [sym_with_statement] = STATE(350), + [sym_break_statement] = STATE(350), + [sym_continue_statement] = STATE(350), + [sym_debugger_statement] = STATE(350), + [sym_return_statement] = STATE(350), + [sym_throw_statement] = STATE(350), + [sym_empty_statement] = STATE(350), + [sym_labeled_statement] = STATE(350), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_class_declaration] = STATE(346), + [sym_function_expression] = STATE(609), + [sym_function_declaration] = STATE(346), + [sym_generator_function] = STATE(609), + [sym_generator_function_declaration] = STATE(346), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_sequence_expression] = STATE(1527), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_program_repeat1] = STATE(13), + [aux_sym_export_statement_repeat1] = STATE(1103), + [ts_builtin_sym_end] = ACTIONS(302), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_SEMI] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_import] = ACTIONS(19), + [anon_sym_with] = ACTIONS(21), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_if] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_for] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(9), + [anon_sym_set] = ACTIONS(9), + [anon_sym_async] = ACTIONS(39), + [anon_sym_static] = ACTIONS(9), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [25] = { - [sym_export_statement] = STATE(339), - [sym_declaration] = STATE(339), - [sym_import] = STATE(595), - [sym_import_statement] = STATE(339), - [sym_expression_statement] = STATE(339), - [sym_variable_declaration] = STATE(341), - [sym_lexical_declaration] = STATE(341), - [sym_statement_block] = STATE(339), - [sym_if_statement] = STATE(339), - [sym_switch_statement] = STATE(339), - [sym_for_statement] = STATE(339), - [sym_for_in_statement] = STATE(339), - [sym_while_statement] = STATE(339), - [sym_do_statement] = STATE(339), - [sym_try_statement] = STATE(339), - [sym_with_statement] = STATE(339), - [sym_break_statement] = STATE(339), - [sym_continue_statement] = STATE(339), - [sym_debugger_statement] = STATE(339), - [sym_return_statement] = STATE(339), - [sym_throw_statement] = STATE(339), - [sym_empty_statement] = STATE(339), - [sym_labeled_statement] = STATE(339), - [sym_parenthesized_expression] = STATE(388), - [sym_expression] = STATE(600), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_class_declaration] = STATE(341), - [sym_function] = STATE(595), - [sym_function_declaration] = STATE(341), - [sym_generator_function] = STATE(595), - [sym_generator_function_declaration] = STATE(341), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_sequence_expression] = STATE(1227), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_export_statement_repeat1] = STATE(997), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [anon_sym_const] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_async] = ACTIONS(33), - [anon_sym_static] = ACTIONS(7), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = 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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_export_statement] = STATE(350), + [sym_declaration] = STATE(350), + [sym_import] = STATE(1156), + [sym_import_statement] = STATE(350), + [sym_statement] = STATE(388), + [sym_expression_statement] = STATE(350), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_statement_block] = STATE(350), + [sym_if_statement] = STATE(350), + [sym_switch_statement] = STATE(350), + [sym_for_statement] = STATE(350), + [sym_for_in_statement] = STATE(350), + [sym_while_statement] = STATE(350), + [sym_do_statement] = STATE(350), + [sym_try_statement] = STATE(350), + [sym_with_statement] = STATE(350), + [sym_break_statement] = STATE(350), + [sym_continue_statement] = STATE(350), + [sym_debugger_statement] = STATE(350), + [sym_return_statement] = STATE(350), + [sym_throw_statement] = STATE(350), + [sym_empty_statement] = STATE(350), + [sym_labeled_statement] = STATE(350), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_class_declaration] = STATE(346), + [sym_function_expression] = STATE(609), + [sym_function_declaration] = STATE(346), + [sym_generator_function] = STATE(609), + [sym_generator_function_declaration] = STATE(346), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_sequence_expression] = STATE(1527), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1103), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_SEMI] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_import] = ACTIONS(19), + [anon_sym_with] = ACTIONS(21), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_if] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_for] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(9), + [anon_sym_set] = ACTIONS(9), + [anon_sym_async] = ACTIONS(39), + [anon_sym_static] = ACTIONS(9), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [26] = { - [sym_export_statement] = STATE(343), - [sym_declaration] = STATE(343), - [sym_import] = STATE(595), - [sym_import_statement] = STATE(343), - [sym_expression_statement] = STATE(343), - [sym_variable_declaration] = STATE(341), - [sym_lexical_declaration] = STATE(341), - [sym_statement_block] = STATE(343), - [sym_if_statement] = STATE(343), - [sym_switch_statement] = STATE(343), - [sym_for_statement] = STATE(343), - [sym_for_in_statement] = STATE(343), - [sym_while_statement] = STATE(343), - [sym_do_statement] = STATE(343), - [sym_try_statement] = STATE(343), - [sym_with_statement] = STATE(343), - [sym_break_statement] = STATE(343), - [sym_continue_statement] = STATE(343), - [sym_debugger_statement] = STATE(343), - [sym_return_statement] = STATE(343), - [sym_throw_statement] = STATE(343), - [sym_empty_statement] = STATE(343), - [sym_labeled_statement] = STATE(343), - [sym_parenthesized_expression] = STATE(388), - [sym_expression] = STATE(600), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_class_declaration] = STATE(341), - [sym_function] = STATE(595), - [sym_function_declaration] = STATE(341), - [sym_generator_function] = STATE(595), - [sym_generator_function_declaration] = STATE(341), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_sequence_expression] = STATE(1227), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_export_statement_repeat1] = STATE(997), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [anon_sym_const] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_async] = ACTIONS(33), - [anon_sym_static] = ACTIONS(7), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = 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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_export_statement] = STATE(350), + [sym_declaration] = STATE(350), + [sym_import] = STATE(1156), + [sym_import_statement] = STATE(350), + [sym_statement] = STATE(385), + [sym_expression_statement] = STATE(350), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_statement_block] = STATE(350), + [sym_if_statement] = STATE(350), + [sym_switch_statement] = STATE(350), + [sym_for_statement] = STATE(350), + [sym_for_in_statement] = STATE(350), + [sym_while_statement] = STATE(350), + [sym_do_statement] = STATE(350), + [sym_try_statement] = STATE(350), + [sym_with_statement] = STATE(350), + [sym_break_statement] = STATE(350), + [sym_continue_statement] = STATE(350), + [sym_debugger_statement] = STATE(350), + [sym_return_statement] = STATE(350), + [sym_throw_statement] = STATE(350), + [sym_empty_statement] = STATE(350), + [sym_labeled_statement] = STATE(350), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_class_declaration] = STATE(346), + [sym_function_expression] = STATE(609), + [sym_function_declaration] = STATE(346), + [sym_generator_function] = STATE(609), + [sym_generator_function_declaration] = STATE(346), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_sequence_expression] = STATE(1527), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1103), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_SEMI] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_import] = ACTIONS(19), + [anon_sym_with] = ACTIONS(21), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_if] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_for] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(9), + [anon_sym_set] = ACTIONS(9), + [anon_sym_async] = ACTIONS(39), + [anon_sym_static] = ACTIONS(9), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [27] = { - [sym_export_statement] = STATE(322), - [sym_declaration] = STATE(322), - [sym_import] = STATE(595), - [sym_import_statement] = STATE(322), - [sym_expression_statement] = STATE(322), - [sym_variable_declaration] = STATE(341), - [sym_lexical_declaration] = STATE(341), - [sym_statement_block] = STATE(322), - [sym_if_statement] = STATE(322), - [sym_switch_statement] = STATE(322), - [sym_for_statement] = STATE(322), - [sym_for_in_statement] = STATE(322), - [sym_while_statement] = STATE(322), - [sym_do_statement] = STATE(322), - [sym_try_statement] = STATE(322), - [sym_with_statement] = STATE(322), - [sym_break_statement] = STATE(322), - [sym_continue_statement] = STATE(322), - [sym_debugger_statement] = STATE(322), - [sym_return_statement] = STATE(322), - [sym_throw_statement] = STATE(322), - [sym_empty_statement] = STATE(322), - [sym_labeled_statement] = STATE(322), - [sym_parenthesized_expression] = STATE(388), - [sym_expression] = STATE(600), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_class_declaration] = STATE(341), - [sym_function] = STATE(595), - [sym_function_declaration] = STATE(341), - [sym_generator_function] = STATE(595), - [sym_generator_function_declaration] = STATE(341), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_sequence_expression] = STATE(1227), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_export_statement_repeat1] = STATE(997), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [anon_sym_const] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_async] = ACTIONS(33), - [anon_sym_static] = ACTIONS(7), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = 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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_export_statement] = STATE(350), + [sym_declaration] = STATE(350), + [sym_import] = STATE(1156), + [sym_import_statement] = STATE(350), + [sym_statement] = STATE(386), + [sym_expression_statement] = STATE(350), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_statement_block] = STATE(350), + [sym_if_statement] = STATE(350), + [sym_switch_statement] = STATE(350), + [sym_for_statement] = STATE(350), + [sym_for_in_statement] = STATE(350), + [sym_while_statement] = STATE(350), + [sym_do_statement] = STATE(350), + [sym_try_statement] = STATE(350), + [sym_with_statement] = STATE(350), + [sym_break_statement] = STATE(350), + [sym_continue_statement] = STATE(350), + [sym_debugger_statement] = STATE(350), + [sym_return_statement] = STATE(350), + [sym_throw_statement] = STATE(350), + [sym_empty_statement] = STATE(350), + [sym_labeled_statement] = STATE(350), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_class_declaration] = STATE(346), + [sym_function_expression] = STATE(609), + [sym_function_declaration] = STATE(346), + [sym_generator_function] = STATE(609), + [sym_generator_function_declaration] = STATE(346), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_sequence_expression] = STATE(1527), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1088), + [sym_identifier] = ACTIONS(318), + [anon_sym_export] = ACTIONS(320), + [anon_sym_SEMI] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(322), + [anon_sym_import] = ACTIONS(19), + [anon_sym_with] = ACTIONS(324), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(326), + [anon_sym_const] = ACTIONS(27), + [anon_sym_if] = ACTIONS(328), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_for] = ACTIONS(330), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(318), + [anon_sym_set] = ACTIONS(318), + [anon_sym_async] = ACTIONS(332), + [anon_sym_static] = ACTIONS(318), + [anon_sym_while] = ACTIONS(334), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(336), + [anon_sym_function] = ACTIONS(338), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [28] = { - [sym_export_statement] = STATE(330), - [sym_declaration] = STATE(330), - [sym_import] = STATE(595), - [sym_import_statement] = STATE(330), - [sym_expression_statement] = STATE(330), - [sym_variable_declaration] = STATE(341), - [sym_lexical_declaration] = STATE(341), - [sym_statement_block] = STATE(330), - [sym_if_statement] = STATE(330), - [sym_switch_statement] = STATE(330), - [sym_for_statement] = STATE(330), - [sym_for_in_statement] = STATE(330), - [sym_while_statement] = STATE(330), - [sym_do_statement] = STATE(330), - [sym_try_statement] = STATE(330), - [sym_with_statement] = STATE(330), - [sym_break_statement] = STATE(330), - [sym_continue_statement] = STATE(330), - [sym_debugger_statement] = STATE(330), - [sym_return_statement] = STATE(330), - [sym_throw_statement] = STATE(330), - [sym_empty_statement] = STATE(330), - [sym_labeled_statement] = STATE(330), - [sym_parenthesized_expression] = STATE(388), - [sym_expression] = STATE(600), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_class_declaration] = STATE(341), - [sym_function] = STATE(595), - [sym_function_declaration] = STATE(341), - [sym_generator_function] = STATE(595), - [sym_generator_function_declaration] = STATE(341), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_sequence_expression] = STATE(1227), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_export_statement_repeat1] = STATE(997), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [anon_sym_const] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_async] = ACTIONS(33), - [anon_sym_static] = ACTIONS(7), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = 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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_export_statement] = STATE(350), + [sym_declaration] = STATE(350), + [sym_import] = STATE(1156), + [sym_import_statement] = STATE(350), + [sym_statement] = STATE(1634), + [sym_expression_statement] = STATE(350), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_statement_block] = STATE(350), + [sym_if_statement] = STATE(350), + [sym_switch_statement] = STATE(350), + [sym_for_statement] = STATE(350), + [sym_for_in_statement] = STATE(350), + [sym_while_statement] = STATE(350), + [sym_do_statement] = STATE(350), + [sym_try_statement] = STATE(350), + [sym_with_statement] = STATE(350), + [sym_break_statement] = STATE(350), + [sym_continue_statement] = STATE(350), + [sym_debugger_statement] = STATE(350), + [sym_return_statement] = STATE(350), + [sym_throw_statement] = STATE(350), + [sym_empty_statement] = STATE(350), + [sym_labeled_statement] = STATE(350), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_class_declaration] = STATE(346), + [sym_function_expression] = STATE(609), + [sym_function_declaration] = STATE(346), + [sym_generator_function] = STATE(609), + [sym_generator_function_declaration] = STATE(346), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_sequence_expression] = STATE(1527), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1088), + [sym_identifier] = ACTIONS(318), + [anon_sym_export] = ACTIONS(320), + [anon_sym_SEMI] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(322), + [anon_sym_import] = ACTIONS(19), + [anon_sym_with] = ACTIONS(324), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(326), + [anon_sym_const] = ACTIONS(27), + [anon_sym_if] = ACTIONS(328), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_for] = ACTIONS(330), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(318), + [anon_sym_set] = ACTIONS(318), + [anon_sym_async] = ACTIONS(332), + [anon_sym_static] = ACTIONS(318), + [anon_sym_while] = ACTIONS(334), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(336), + [anon_sym_function] = ACTIONS(338), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [29] = { - [sym_export_statement] = STATE(343), - [sym_declaration] = STATE(343), - [sym_import] = STATE(595), - [sym_import_statement] = STATE(343), - [sym_expression_statement] = STATE(343), - [sym_variable_declaration] = STATE(341), - [sym_lexical_declaration] = STATE(341), - [sym_statement_block] = STATE(343), - [sym_if_statement] = STATE(343), - [sym_switch_statement] = STATE(343), - [sym_for_statement] = STATE(343), - [sym_for_in_statement] = STATE(343), - [sym_while_statement] = STATE(343), - [sym_do_statement] = STATE(343), - [sym_try_statement] = STATE(343), - [sym_with_statement] = STATE(343), - [sym_break_statement] = STATE(343), - [sym_continue_statement] = STATE(343), - [sym_debugger_statement] = STATE(343), - [sym_return_statement] = STATE(343), - [sym_throw_statement] = STATE(343), - [sym_empty_statement] = STATE(343), - [sym_labeled_statement] = STATE(343), - [sym_parenthesized_expression] = STATE(388), - [sym_expression] = STATE(600), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_class_declaration] = STATE(341), - [sym_function] = STATE(595), - [sym_function_declaration] = STATE(341), - [sym_generator_function] = STATE(595), - [sym_generator_function_declaration] = STATE(341), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_sequence_expression] = STATE(1227), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_export_statement_repeat1] = STATE(989), - [sym_identifier] = ACTIONS(294), - [anon_sym_export] = ACTIONS(296), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(298), - [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [anon_sym_const] = ACTIONS(21), - [anon_sym_if] = ACTIONS(300), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_for] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(294), - [anon_sym_set] = ACTIONS(294), - [anon_sym_async] = ACTIONS(304), - [anon_sym_static] = ACTIONS(294), - [anon_sym_while] = ACTIONS(306), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(308), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(310), - [anon_sym_function] = ACTIONS(312), - [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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_export_statement] = STATE(350), + [sym_declaration] = STATE(350), + [sym_import] = STATE(1156), + [sym_import_statement] = STATE(350), + [sym_statement] = STATE(355), + [sym_expression_statement] = STATE(350), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_statement_block] = STATE(350), + [sym_if_statement] = STATE(350), + [sym_switch_statement] = STATE(350), + [sym_for_statement] = STATE(350), + [sym_for_in_statement] = STATE(350), + [sym_while_statement] = STATE(350), + [sym_do_statement] = STATE(350), + [sym_try_statement] = STATE(350), + [sym_with_statement] = STATE(350), + [sym_break_statement] = STATE(350), + [sym_continue_statement] = STATE(350), + [sym_debugger_statement] = STATE(350), + [sym_return_statement] = STATE(350), + [sym_throw_statement] = STATE(350), + [sym_empty_statement] = STATE(350), + [sym_labeled_statement] = STATE(350), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_class_declaration] = STATE(346), + [sym_function_expression] = STATE(609), + [sym_function_declaration] = STATE(346), + [sym_generator_function] = STATE(609), + [sym_generator_function_declaration] = STATE(346), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_sequence_expression] = STATE(1527), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1088), + [sym_identifier] = ACTIONS(318), + [anon_sym_export] = ACTIONS(320), + [anon_sym_SEMI] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(322), + [anon_sym_import] = ACTIONS(19), + [anon_sym_with] = ACTIONS(324), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(326), + [anon_sym_const] = ACTIONS(27), + [anon_sym_if] = ACTIONS(328), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_for] = ACTIONS(330), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(318), + [anon_sym_set] = ACTIONS(318), + [anon_sym_async] = ACTIONS(332), + [anon_sym_static] = ACTIONS(318), + [anon_sym_while] = ACTIONS(334), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(336), + [anon_sym_function] = ACTIONS(338), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [30] = { - [sym_export_statement] = STATE(1343), - [sym_declaration] = STATE(1343), - [sym_import] = STATE(595), - [sym_import_statement] = STATE(1343), - [sym_expression_statement] = STATE(1343), - [sym_variable_declaration] = STATE(341), - [sym_lexical_declaration] = STATE(341), - [sym_statement_block] = STATE(1343), - [sym_if_statement] = STATE(1343), - [sym_switch_statement] = STATE(1343), - [sym_for_statement] = STATE(1343), - [sym_for_in_statement] = STATE(1343), - [sym_while_statement] = STATE(1343), - [sym_do_statement] = STATE(1343), - [sym_try_statement] = STATE(1343), - [sym_with_statement] = STATE(1343), - [sym_break_statement] = STATE(1343), - [sym_continue_statement] = STATE(1343), - [sym_debugger_statement] = STATE(1343), - [sym_return_statement] = STATE(1343), - [sym_throw_statement] = STATE(1343), - [sym_empty_statement] = STATE(1343), - [sym_labeled_statement] = STATE(1343), - [sym_parenthesized_expression] = STATE(388), - [sym_expression] = STATE(600), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_class_declaration] = STATE(341), - [sym_function] = STATE(595), - [sym_function_declaration] = STATE(341), - [sym_generator_function] = STATE(595), - [sym_generator_function_declaration] = STATE(341), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_sequence_expression] = STATE(1227), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_export_statement_repeat1] = STATE(989), - [sym_identifier] = ACTIONS(294), - [anon_sym_export] = ACTIONS(296), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(298), - [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [anon_sym_const] = ACTIONS(21), - [anon_sym_if] = ACTIONS(300), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_for] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(294), - [anon_sym_set] = ACTIONS(294), - [anon_sym_async] = ACTIONS(304), - [anon_sym_static] = ACTIONS(294), - [anon_sym_while] = ACTIONS(306), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(308), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(310), - [anon_sym_function] = ACTIONS(312), - [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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_export_statement] = STATE(350), + [sym_declaration] = STATE(350), + [sym_import] = STATE(1156), + [sym_import_statement] = STATE(350), + [sym_statement] = STATE(341), + [sym_expression_statement] = STATE(350), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_statement_block] = STATE(350), + [sym_if_statement] = STATE(350), + [sym_switch_statement] = STATE(350), + [sym_for_statement] = STATE(350), + [sym_for_in_statement] = STATE(350), + [sym_while_statement] = STATE(350), + [sym_do_statement] = STATE(350), + [sym_try_statement] = STATE(350), + [sym_with_statement] = STATE(350), + [sym_break_statement] = STATE(350), + [sym_continue_statement] = STATE(350), + [sym_debugger_statement] = STATE(350), + [sym_return_statement] = STATE(350), + [sym_throw_statement] = STATE(350), + [sym_empty_statement] = STATE(350), + [sym_labeled_statement] = STATE(350), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_class_declaration] = STATE(346), + [sym_function_expression] = STATE(609), + [sym_function_declaration] = STATE(346), + [sym_generator_function] = STATE(609), + [sym_generator_function_declaration] = STATE(346), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_sequence_expression] = STATE(1527), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1103), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_SEMI] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_import] = ACTIONS(19), + [anon_sym_with] = ACTIONS(21), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_if] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_for] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(9), + [anon_sym_set] = ACTIONS(9), + [anon_sym_async] = ACTIONS(39), + [anon_sym_static] = ACTIONS(9), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [31] = { - [sym_export_statement] = STATE(1126), - [sym_declaration] = STATE(1126), - [sym_import] = STATE(595), - [sym_import_statement] = STATE(1126), - [sym_expression_statement] = STATE(1126), - [sym_variable_declaration] = STATE(341), - [sym_lexical_declaration] = STATE(341), - [sym_statement_block] = STATE(1126), - [sym_if_statement] = STATE(1126), - [sym_switch_statement] = STATE(1126), - [sym_for_statement] = STATE(1126), - [sym_for_in_statement] = STATE(1126), - [sym_while_statement] = STATE(1126), - [sym_do_statement] = STATE(1126), - [sym_try_statement] = STATE(1126), - [sym_with_statement] = STATE(1126), - [sym_break_statement] = STATE(1126), - [sym_continue_statement] = STATE(1126), - [sym_debugger_statement] = STATE(1126), - [sym_return_statement] = STATE(1126), - [sym_throw_statement] = STATE(1126), - [sym_empty_statement] = STATE(1126), - [sym_labeled_statement] = STATE(1126), - [sym_parenthesized_expression] = STATE(388), - [sym_expression] = STATE(600), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_class_declaration] = STATE(341), - [sym_function] = STATE(595), - [sym_function_declaration] = STATE(341), - [sym_generator_function] = STATE(595), - [sym_generator_function_declaration] = STATE(341), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_sequence_expression] = STATE(1227), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_export_statement_repeat1] = STATE(989), - [sym_identifier] = ACTIONS(294), - [anon_sym_export] = ACTIONS(296), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(298), - [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [anon_sym_const] = ACTIONS(21), - [anon_sym_if] = ACTIONS(300), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_for] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(294), - [anon_sym_set] = ACTIONS(294), - [anon_sym_async] = ACTIONS(304), - [anon_sym_static] = ACTIONS(294), - [anon_sym_while] = ACTIONS(306), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(308), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(310), - [anon_sym_function] = ACTIONS(312), - [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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_export_statement] = STATE(350), + [sym_declaration] = STATE(350), + [sym_import] = STATE(1156), + [sym_import_statement] = STATE(350), + [sym_statement] = STATE(343), + [sym_expression_statement] = STATE(350), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_statement_block] = STATE(350), + [sym_if_statement] = STATE(350), + [sym_switch_statement] = STATE(350), + [sym_for_statement] = STATE(350), + [sym_for_in_statement] = STATE(350), + [sym_while_statement] = STATE(350), + [sym_do_statement] = STATE(350), + [sym_try_statement] = STATE(350), + [sym_with_statement] = STATE(350), + [sym_break_statement] = STATE(350), + [sym_continue_statement] = STATE(350), + [sym_debugger_statement] = STATE(350), + [sym_return_statement] = STATE(350), + [sym_throw_statement] = STATE(350), + [sym_empty_statement] = STATE(350), + [sym_labeled_statement] = STATE(350), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_class_declaration] = STATE(346), + [sym_function_expression] = STATE(609), + [sym_function_declaration] = STATE(346), + [sym_generator_function] = STATE(609), + [sym_generator_function_declaration] = STATE(346), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_sequence_expression] = STATE(1527), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1103), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_SEMI] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_import] = ACTIONS(19), + [anon_sym_with] = ACTIONS(21), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_if] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_for] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(9), + [anon_sym_set] = ACTIONS(9), + [anon_sym_async] = ACTIONS(39), + [anon_sym_static] = ACTIONS(9), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [32] = { - [sym_export_statement] = STATE(322), - [sym_declaration] = STATE(322), - [sym_import] = STATE(595), - [sym_import_statement] = STATE(322), - [sym_expression_statement] = STATE(322), - [sym_variable_declaration] = STATE(341), - [sym_lexical_declaration] = STATE(341), - [sym_statement_block] = STATE(322), - [sym_if_statement] = STATE(322), - [sym_switch_statement] = STATE(322), - [sym_for_statement] = STATE(322), - [sym_for_in_statement] = STATE(322), - [sym_while_statement] = STATE(322), - [sym_do_statement] = STATE(322), - [sym_try_statement] = STATE(322), - [sym_with_statement] = STATE(322), - [sym_break_statement] = STATE(322), - [sym_continue_statement] = STATE(322), - [sym_debugger_statement] = STATE(322), - [sym_return_statement] = STATE(322), - [sym_throw_statement] = STATE(322), - [sym_empty_statement] = STATE(322), - [sym_labeled_statement] = STATE(322), - [sym_parenthesized_expression] = STATE(388), - [sym_expression] = STATE(600), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_class_declaration] = STATE(341), - [sym_function] = STATE(595), - [sym_function_declaration] = STATE(341), - [sym_generator_function] = STATE(595), - [sym_generator_function_declaration] = STATE(341), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_sequence_expression] = STATE(1227), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_export_statement_repeat1] = STATE(989), - [sym_identifier] = ACTIONS(294), - [anon_sym_export] = ACTIONS(296), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(298), - [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [anon_sym_const] = ACTIONS(21), - [anon_sym_if] = ACTIONS(300), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_for] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(294), - [anon_sym_set] = ACTIONS(294), - [anon_sym_async] = ACTIONS(304), - [anon_sym_static] = ACTIONS(294), - [anon_sym_while] = ACTIONS(306), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(308), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(310), - [anon_sym_function] = ACTIONS(312), - [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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_export_statement] = STATE(350), + [sym_declaration] = STATE(350), + [sym_import] = STATE(1156), + [sym_import_statement] = STATE(350), + [sym_statement] = STATE(362), + [sym_expression_statement] = STATE(350), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_statement_block] = STATE(350), + [sym_if_statement] = STATE(350), + [sym_switch_statement] = STATE(350), + [sym_for_statement] = STATE(350), + [sym_for_in_statement] = STATE(350), + [sym_while_statement] = STATE(350), + [sym_do_statement] = STATE(350), + [sym_try_statement] = STATE(350), + [sym_with_statement] = STATE(350), + [sym_break_statement] = STATE(350), + [sym_continue_statement] = STATE(350), + [sym_debugger_statement] = STATE(350), + [sym_return_statement] = STATE(350), + [sym_throw_statement] = STATE(350), + [sym_empty_statement] = STATE(350), + [sym_labeled_statement] = STATE(350), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_class_declaration] = STATE(346), + [sym_function_expression] = STATE(609), + [sym_function_declaration] = STATE(346), + [sym_generator_function] = STATE(609), + [sym_generator_function_declaration] = STATE(346), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_sequence_expression] = STATE(1527), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1088), + [sym_identifier] = ACTIONS(318), + [anon_sym_export] = ACTIONS(320), + [anon_sym_SEMI] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(322), + [anon_sym_import] = ACTIONS(19), + [anon_sym_with] = ACTIONS(324), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(326), + [anon_sym_const] = ACTIONS(27), + [anon_sym_if] = ACTIONS(328), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_for] = ACTIONS(330), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(318), + [anon_sym_set] = ACTIONS(318), + [anon_sym_async] = ACTIONS(332), + [anon_sym_static] = ACTIONS(318), + [anon_sym_while] = ACTIONS(334), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(336), + [anon_sym_function] = ACTIONS(338), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [33] = { - [sym_export_statement] = STATE(330), - [sym_declaration] = STATE(330), - [sym_import] = STATE(595), - [sym_import_statement] = STATE(330), - [sym_expression_statement] = STATE(330), - [sym_variable_declaration] = STATE(341), - [sym_lexical_declaration] = STATE(341), - [sym_statement_block] = STATE(330), - [sym_if_statement] = STATE(330), - [sym_switch_statement] = STATE(330), - [sym_for_statement] = STATE(330), - [sym_for_in_statement] = STATE(330), - [sym_while_statement] = STATE(330), - [sym_do_statement] = STATE(330), - [sym_try_statement] = STATE(330), - [sym_with_statement] = STATE(330), - [sym_break_statement] = STATE(330), - [sym_continue_statement] = STATE(330), - [sym_debugger_statement] = STATE(330), - [sym_return_statement] = STATE(330), - [sym_throw_statement] = STATE(330), - [sym_empty_statement] = STATE(330), - [sym_labeled_statement] = STATE(330), - [sym_parenthesized_expression] = STATE(388), - [sym_expression] = STATE(600), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_class_declaration] = STATE(341), - [sym_function] = STATE(595), - [sym_function_declaration] = STATE(341), - [sym_generator_function] = STATE(595), - [sym_generator_function_declaration] = STATE(341), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_sequence_expression] = STATE(1227), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_export_statement_repeat1] = STATE(989), - [sym_identifier] = ACTIONS(294), - [anon_sym_export] = ACTIONS(296), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(298), - [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [anon_sym_const] = ACTIONS(21), - [anon_sym_if] = ACTIONS(300), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_for] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(294), - [anon_sym_set] = ACTIONS(294), - [anon_sym_async] = ACTIONS(304), - [anon_sym_static] = ACTIONS(294), - [anon_sym_while] = ACTIONS(306), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(308), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(310), - [anon_sym_function] = ACTIONS(312), - [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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_export_statement] = STATE(350), + [sym_declaration] = STATE(350), + [sym_import] = STATE(1156), + [sym_import_statement] = STATE(350), + [sym_statement] = STATE(361), + [sym_expression_statement] = STATE(350), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_statement_block] = STATE(350), + [sym_if_statement] = STATE(350), + [sym_switch_statement] = STATE(350), + [sym_for_statement] = STATE(350), + [sym_for_in_statement] = STATE(350), + [sym_while_statement] = STATE(350), + [sym_do_statement] = STATE(350), + [sym_try_statement] = STATE(350), + [sym_with_statement] = STATE(350), + [sym_break_statement] = STATE(350), + [sym_continue_statement] = STATE(350), + [sym_debugger_statement] = STATE(350), + [sym_return_statement] = STATE(350), + [sym_throw_statement] = STATE(350), + [sym_empty_statement] = STATE(350), + [sym_labeled_statement] = STATE(350), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_class_declaration] = STATE(346), + [sym_function_expression] = STATE(609), + [sym_function_declaration] = STATE(346), + [sym_generator_function] = STATE(609), + [sym_generator_function_declaration] = STATE(346), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_sequence_expression] = STATE(1527), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1103), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_SEMI] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_import] = ACTIONS(19), + [anon_sym_with] = ACTIONS(21), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_if] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_for] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(9), + [anon_sym_set] = ACTIONS(9), + [anon_sym_async] = ACTIONS(39), + [anon_sym_static] = ACTIONS(9), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [34] = { - [sym_export_statement] = STATE(339), - [sym_declaration] = STATE(339), - [sym_import] = STATE(595), - [sym_import_statement] = STATE(339), - [sym_expression_statement] = STATE(339), - [sym_variable_declaration] = STATE(341), - [sym_lexical_declaration] = STATE(341), - [sym_statement_block] = STATE(339), - [sym_if_statement] = STATE(339), - [sym_switch_statement] = STATE(339), - [sym_for_statement] = STATE(339), - [sym_for_in_statement] = STATE(339), - [sym_while_statement] = STATE(339), - [sym_do_statement] = STATE(339), - [sym_try_statement] = STATE(339), - [sym_with_statement] = STATE(339), - [sym_break_statement] = STATE(339), - [sym_continue_statement] = STATE(339), - [sym_debugger_statement] = STATE(339), - [sym_return_statement] = STATE(339), - [sym_throw_statement] = STATE(339), - [sym_empty_statement] = STATE(339), - [sym_labeled_statement] = STATE(339), - [sym_parenthesized_expression] = STATE(388), - [sym_expression] = STATE(600), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_class_declaration] = STATE(341), - [sym_function] = STATE(595), - [sym_function_declaration] = STATE(341), - [sym_generator_function] = STATE(595), - [sym_generator_function_declaration] = STATE(341), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_sequence_expression] = STATE(1227), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_export_statement_repeat1] = STATE(989), - [sym_identifier] = ACTIONS(294), - [anon_sym_export] = ACTIONS(296), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(298), - [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [anon_sym_const] = ACTIONS(21), - [anon_sym_if] = ACTIONS(300), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_for] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(294), - [anon_sym_set] = ACTIONS(294), - [anon_sym_async] = ACTIONS(304), - [anon_sym_static] = ACTIONS(294), - [anon_sym_while] = ACTIONS(306), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(308), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(310), - [anon_sym_function] = ACTIONS(312), - [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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_export_statement] = STATE(350), + [sym_declaration] = STATE(350), + [sym_import] = STATE(1156), + [sym_import_statement] = STATE(350), + [sym_statement] = STATE(357), + [sym_expression_statement] = STATE(350), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_statement_block] = STATE(350), + [sym_if_statement] = STATE(350), + [sym_switch_statement] = STATE(350), + [sym_for_statement] = STATE(350), + [sym_for_in_statement] = STATE(350), + [sym_while_statement] = STATE(350), + [sym_do_statement] = STATE(350), + [sym_try_statement] = STATE(350), + [sym_with_statement] = STATE(350), + [sym_break_statement] = STATE(350), + [sym_continue_statement] = STATE(350), + [sym_debugger_statement] = STATE(350), + [sym_return_statement] = STATE(350), + [sym_throw_statement] = STATE(350), + [sym_empty_statement] = STATE(350), + [sym_labeled_statement] = STATE(350), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_class_declaration] = STATE(346), + [sym_function_expression] = STATE(609), + [sym_function_declaration] = STATE(346), + [sym_generator_function] = STATE(609), + [sym_generator_function_declaration] = STATE(346), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_sequence_expression] = STATE(1527), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1103), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_SEMI] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_import] = ACTIONS(19), + [anon_sym_with] = ACTIONS(21), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_if] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_for] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(9), + [anon_sym_set] = ACTIONS(9), + [anon_sym_async] = ACTIONS(39), + [anon_sym_static] = ACTIONS(9), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [35] = { - [sym_export_statement] = STATE(353), - [sym_declaration] = STATE(353), - [sym_import] = STATE(595), - [sym_import_statement] = STATE(353), - [sym_expression_statement] = STATE(353), - [sym_variable_declaration] = STATE(341), - [sym_lexical_declaration] = STATE(341), - [sym_statement_block] = STATE(353), - [sym_if_statement] = STATE(353), - [sym_switch_statement] = STATE(353), - [sym_for_statement] = STATE(353), - [sym_for_in_statement] = STATE(353), - [sym_while_statement] = STATE(353), - [sym_do_statement] = STATE(353), - [sym_try_statement] = STATE(353), - [sym_with_statement] = STATE(353), - [sym_break_statement] = STATE(353), - [sym_continue_statement] = STATE(353), - [sym_debugger_statement] = STATE(353), - [sym_return_statement] = STATE(353), - [sym_throw_statement] = STATE(353), - [sym_empty_statement] = STATE(353), - [sym_labeled_statement] = STATE(353), - [sym_parenthesized_expression] = STATE(388), - [sym_expression] = STATE(600), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_class_declaration] = STATE(341), - [sym_function] = STATE(595), - [sym_function_declaration] = STATE(341), - [sym_generator_function] = STATE(595), - [sym_generator_function_declaration] = STATE(341), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_sequence_expression] = STATE(1227), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_export_statement_repeat1] = STATE(989), - [sym_identifier] = ACTIONS(294), - [anon_sym_export] = ACTIONS(296), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(298), - [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [anon_sym_const] = ACTIONS(21), - [anon_sym_if] = ACTIONS(300), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_for] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(294), - [anon_sym_set] = ACTIONS(294), - [anon_sym_async] = ACTIONS(304), - [anon_sym_static] = ACTIONS(294), - [anon_sym_while] = ACTIONS(306), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(308), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(310), - [anon_sym_function] = ACTIONS(312), - [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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_export_statement] = STATE(350), + [sym_declaration] = STATE(350), + [sym_import] = STATE(1156), + [sym_import_statement] = STATE(350), + [sym_statement] = STATE(372), + [sym_expression_statement] = STATE(350), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_statement_block] = STATE(350), + [sym_if_statement] = STATE(350), + [sym_switch_statement] = STATE(350), + [sym_for_statement] = STATE(350), + [sym_for_in_statement] = STATE(350), + [sym_while_statement] = STATE(350), + [sym_do_statement] = STATE(350), + [sym_try_statement] = STATE(350), + [sym_with_statement] = STATE(350), + [sym_break_statement] = STATE(350), + [sym_continue_statement] = STATE(350), + [sym_debugger_statement] = STATE(350), + [sym_return_statement] = STATE(350), + [sym_throw_statement] = STATE(350), + [sym_empty_statement] = STATE(350), + [sym_labeled_statement] = STATE(350), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_class_declaration] = STATE(346), + [sym_function_expression] = STATE(609), + [sym_function_declaration] = STATE(346), + [sym_generator_function] = STATE(609), + [sym_generator_function_declaration] = STATE(346), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_sequence_expression] = STATE(1527), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1103), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_SEMI] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_import] = ACTIONS(19), + [anon_sym_with] = ACTIONS(21), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_if] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_for] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(9), + [anon_sym_set] = ACTIONS(9), + [anon_sym_async] = ACTIONS(39), + [anon_sym_static] = ACTIONS(9), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [36] = { - [sym_export_statement] = STATE(300), - [sym_declaration] = STATE(300), - [sym_import] = STATE(595), - [sym_import_statement] = STATE(300), - [sym_expression_statement] = STATE(300), - [sym_variable_declaration] = STATE(341), - [sym_lexical_declaration] = STATE(341), - [sym_statement_block] = STATE(300), - [sym_if_statement] = STATE(300), - [sym_switch_statement] = STATE(300), - [sym_for_statement] = STATE(300), - [sym_for_in_statement] = STATE(300), - [sym_while_statement] = STATE(300), - [sym_do_statement] = STATE(300), - [sym_try_statement] = STATE(300), - [sym_with_statement] = STATE(300), - [sym_break_statement] = STATE(300), - [sym_continue_statement] = STATE(300), - [sym_debugger_statement] = STATE(300), - [sym_return_statement] = STATE(300), - [sym_throw_statement] = STATE(300), - [sym_empty_statement] = STATE(300), - [sym_labeled_statement] = STATE(300), - [sym_parenthesized_expression] = STATE(388), - [sym_expression] = STATE(600), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_class_declaration] = STATE(341), - [sym_function] = STATE(595), - [sym_function_declaration] = STATE(341), - [sym_generator_function] = STATE(595), - [sym_generator_function_declaration] = STATE(341), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_sequence_expression] = STATE(1227), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_export_statement_repeat1] = STATE(997), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [anon_sym_const] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_async] = ACTIONS(33), - [anon_sym_static] = ACTIONS(7), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = 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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_export_statement] = STATE(350), + [sym_declaration] = STATE(350), + [sym_import] = STATE(1156), + [sym_import_statement] = STATE(350), + [sym_statement] = STATE(390), + [sym_expression_statement] = STATE(350), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_statement_block] = STATE(350), + [sym_if_statement] = STATE(350), + [sym_switch_statement] = STATE(350), + [sym_for_statement] = STATE(350), + [sym_for_in_statement] = STATE(350), + [sym_while_statement] = STATE(350), + [sym_do_statement] = STATE(350), + [sym_try_statement] = STATE(350), + [sym_with_statement] = STATE(350), + [sym_break_statement] = STATE(350), + [sym_continue_statement] = STATE(350), + [sym_debugger_statement] = STATE(350), + [sym_return_statement] = STATE(350), + [sym_throw_statement] = STATE(350), + [sym_empty_statement] = STATE(350), + [sym_labeled_statement] = STATE(350), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_class_declaration] = STATE(346), + [sym_function_expression] = STATE(609), + [sym_function_declaration] = STATE(346), + [sym_generator_function] = STATE(609), + [sym_generator_function_declaration] = STATE(346), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_sequence_expression] = STATE(1527), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1088), + [sym_identifier] = ACTIONS(318), + [anon_sym_export] = ACTIONS(320), + [anon_sym_SEMI] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(322), + [anon_sym_import] = ACTIONS(19), + [anon_sym_with] = ACTIONS(324), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(326), + [anon_sym_const] = ACTIONS(27), + [anon_sym_if] = ACTIONS(328), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_for] = ACTIONS(330), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(318), + [anon_sym_set] = ACTIONS(318), + [anon_sym_async] = ACTIONS(332), + [anon_sym_static] = ACTIONS(318), + [anon_sym_while] = ACTIONS(334), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(336), + [anon_sym_function] = ACTIONS(338), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [37] = { - [sym_export_statement] = STATE(318), - [sym_declaration] = STATE(318), - [sym_import] = STATE(595), - [sym_import_statement] = STATE(318), - [sym_expression_statement] = STATE(318), - [sym_variable_declaration] = STATE(341), - [sym_lexical_declaration] = STATE(341), - [sym_statement_block] = STATE(318), - [sym_if_statement] = STATE(318), - [sym_switch_statement] = STATE(318), - [sym_for_statement] = STATE(318), - [sym_for_in_statement] = STATE(318), - [sym_while_statement] = STATE(318), - [sym_do_statement] = STATE(318), - [sym_try_statement] = STATE(318), - [sym_with_statement] = STATE(318), - [sym_break_statement] = STATE(318), - [sym_continue_statement] = STATE(318), - [sym_debugger_statement] = STATE(318), - [sym_return_statement] = STATE(318), - [sym_throw_statement] = STATE(318), - [sym_empty_statement] = STATE(318), - [sym_labeled_statement] = STATE(318), - [sym_parenthesized_expression] = STATE(388), - [sym_expression] = STATE(600), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_class_declaration] = STATE(341), - [sym_function] = STATE(595), - [sym_function_declaration] = STATE(341), - [sym_generator_function] = STATE(595), - [sym_generator_function_declaration] = STATE(341), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_sequence_expression] = STATE(1227), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_export_statement_repeat1] = STATE(989), - [sym_identifier] = ACTIONS(294), - [anon_sym_export] = ACTIONS(296), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(298), - [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [anon_sym_const] = ACTIONS(21), - [anon_sym_if] = ACTIONS(300), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_for] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(294), - [anon_sym_set] = ACTIONS(294), - [anon_sym_async] = ACTIONS(304), - [anon_sym_static] = ACTIONS(294), - [anon_sym_while] = ACTIONS(306), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(308), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(310), - [anon_sym_function] = ACTIONS(312), - [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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_export_statement] = STATE(350), + [sym_declaration] = STATE(350), + [sym_import] = STATE(1156), + [sym_import_statement] = STATE(350), + [sym_statement] = STATE(388), + [sym_expression_statement] = STATE(350), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_statement_block] = STATE(350), + [sym_if_statement] = STATE(350), + [sym_switch_statement] = STATE(350), + [sym_for_statement] = STATE(350), + [sym_for_in_statement] = STATE(350), + [sym_while_statement] = STATE(350), + [sym_do_statement] = STATE(350), + [sym_try_statement] = STATE(350), + [sym_with_statement] = STATE(350), + [sym_break_statement] = STATE(350), + [sym_continue_statement] = STATE(350), + [sym_debugger_statement] = STATE(350), + [sym_return_statement] = STATE(350), + [sym_throw_statement] = STATE(350), + [sym_empty_statement] = STATE(350), + [sym_labeled_statement] = STATE(350), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_class_declaration] = STATE(346), + [sym_function_expression] = STATE(609), + [sym_function_declaration] = STATE(346), + [sym_generator_function] = STATE(609), + [sym_generator_function_declaration] = STATE(346), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_sequence_expression] = STATE(1527), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1088), + [sym_identifier] = ACTIONS(318), + [anon_sym_export] = ACTIONS(320), + [anon_sym_SEMI] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(322), + [anon_sym_import] = ACTIONS(19), + [anon_sym_with] = ACTIONS(324), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(326), + [anon_sym_const] = ACTIONS(27), + [anon_sym_if] = ACTIONS(328), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_for] = ACTIONS(330), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(318), + [anon_sym_set] = ACTIONS(318), + [anon_sym_async] = ACTIONS(332), + [anon_sym_static] = ACTIONS(318), + [anon_sym_while] = ACTIONS(334), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(336), + [anon_sym_function] = ACTIONS(338), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [38] = { - [sym_export_statement] = STATE(317), - [sym_declaration] = STATE(317), - [sym_import] = STATE(595), - [sym_import_statement] = STATE(317), - [sym_expression_statement] = STATE(317), - [sym_variable_declaration] = STATE(341), - [sym_lexical_declaration] = STATE(341), - [sym_statement_block] = STATE(317), - [sym_if_statement] = STATE(317), - [sym_switch_statement] = STATE(317), - [sym_for_statement] = STATE(317), - [sym_for_in_statement] = STATE(317), - [sym_while_statement] = STATE(317), - [sym_do_statement] = STATE(317), - [sym_try_statement] = STATE(317), - [sym_with_statement] = STATE(317), - [sym_break_statement] = STATE(317), - [sym_continue_statement] = STATE(317), - [sym_debugger_statement] = STATE(317), - [sym_return_statement] = STATE(317), - [sym_throw_statement] = STATE(317), - [sym_empty_statement] = STATE(317), - [sym_labeled_statement] = STATE(317), - [sym_parenthesized_expression] = STATE(388), - [sym_expression] = STATE(600), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_class_declaration] = STATE(341), - [sym_function] = STATE(595), - [sym_function_declaration] = STATE(341), - [sym_generator_function] = STATE(595), - [sym_generator_function_declaration] = STATE(341), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_sequence_expression] = STATE(1227), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_export_statement_repeat1] = STATE(989), - [sym_identifier] = ACTIONS(294), - [anon_sym_export] = ACTIONS(296), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(298), - [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [anon_sym_const] = ACTIONS(21), - [anon_sym_if] = ACTIONS(300), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_for] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(294), - [anon_sym_set] = ACTIONS(294), - [anon_sym_async] = ACTIONS(304), - [anon_sym_static] = ACTIONS(294), - [anon_sym_while] = ACTIONS(306), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(308), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(310), - [anon_sym_function] = ACTIONS(312), - [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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_export_statement] = STATE(350), + [sym_declaration] = STATE(350), + [sym_import] = STATE(1156), + [sym_import_statement] = STATE(350), + [sym_statement] = STATE(385), + [sym_expression_statement] = STATE(350), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_statement_block] = STATE(350), + [sym_if_statement] = STATE(350), + [sym_switch_statement] = STATE(350), + [sym_for_statement] = STATE(350), + [sym_for_in_statement] = STATE(350), + [sym_while_statement] = STATE(350), + [sym_do_statement] = STATE(350), + [sym_try_statement] = STATE(350), + [sym_with_statement] = STATE(350), + [sym_break_statement] = STATE(350), + [sym_continue_statement] = STATE(350), + [sym_debugger_statement] = STATE(350), + [sym_return_statement] = STATE(350), + [sym_throw_statement] = STATE(350), + [sym_empty_statement] = STATE(350), + [sym_labeled_statement] = STATE(350), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_class_declaration] = STATE(346), + [sym_function_expression] = STATE(609), + [sym_function_declaration] = STATE(346), + [sym_generator_function] = STATE(609), + [sym_generator_function_declaration] = STATE(346), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_sequence_expression] = STATE(1527), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1088), + [sym_identifier] = ACTIONS(318), + [anon_sym_export] = ACTIONS(320), + [anon_sym_SEMI] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(322), + [anon_sym_import] = ACTIONS(19), + [anon_sym_with] = ACTIONS(324), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(326), + [anon_sym_const] = ACTIONS(27), + [anon_sym_if] = ACTIONS(328), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_for] = ACTIONS(330), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(318), + [anon_sym_set] = ACTIONS(318), + [anon_sym_async] = ACTIONS(332), + [anon_sym_static] = ACTIONS(318), + [anon_sym_while] = ACTIONS(334), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(336), + [anon_sym_function] = ACTIONS(338), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [39] = { - [sym_export_statement] = STATE(313), - [sym_declaration] = STATE(313), - [sym_import] = STATE(595), - [sym_import_statement] = STATE(313), - [sym_expression_statement] = STATE(313), - [sym_variable_declaration] = STATE(341), - [sym_lexical_declaration] = STATE(341), - [sym_statement_block] = STATE(313), - [sym_if_statement] = STATE(313), - [sym_switch_statement] = STATE(313), - [sym_for_statement] = STATE(313), - [sym_for_in_statement] = STATE(313), - [sym_while_statement] = STATE(313), - [sym_do_statement] = STATE(313), - [sym_try_statement] = STATE(313), - [sym_with_statement] = STATE(313), - [sym_break_statement] = STATE(313), - [sym_continue_statement] = STATE(313), - [sym_debugger_statement] = STATE(313), - [sym_return_statement] = STATE(313), - [sym_throw_statement] = STATE(313), - [sym_empty_statement] = STATE(313), - [sym_labeled_statement] = STATE(313), - [sym_parenthesized_expression] = STATE(388), - [sym_expression] = STATE(600), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_class_declaration] = STATE(341), - [sym_function] = STATE(595), - [sym_function_declaration] = STATE(341), - [sym_generator_function] = STATE(595), - [sym_generator_function_declaration] = STATE(341), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_sequence_expression] = STATE(1227), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_export_statement_repeat1] = STATE(997), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [anon_sym_const] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_async] = ACTIONS(33), - [anon_sym_static] = ACTIONS(7), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = 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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_export_statement] = STATE(350), + [sym_declaration] = STATE(350), + [sym_import] = STATE(1156), + [sym_import_statement] = STATE(350), + [sym_statement] = STATE(362), + [sym_expression_statement] = STATE(350), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_statement_block] = STATE(350), + [sym_if_statement] = STATE(350), + [sym_switch_statement] = STATE(350), + [sym_for_statement] = STATE(350), + [sym_for_in_statement] = STATE(350), + [sym_while_statement] = STATE(350), + [sym_do_statement] = STATE(350), + [sym_try_statement] = STATE(350), + [sym_with_statement] = STATE(350), + [sym_break_statement] = STATE(350), + [sym_continue_statement] = STATE(350), + [sym_debugger_statement] = STATE(350), + [sym_return_statement] = STATE(350), + [sym_throw_statement] = STATE(350), + [sym_empty_statement] = STATE(350), + [sym_labeled_statement] = STATE(350), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_class_declaration] = STATE(346), + [sym_function_expression] = STATE(609), + [sym_function_declaration] = STATE(346), + [sym_generator_function] = STATE(609), + [sym_generator_function_declaration] = STATE(346), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_sequence_expression] = STATE(1527), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1103), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_SEMI] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_import] = ACTIONS(19), + [anon_sym_with] = ACTIONS(21), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_if] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_for] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(9), + [anon_sym_set] = ACTIONS(9), + [anon_sym_async] = ACTIONS(39), + [anon_sym_static] = ACTIONS(9), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [40] = { - [sym_export_statement] = STATE(313), - [sym_declaration] = STATE(313), - [sym_import] = STATE(595), - [sym_import_statement] = STATE(313), - [sym_expression_statement] = STATE(313), - [sym_variable_declaration] = STATE(341), - [sym_lexical_declaration] = STATE(341), - [sym_statement_block] = STATE(313), - [sym_if_statement] = STATE(313), - [sym_switch_statement] = STATE(313), - [sym_for_statement] = STATE(313), - [sym_for_in_statement] = STATE(313), - [sym_while_statement] = STATE(313), - [sym_do_statement] = STATE(313), - [sym_try_statement] = STATE(313), - [sym_with_statement] = STATE(313), - [sym_break_statement] = STATE(313), - [sym_continue_statement] = STATE(313), - [sym_debugger_statement] = STATE(313), - [sym_return_statement] = STATE(313), - [sym_throw_statement] = STATE(313), - [sym_empty_statement] = STATE(313), - [sym_labeled_statement] = STATE(313), - [sym_parenthesized_expression] = STATE(388), - [sym_expression] = STATE(600), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_class_declaration] = STATE(341), - [sym_function] = STATE(595), - [sym_function_declaration] = STATE(341), - [sym_generator_function] = STATE(595), - [sym_generator_function_declaration] = STATE(341), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_sequence_expression] = STATE(1227), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_export_statement_repeat1] = STATE(989), - [sym_identifier] = ACTIONS(294), - [anon_sym_export] = ACTIONS(296), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(298), - [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [anon_sym_const] = ACTIONS(21), - [anon_sym_if] = ACTIONS(300), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_for] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(294), - [anon_sym_set] = ACTIONS(294), - [anon_sym_async] = ACTIONS(304), - [anon_sym_static] = ACTIONS(294), - [anon_sym_while] = ACTIONS(306), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(308), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(310), - [anon_sym_function] = ACTIONS(312), - [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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_export_statement] = STATE(350), + [sym_declaration] = STATE(350), + [sym_import] = STATE(1156), + [sym_import_statement] = STATE(350), + [sym_statement] = STATE(355), + [sym_expression_statement] = STATE(350), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_statement_block] = STATE(350), + [sym_if_statement] = STATE(350), + [sym_switch_statement] = STATE(350), + [sym_for_statement] = STATE(350), + [sym_for_in_statement] = STATE(350), + [sym_while_statement] = STATE(350), + [sym_do_statement] = STATE(350), + [sym_try_statement] = STATE(350), + [sym_with_statement] = STATE(350), + [sym_break_statement] = STATE(350), + [sym_continue_statement] = STATE(350), + [sym_debugger_statement] = STATE(350), + [sym_return_statement] = STATE(350), + [sym_throw_statement] = STATE(350), + [sym_empty_statement] = STATE(350), + [sym_labeled_statement] = STATE(350), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_class_declaration] = STATE(346), + [sym_function_expression] = STATE(609), + [sym_function_declaration] = STATE(346), + [sym_generator_function] = STATE(609), + [sym_generator_function_declaration] = STATE(346), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_sequence_expression] = STATE(1527), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1103), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_SEMI] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_import] = ACTIONS(19), + [anon_sym_with] = ACTIONS(21), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_if] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_for] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(9), + [anon_sym_set] = ACTIONS(9), + [anon_sym_async] = ACTIONS(39), + [anon_sym_static] = ACTIONS(9), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [41] = { - [sym_export_statement] = STATE(317), - [sym_declaration] = STATE(317), - [sym_import] = STATE(595), - [sym_import_statement] = STATE(317), - [sym_expression_statement] = STATE(317), - [sym_variable_declaration] = STATE(341), - [sym_lexical_declaration] = STATE(341), - [sym_statement_block] = STATE(317), - [sym_if_statement] = STATE(317), - [sym_switch_statement] = STATE(317), - [sym_for_statement] = STATE(317), - [sym_for_in_statement] = STATE(317), - [sym_while_statement] = STATE(317), - [sym_do_statement] = STATE(317), - [sym_try_statement] = STATE(317), - [sym_with_statement] = STATE(317), - [sym_break_statement] = STATE(317), - [sym_continue_statement] = STATE(317), - [sym_debugger_statement] = STATE(317), - [sym_return_statement] = STATE(317), - [sym_throw_statement] = STATE(317), - [sym_empty_statement] = STATE(317), - [sym_labeled_statement] = STATE(317), - [sym_parenthesized_expression] = STATE(388), - [sym_expression] = STATE(600), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_class_declaration] = STATE(341), - [sym_function] = STATE(595), - [sym_function_declaration] = STATE(341), - [sym_generator_function] = STATE(595), - [sym_generator_function_declaration] = STATE(341), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_sequence_expression] = STATE(1227), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_export_statement_repeat1] = STATE(997), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [anon_sym_const] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_async] = ACTIONS(33), - [anon_sym_static] = ACTIONS(7), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = 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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_export_statement] = STATE(350), + [sym_declaration] = STATE(350), + [sym_import] = STATE(1156), + [sym_import_statement] = STATE(350), + [sym_statement] = STATE(343), + [sym_expression_statement] = STATE(350), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_statement_block] = STATE(350), + [sym_if_statement] = STATE(350), + [sym_switch_statement] = STATE(350), + [sym_for_statement] = STATE(350), + [sym_for_in_statement] = STATE(350), + [sym_while_statement] = STATE(350), + [sym_do_statement] = STATE(350), + [sym_try_statement] = STATE(350), + [sym_with_statement] = STATE(350), + [sym_break_statement] = STATE(350), + [sym_continue_statement] = STATE(350), + [sym_debugger_statement] = STATE(350), + [sym_return_statement] = STATE(350), + [sym_throw_statement] = STATE(350), + [sym_empty_statement] = STATE(350), + [sym_labeled_statement] = STATE(350), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_class_declaration] = STATE(346), + [sym_function_expression] = STATE(609), + [sym_function_declaration] = STATE(346), + [sym_generator_function] = STATE(609), + [sym_generator_function_declaration] = STATE(346), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_sequence_expression] = STATE(1527), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1088), + [sym_identifier] = ACTIONS(318), + [anon_sym_export] = ACTIONS(320), + [anon_sym_SEMI] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(322), + [anon_sym_import] = ACTIONS(19), + [anon_sym_with] = ACTIONS(324), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(326), + [anon_sym_const] = ACTIONS(27), + [anon_sym_if] = ACTIONS(328), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_for] = ACTIONS(330), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(318), + [anon_sym_set] = ACTIONS(318), + [anon_sym_async] = ACTIONS(332), + [anon_sym_static] = ACTIONS(318), + [anon_sym_while] = ACTIONS(334), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(336), + [anon_sym_function] = ACTIONS(338), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [42] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(434), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1386), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_STAR] = ACTIONS(316), - [anon_sym_LBRACE] = ACTIONS(318), - [anon_sym_COMMA] = ACTIONS(320), - [anon_sym_RBRACE] = ACTIONS(320), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_RPAREN] = ACTIONS(320), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(314), - [anon_sym_set] = ACTIONS(314), - [anon_sym_async] = ACTIONS(328), - [anon_sym_static] = ACTIONS(314), - [anon_sym_in] = ACTIONS(330), - [anon_sym_COLON] = ACTIONS(320), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(334), - [anon_sym_RBRACK] = ACTIONS(320), - [anon_sym_LT] = ACTIONS(336), - [anon_sym_GT] = ACTIONS(330), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_DOT] = ACTIONS(330), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_QMARK_DOT] = ACTIONS(320), - [anon_sym_new] = ACTIONS(344), - [anon_sym_AMP_AMP] = ACTIONS(320), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_GT_GT] = ACTIONS(330), - [anon_sym_GT_GT_GT] = ACTIONS(320), - [anon_sym_LT_LT] = ACTIONS(320), - [anon_sym_AMP] = ACTIONS(330), - [anon_sym_CARET] = ACTIONS(320), - [anon_sym_PIPE] = ACTIONS(330), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_PERCENT] = ACTIONS(320), - [anon_sym_STAR_STAR] = ACTIONS(320), - [anon_sym_LT_EQ] = ACTIONS(320), - [anon_sym_EQ_EQ] = ACTIONS(330), - [anon_sym_EQ_EQ_EQ] = ACTIONS(320), - [anon_sym_BANG_EQ] = ACTIONS(330), - [anon_sym_BANG_EQ_EQ] = ACTIONS(320), - [anon_sym_GT_EQ] = ACTIONS(320), - [anon_sym_QMARK_QMARK] = ACTIONS(320), - [anon_sym_instanceof] = ACTIONS(330), - [anon_sym_BANG] = ACTIONS(346), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(362), - [anon_sym_AT] = ACTIONS(85), - [sym_ternary_qmark] = ACTIONS(320), + [sym_export_statement] = STATE(350), + [sym_declaration] = STATE(350), + [sym_import] = STATE(1156), + [sym_import_statement] = STATE(350), + [sym_statement] = STATE(324), + [sym_expression_statement] = STATE(350), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_statement_block] = STATE(350), + [sym_if_statement] = STATE(350), + [sym_switch_statement] = STATE(350), + [sym_for_statement] = STATE(350), + [sym_for_in_statement] = STATE(350), + [sym_while_statement] = STATE(350), + [sym_do_statement] = STATE(350), + [sym_try_statement] = STATE(350), + [sym_with_statement] = STATE(350), + [sym_break_statement] = STATE(350), + [sym_continue_statement] = STATE(350), + [sym_debugger_statement] = STATE(350), + [sym_return_statement] = STATE(350), + [sym_throw_statement] = STATE(350), + [sym_empty_statement] = STATE(350), + [sym_labeled_statement] = STATE(350), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_class_declaration] = STATE(346), + [sym_function_expression] = STATE(609), + [sym_function_declaration] = STATE(346), + [sym_generator_function] = STATE(609), + [sym_generator_function_declaration] = STATE(346), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_sequence_expression] = STATE(1527), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1103), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_SEMI] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_import] = ACTIONS(19), + [anon_sym_with] = ACTIONS(21), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_if] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_for] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(9), + [anon_sym_set] = ACTIONS(9), + [anon_sym_async] = ACTIONS(39), + [anon_sym_static] = ACTIONS(9), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [43] = { - [sym_import] = STATE(595), - [sym_parenthesized_expression] = STATE(388), - [sym_expression] = STATE(557), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_function] = STATE(595), - [sym_generator_function] = STATE(595), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_export_statement_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(364), - [anon_sym_export] = ACTIONS(364), - [anon_sym_STAR] = ACTIONS(366), - [anon_sym_SEMI] = ACTIONS(320), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_COMMA] = ACTIONS(320), - [anon_sym_RBRACE] = ACTIONS(320), - [anon_sym_import] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(364), - [anon_sym_set] = ACTIONS(364), - [anon_sym_async] = ACTIONS(372), - [anon_sym_static] = ACTIONS(364), - [anon_sym_in] = ACTIONS(330), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(374), - [anon_sym_GT] = ACTIONS(330), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_DOT] = ACTIONS(330), - [anon_sym_class] = ACTIONS(376), - [anon_sym_function] = ACTIONS(378), - [anon_sym_QMARK_DOT] = ACTIONS(320), - [anon_sym_new] = ACTIONS(65), - [anon_sym_AMP_AMP] = ACTIONS(320), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_GT_GT] = ACTIONS(330), - [anon_sym_GT_GT_GT] = ACTIONS(320), - [anon_sym_LT_LT] = ACTIONS(320), - [anon_sym_AMP] = ACTIONS(330), - [anon_sym_CARET] = ACTIONS(320), - [anon_sym_PIPE] = ACTIONS(330), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_PERCENT] = ACTIONS(320), - [anon_sym_STAR_STAR] = ACTIONS(320), - [anon_sym_LT_EQ] = ACTIONS(320), - [anon_sym_EQ_EQ] = ACTIONS(330), - [anon_sym_EQ_EQ_EQ] = ACTIONS(320), - [anon_sym_BANG_EQ] = ACTIONS(330), - [anon_sym_BANG_EQ_EQ] = ACTIONS(320), - [anon_sym_GT_EQ] = ACTIONS(320), - [anon_sym_QMARK_QMARK] = ACTIONS(320), - [anon_sym_instanceof] = ACTIONS(330), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(69), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [sym_automatic_semicolon] = ACTIONS(320), - [sym_ternary_qmark] = ACTIONS(320), + [sym_export_statement] = STATE(350), + [sym_declaration] = STATE(350), + [sym_import] = STATE(1156), + [sym_import_statement] = STATE(350), + [sym_statement] = STATE(353), + [sym_expression_statement] = STATE(350), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_statement_block] = STATE(350), + [sym_if_statement] = STATE(350), + [sym_switch_statement] = STATE(350), + [sym_for_statement] = STATE(350), + [sym_for_in_statement] = STATE(350), + [sym_while_statement] = STATE(350), + [sym_do_statement] = STATE(350), + [sym_try_statement] = STATE(350), + [sym_with_statement] = STATE(350), + [sym_break_statement] = STATE(350), + [sym_continue_statement] = STATE(350), + [sym_debugger_statement] = STATE(350), + [sym_return_statement] = STATE(350), + [sym_throw_statement] = STATE(350), + [sym_empty_statement] = STATE(350), + [sym_labeled_statement] = STATE(350), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_class_declaration] = STATE(346), + [sym_function_expression] = STATE(609), + [sym_function_declaration] = STATE(346), + [sym_generator_function] = STATE(609), + [sym_generator_function_declaration] = STATE(346), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_sequence_expression] = STATE(1527), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1103), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_SEMI] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_import] = ACTIONS(19), + [anon_sym_with] = ACTIONS(21), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_if] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_for] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(9), + [anon_sym_set] = ACTIONS(9), + [anon_sym_async] = ACTIONS(39), + [anon_sym_static] = ACTIONS(9), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [44] = { - [sym_import] = STATE(595), - [sym_parenthesized_expression] = STATE(394), - [sym_expression] = STATE(546), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_function] = STATE(595), - [sym_generator_function] = STATE(595), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(394), - [sym_subscript_expression] = STATE(394), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(834), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1357), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1358), - [aux_sym_export_statement_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(380), - [anon_sym_export] = ACTIONS(380), - [anon_sym_STAR] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(320), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_COMMA] = ACTIONS(320), - [anon_sym_import] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(384), - [anon_sym_get] = ACTIONS(380), - [anon_sym_set] = ACTIONS(380), - [anon_sym_async] = ACTIONS(386), - [anon_sym_static] = ACTIONS(380), - [anon_sym_in] = ACTIONS(330), - [anon_sym_of] = ACTIONS(330), - [anon_sym_yield] = ACTIONS(388), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(374), - [anon_sym_GT] = ACTIONS(330), - [anon_sym_SLASH] = ACTIONS(390), - [anon_sym_DOT] = ACTIONS(330), - [anon_sym_class] = ACTIONS(376), - [anon_sym_function] = ACTIONS(378), - [anon_sym_QMARK_DOT] = ACTIONS(320), - [anon_sym_new] = ACTIONS(392), - [anon_sym_AMP_AMP] = ACTIONS(320), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_GT_GT] = ACTIONS(330), - [anon_sym_GT_GT_GT] = ACTIONS(320), - [anon_sym_LT_LT] = ACTIONS(320), - [anon_sym_AMP] = ACTIONS(330), - [anon_sym_CARET] = ACTIONS(320), - [anon_sym_PIPE] = ACTIONS(330), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_PERCENT] = ACTIONS(320), - [anon_sym_STAR_STAR] = ACTIONS(320), - [anon_sym_LT_EQ] = ACTIONS(320), - [anon_sym_EQ_EQ] = ACTIONS(330), - [anon_sym_EQ_EQ_EQ] = ACTIONS(320), - [anon_sym_BANG_EQ] = ACTIONS(330), - [anon_sym_BANG_EQ_EQ] = ACTIONS(320), - [anon_sym_GT_EQ] = ACTIONS(320), - [anon_sym_QMARK_QMARK] = ACTIONS(320), - [anon_sym_instanceof] = ACTIONS(330), - [anon_sym_BANG] = ACTIONS(394), - [anon_sym_TILDE] = ACTIONS(396), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(398), - [anon_sym_DASH_DASH] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(400), - [anon_sym_AT] = ACTIONS(85), - [sym_automatic_semicolon] = ACTIONS(320), - [sym_ternary_qmark] = ACTIONS(320), + [sym_export_statement] = STATE(350), + [sym_declaration] = STATE(350), + [sym_import] = STATE(1156), + [sym_import_statement] = STATE(350), + [sym_statement] = STATE(344), + [sym_expression_statement] = STATE(350), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_statement_block] = STATE(350), + [sym_if_statement] = STATE(350), + [sym_switch_statement] = STATE(350), + [sym_for_statement] = STATE(350), + [sym_for_in_statement] = STATE(350), + [sym_while_statement] = STATE(350), + [sym_do_statement] = STATE(350), + [sym_try_statement] = STATE(350), + [sym_with_statement] = STATE(350), + [sym_break_statement] = STATE(350), + [sym_continue_statement] = STATE(350), + [sym_debugger_statement] = STATE(350), + [sym_return_statement] = STATE(350), + [sym_throw_statement] = STATE(350), + [sym_empty_statement] = STATE(350), + [sym_labeled_statement] = STATE(350), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_class_declaration] = STATE(346), + [sym_function_expression] = STATE(609), + [sym_function_declaration] = STATE(346), + [sym_generator_function] = STATE(609), + [sym_generator_function_declaration] = STATE(346), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_sequence_expression] = STATE(1527), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1103), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_SEMI] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_import] = ACTIONS(19), + [anon_sym_with] = ACTIONS(21), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_if] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_for] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(9), + [anon_sym_set] = ACTIONS(9), + [anon_sym_async] = ACTIONS(39), + [anon_sym_static] = ACTIONS(9), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [45] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(405), - [sym_expression] = STATE(713), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(405), - [sym_subscript_expression] = STATE(405), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(832), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1440), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1418), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(402), - [anon_sym_export] = ACTIONS(402), - [anon_sym_STAR] = ACTIONS(404), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(408), - [anon_sym_get] = ACTIONS(402), - [anon_sym_set] = ACTIONS(402), - [anon_sym_async] = ACTIONS(410), - [anon_sym_static] = ACTIONS(402), - [anon_sym_in] = ACTIONS(330), - [anon_sym_of] = ACTIONS(330), - [anon_sym_yield] = ACTIONS(412), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(336), - [anon_sym_GT] = ACTIONS(330), - [anon_sym_SLASH] = ACTIONS(416), - [anon_sym_DOT] = ACTIONS(330), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_QMARK_DOT] = ACTIONS(320), - [anon_sym_new] = ACTIONS(418), - [anon_sym_AMP_AMP] = ACTIONS(320), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_GT_GT] = ACTIONS(330), - [anon_sym_GT_GT_GT] = ACTIONS(320), - [anon_sym_LT_LT] = ACTIONS(320), - [anon_sym_AMP] = ACTIONS(330), - [anon_sym_CARET] = ACTIONS(320), - [anon_sym_PIPE] = ACTIONS(330), - [anon_sym_PLUS] = ACTIONS(420), - [anon_sym_DASH] = ACTIONS(420), - [anon_sym_PERCENT] = ACTIONS(320), - [anon_sym_STAR_STAR] = ACTIONS(320), - [anon_sym_LT_EQ] = ACTIONS(320), - [anon_sym_EQ_EQ] = ACTIONS(330), - [anon_sym_EQ_EQ_EQ] = ACTIONS(320), - [anon_sym_BANG_EQ] = ACTIONS(330), - [anon_sym_BANG_EQ_EQ] = ACTIONS(320), - [anon_sym_GT_EQ] = ACTIONS(320), - [anon_sym_QMARK_QMARK] = ACTIONS(320), - [anon_sym_instanceof] = ACTIONS(330), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_typeof] = ACTIONS(420), - [anon_sym_void] = ACTIONS(420), - [anon_sym_delete] = ACTIONS(420), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(426), - [anon_sym_AT] = ACTIONS(85), - [sym_ternary_qmark] = ACTIONS(320), + [sym_export_statement] = STATE(350), + [sym_declaration] = STATE(350), + [sym_import] = STATE(1156), + [sym_import_statement] = STATE(350), + [sym_statement] = STATE(353), + [sym_expression_statement] = STATE(350), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_statement_block] = STATE(350), + [sym_if_statement] = STATE(350), + [sym_switch_statement] = STATE(350), + [sym_for_statement] = STATE(350), + [sym_for_in_statement] = STATE(350), + [sym_while_statement] = STATE(350), + [sym_do_statement] = STATE(350), + [sym_try_statement] = STATE(350), + [sym_with_statement] = STATE(350), + [sym_break_statement] = STATE(350), + [sym_continue_statement] = STATE(350), + [sym_debugger_statement] = STATE(350), + [sym_return_statement] = STATE(350), + [sym_throw_statement] = STATE(350), + [sym_empty_statement] = STATE(350), + [sym_labeled_statement] = STATE(350), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_class_declaration] = STATE(346), + [sym_function_expression] = STATE(609), + [sym_function_declaration] = STATE(346), + [sym_generator_function] = STATE(609), + [sym_generator_function_declaration] = STATE(346), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_sequence_expression] = STATE(1527), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1088), + [sym_identifier] = ACTIONS(318), + [anon_sym_export] = ACTIONS(320), + [anon_sym_SEMI] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(322), + [anon_sym_import] = ACTIONS(19), + [anon_sym_with] = ACTIONS(324), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(326), + [anon_sym_const] = ACTIONS(27), + [anon_sym_if] = ACTIONS(328), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_for] = ACTIONS(330), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(318), + [anon_sym_set] = ACTIONS(318), + [anon_sym_async] = ACTIONS(332), + [anon_sym_static] = ACTIONS(318), + [anon_sym_while] = ACTIONS(334), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(336), + [anon_sym_function] = ACTIONS(338), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [46] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(364), - [sym_expression] = STATE(663), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(364), - [sym_subscript_expression] = STATE(364), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(833), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1383), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1388), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(428), - [anon_sym_export] = ACTIONS(428), - [anon_sym_STAR] = ACTIONS(430), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(432), - [anon_sym_get] = ACTIONS(428), - [anon_sym_set] = ACTIONS(428), - [anon_sym_async] = ACTIONS(434), - [anon_sym_static] = ACTIONS(428), - [anon_sym_in] = ACTIONS(330), - [anon_sym_COLON] = ACTIONS(320), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(336), - [anon_sym_GT] = ACTIONS(330), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_DOT] = ACTIONS(330), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_QMARK_DOT] = ACTIONS(320), - [anon_sym_new] = ACTIONS(438), - [anon_sym_AMP_AMP] = ACTIONS(320), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_GT_GT] = ACTIONS(330), - [anon_sym_GT_GT_GT] = ACTIONS(320), - [anon_sym_LT_LT] = ACTIONS(320), - [anon_sym_AMP] = ACTIONS(330), - [anon_sym_CARET] = ACTIONS(320), - [anon_sym_PIPE] = ACTIONS(330), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_PERCENT] = ACTIONS(320), - [anon_sym_STAR_STAR] = ACTIONS(320), - [anon_sym_LT_EQ] = ACTIONS(320), - [anon_sym_EQ_EQ] = ACTIONS(330), - [anon_sym_EQ_EQ_EQ] = ACTIONS(320), - [anon_sym_BANG_EQ] = ACTIONS(330), - [anon_sym_BANG_EQ_EQ] = ACTIONS(320), - [anon_sym_GT_EQ] = ACTIONS(320), - [anon_sym_QMARK_QMARK] = ACTIONS(320), - [anon_sym_instanceof] = ACTIONS(330), - [anon_sym_BANG] = ACTIONS(440), - [anon_sym_TILDE] = ACTIONS(442), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(444), - [anon_sym_DASH_DASH] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(446), - [anon_sym_AT] = ACTIONS(85), - [sym_ternary_qmark] = ACTIONS(320), + [sym_export_statement] = STATE(350), + [sym_declaration] = STATE(350), + [sym_import] = STATE(1156), + [sym_import_statement] = STATE(350), + [sym_statement] = STATE(357), + [sym_expression_statement] = STATE(350), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_statement_block] = STATE(350), + [sym_if_statement] = STATE(350), + [sym_switch_statement] = STATE(350), + [sym_for_statement] = STATE(350), + [sym_for_in_statement] = STATE(350), + [sym_while_statement] = STATE(350), + [sym_do_statement] = STATE(350), + [sym_try_statement] = STATE(350), + [sym_with_statement] = STATE(350), + [sym_break_statement] = STATE(350), + [sym_continue_statement] = STATE(350), + [sym_debugger_statement] = STATE(350), + [sym_return_statement] = STATE(350), + [sym_throw_statement] = STATE(350), + [sym_empty_statement] = STATE(350), + [sym_labeled_statement] = STATE(350), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_class_declaration] = STATE(346), + [sym_function_expression] = STATE(609), + [sym_function_declaration] = STATE(346), + [sym_generator_function] = STATE(609), + [sym_generator_function_declaration] = STATE(346), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_sequence_expression] = STATE(1527), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1088), + [sym_identifier] = ACTIONS(318), + [anon_sym_export] = ACTIONS(320), + [anon_sym_SEMI] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(322), + [anon_sym_import] = ACTIONS(19), + [anon_sym_with] = ACTIONS(324), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(326), + [anon_sym_const] = ACTIONS(27), + [anon_sym_if] = ACTIONS(328), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_for] = ACTIONS(330), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(318), + [anon_sym_set] = ACTIONS(318), + [anon_sym_async] = ACTIONS(332), + [anon_sym_static] = ACTIONS(318), + [anon_sym_while] = ACTIONS(334), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(336), + [anon_sym_function] = ACTIONS(338), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [47] = { - [ts_builtin_sym_end] = ACTIONS(448), - [sym_identifier] = ACTIONS(450), - [anon_sym_export] = ACTIONS(450), - [anon_sym_STAR] = ACTIONS(450), - [anon_sym_SEMI] = ACTIONS(448), - [anon_sym_default] = ACTIONS(450), - [anon_sym_LBRACE] = ACTIONS(448), - [anon_sym_COMMA] = ACTIONS(448), - [anon_sym_RBRACE] = ACTIONS(448), - [anon_sym_import] = ACTIONS(450), - [anon_sym_var] = ACTIONS(450), - [anon_sym_let] = ACTIONS(450), - [anon_sym_const] = ACTIONS(450), - [anon_sym_else] = ACTIONS(450), - [anon_sym_if] = ACTIONS(450), - [anon_sym_switch] = ACTIONS(450), - [anon_sym_for] = ACTIONS(450), - [anon_sym_LPAREN] = ACTIONS(448), - [anon_sym_await] = ACTIONS(450), - [anon_sym_get] = ACTIONS(450), - [anon_sym_set] = ACTIONS(450), - [anon_sym_async] = ACTIONS(450), - [anon_sym_static] = ACTIONS(450), - [anon_sym_in] = ACTIONS(450), - [anon_sym_of] = ACTIONS(450), - [anon_sym_while] = ACTIONS(450), - [anon_sym_do] = ACTIONS(450), - [anon_sym_try] = ACTIONS(450), - [anon_sym_with] = ACTIONS(450), - [anon_sym_break] = ACTIONS(450), - [anon_sym_continue] = ACTIONS(450), - [anon_sym_debugger] = ACTIONS(450), - [anon_sym_return] = ACTIONS(450), - [anon_sym_throw] = ACTIONS(450), - [anon_sym_case] = ACTIONS(450), - [anon_sym_yield] = ACTIONS(450), - [anon_sym_LBRACK] = ACTIONS(448), - [anon_sym_LT] = ACTIONS(450), - [anon_sym_GT] = ACTIONS(450), - [anon_sym_SLASH] = ACTIONS(450), - [anon_sym_DOT] = ACTIONS(450), - [anon_sym_class] = ACTIONS(450), - [anon_sym_function] = ACTIONS(450), - [anon_sym_QMARK_DOT] = ACTIONS(448), - [anon_sym_new] = ACTIONS(450), - [anon_sym_AMP_AMP] = ACTIONS(448), - [anon_sym_PIPE_PIPE] = ACTIONS(448), - [anon_sym_GT_GT] = ACTIONS(450), - [anon_sym_GT_GT_GT] = ACTIONS(448), - [anon_sym_LT_LT] = ACTIONS(448), - [anon_sym_AMP] = ACTIONS(450), - [anon_sym_CARET] = ACTIONS(448), - [anon_sym_PIPE] = ACTIONS(450), - [anon_sym_PLUS] = ACTIONS(450), - [anon_sym_DASH] = ACTIONS(450), - [anon_sym_PERCENT] = ACTIONS(448), - [anon_sym_STAR_STAR] = ACTIONS(448), - [anon_sym_LT_EQ] = ACTIONS(448), - [anon_sym_EQ_EQ] = ACTIONS(450), - [anon_sym_EQ_EQ_EQ] = ACTIONS(448), - [anon_sym_BANG_EQ] = ACTIONS(450), - [anon_sym_BANG_EQ_EQ] = ACTIONS(448), - [anon_sym_GT_EQ] = ACTIONS(448), - [anon_sym_QMARK_QMARK] = ACTIONS(448), - [anon_sym_instanceof] = ACTIONS(450), - [anon_sym_BANG] = ACTIONS(450), - [anon_sym_TILDE] = ACTIONS(448), - [anon_sym_typeof] = ACTIONS(450), - [anon_sym_void] = ACTIONS(450), - [anon_sym_delete] = ACTIONS(450), - [anon_sym_PLUS_PLUS] = ACTIONS(448), - [anon_sym_DASH_DASH] = ACTIONS(448), - [anon_sym_DQUOTE] = ACTIONS(448), - [anon_sym_SQUOTE] = ACTIONS(448), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(448), - [sym_number] = ACTIONS(448), - [sym_this] = ACTIONS(450), - [sym_super] = ACTIONS(450), - [sym_true] = ACTIONS(450), - [sym_false] = ACTIONS(450), - [sym_null] = ACTIONS(450), - [sym_undefined] = ACTIONS(450), - [anon_sym_AT] = ACTIONS(448), - [sym_automatic_semicolon] = ACTIONS(452), - [sym_ternary_qmark] = ACTIONS(448), + [sym_export_statement] = STATE(350), + [sym_declaration] = STATE(350), + [sym_import] = STATE(1156), + [sym_import_statement] = STATE(350), + [sym_statement] = STATE(393), + [sym_expression_statement] = STATE(350), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_statement_block] = STATE(350), + [sym_if_statement] = STATE(350), + [sym_switch_statement] = STATE(350), + [sym_for_statement] = STATE(350), + [sym_for_in_statement] = STATE(350), + [sym_while_statement] = STATE(350), + [sym_do_statement] = STATE(350), + [sym_try_statement] = STATE(350), + [sym_with_statement] = STATE(350), + [sym_break_statement] = STATE(350), + [sym_continue_statement] = STATE(350), + [sym_debugger_statement] = STATE(350), + [sym_return_statement] = STATE(350), + [sym_throw_statement] = STATE(350), + [sym_empty_statement] = STATE(350), + [sym_labeled_statement] = STATE(350), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_class_declaration] = STATE(346), + [sym_function_expression] = STATE(609), + [sym_function_declaration] = STATE(346), + [sym_generator_function] = STATE(609), + [sym_generator_function_declaration] = STATE(346), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_sequence_expression] = STATE(1527), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1103), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_SEMI] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_import] = ACTIONS(19), + [anon_sym_with] = ACTIONS(21), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_if] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_for] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(9), + [anon_sym_set] = ACTIONS(9), + [anon_sym_async] = ACTIONS(39), + [anon_sym_static] = ACTIONS(9), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [48] = { - [ts_builtin_sym_end] = ACTIONS(454), - [sym_identifier] = ACTIONS(456), - [anon_sym_export] = ACTIONS(456), - [anon_sym_STAR] = ACTIONS(458), - [anon_sym_SEMI] = ACTIONS(454), - [anon_sym_default] = ACTIONS(456), - [anon_sym_LBRACE] = ACTIONS(454), - [anon_sym_COMMA] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(454), - [anon_sym_import] = ACTIONS(456), - [anon_sym_var] = ACTIONS(456), - [anon_sym_let] = ACTIONS(456), - [anon_sym_const] = ACTIONS(456), - [anon_sym_else] = ACTIONS(456), - [anon_sym_if] = ACTIONS(456), - [anon_sym_switch] = ACTIONS(456), - [anon_sym_for] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(454), - [anon_sym_await] = ACTIONS(456), - [anon_sym_get] = ACTIONS(456), - [anon_sym_set] = ACTIONS(456), - [anon_sym_async] = ACTIONS(456), - [anon_sym_static] = ACTIONS(456), - [anon_sym_in] = ACTIONS(458), - [anon_sym_while] = ACTIONS(456), - [anon_sym_do] = ACTIONS(456), - [anon_sym_try] = ACTIONS(456), - [anon_sym_with] = ACTIONS(456), - [anon_sym_break] = ACTIONS(456), - [anon_sym_continue] = ACTIONS(456), - [anon_sym_debugger] = ACTIONS(456), - [anon_sym_return] = ACTIONS(456), - [anon_sym_throw] = ACTIONS(456), - [anon_sym_case] = ACTIONS(456), - [anon_sym_yield] = ACTIONS(456), - [anon_sym_EQ] = ACTIONS(462), - [anon_sym_LBRACK] = ACTIONS(454), - [anon_sym_LT] = ACTIONS(456), - [anon_sym_GT] = ACTIONS(458), - [anon_sym_SLASH] = ACTIONS(456), - [anon_sym_DOT] = ACTIONS(458), - [anon_sym_class] = ACTIONS(456), - [anon_sym_function] = ACTIONS(456), - [anon_sym_QMARK_DOT] = ACTIONS(460), - [anon_sym_new] = ACTIONS(456), - [anon_sym_AMP_AMP] = ACTIONS(460), - [anon_sym_PIPE_PIPE] = ACTIONS(460), - [anon_sym_GT_GT] = ACTIONS(458), - [anon_sym_GT_GT_GT] = ACTIONS(460), - [anon_sym_LT_LT] = ACTIONS(460), - [anon_sym_AMP] = ACTIONS(458), - [anon_sym_CARET] = ACTIONS(460), - [anon_sym_PIPE] = ACTIONS(458), - [anon_sym_PLUS] = ACTIONS(456), - [anon_sym_DASH] = ACTIONS(456), - [anon_sym_PERCENT] = ACTIONS(460), - [anon_sym_STAR_STAR] = ACTIONS(460), - [anon_sym_LT_EQ] = ACTIONS(460), - [anon_sym_EQ_EQ] = ACTIONS(458), - [anon_sym_EQ_EQ_EQ] = ACTIONS(460), - [anon_sym_BANG_EQ] = ACTIONS(458), - [anon_sym_BANG_EQ_EQ] = ACTIONS(460), - [anon_sym_GT_EQ] = ACTIONS(460), - [anon_sym_QMARK_QMARK] = ACTIONS(460), - [anon_sym_instanceof] = ACTIONS(458), - [anon_sym_BANG] = ACTIONS(456), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_typeof] = ACTIONS(456), - [anon_sym_void] = ACTIONS(456), - [anon_sym_delete] = ACTIONS(456), - [anon_sym_PLUS_PLUS] = ACTIONS(454), - [anon_sym_DASH_DASH] = ACTIONS(454), - [anon_sym_DQUOTE] = ACTIONS(454), - [anon_sym_SQUOTE] = ACTIONS(454), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(454), - [sym_number] = ACTIONS(454), - [sym_this] = ACTIONS(456), - [sym_super] = ACTIONS(456), - [sym_true] = ACTIONS(456), - [sym_false] = ACTIONS(456), - [sym_null] = ACTIONS(456), - [sym_undefined] = ACTIONS(456), - [anon_sym_AT] = ACTIONS(454), - [sym_automatic_semicolon] = ACTIONS(464), - [sym_ternary_qmark] = ACTIONS(460), + [sym_export_statement] = STATE(350), + [sym_declaration] = STATE(350), + [sym_import] = STATE(1156), + [sym_import_statement] = STATE(350), + [sym_statement] = STATE(393), + [sym_expression_statement] = STATE(350), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_statement_block] = STATE(350), + [sym_if_statement] = STATE(350), + [sym_switch_statement] = STATE(350), + [sym_for_statement] = STATE(350), + [sym_for_in_statement] = STATE(350), + [sym_while_statement] = STATE(350), + [sym_do_statement] = STATE(350), + [sym_try_statement] = STATE(350), + [sym_with_statement] = STATE(350), + [sym_break_statement] = STATE(350), + [sym_continue_statement] = STATE(350), + [sym_debugger_statement] = STATE(350), + [sym_return_statement] = STATE(350), + [sym_throw_statement] = STATE(350), + [sym_empty_statement] = STATE(350), + [sym_labeled_statement] = STATE(350), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_class_declaration] = STATE(346), + [sym_function_expression] = STATE(609), + [sym_function_declaration] = STATE(346), + [sym_generator_function] = STATE(609), + [sym_generator_function_declaration] = STATE(346), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_sequence_expression] = STATE(1527), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1088), + [sym_identifier] = ACTIONS(318), + [anon_sym_export] = ACTIONS(320), + [anon_sym_SEMI] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(322), + [anon_sym_import] = ACTIONS(19), + [anon_sym_with] = ACTIONS(324), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(326), + [anon_sym_const] = ACTIONS(27), + [anon_sym_if] = ACTIONS(328), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_for] = ACTIONS(330), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(318), + [anon_sym_set] = ACTIONS(318), + [anon_sym_async] = ACTIONS(332), + [anon_sym_static] = ACTIONS(318), + [anon_sym_while] = ACTIONS(334), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(336), + [anon_sym_function] = ACTIONS(338), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [49] = { - [ts_builtin_sym_end] = ACTIONS(454), - [sym_identifier] = ACTIONS(456), - [anon_sym_export] = ACTIONS(456), - [anon_sym_STAR] = ACTIONS(456), - [anon_sym_SEMI] = ACTIONS(454), - [anon_sym_default] = ACTIONS(456), - [anon_sym_LBRACE] = ACTIONS(454), - [anon_sym_COMMA] = ACTIONS(454), - [anon_sym_RBRACE] = ACTIONS(454), - [anon_sym_import] = ACTIONS(456), - [anon_sym_var] = ACTIONS(456), - [anon_sym_let] = ACTIONS(456), - [anon_sym_const] = ACTIONS(456), - [anon_sym_else] = ACTIONS(456), - [anon_sym_if] = ACTIONS(456), - [anon_sym_switch] = ACTIONS(456), - [anon_sym_for] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(454), - [anon_sym_await] = ACTIONS(456), - [anon_sym_get] = ACTIONS(456), - [anon_sym_set] = ACTIONS(456), - [anon_sym_async] = ACTIONS(456), - [anon_sym_static] = ACTIONS(456), - [anon_sym_in] = ACTIONS(456), - [anon_sym_of] = ACTIONS(456), - [anon_sym_while] = ACTIONS(456), - [anon_sym_do] = ACTIONS(456), - [anon_sym_try] = ACTIONS(456), - [anon_sym_with] = ACTIONS(456), - [anon_sym_break] = ACTIONS(456), - [anon_sym_continue] = ACTIONS(456), - [anon_sym_debugger] = ACTIONS(456), - [anon_sym_return] = ACTIONS(456), - [anon_sym_throw] = ACTIONS(456), - [anon_sym_case] = ACTIONS(456), - [anon_sym_yield] = ACTIONS(456), - [anon_sym_LBRACK] = ACTIONS(454), - [anon_sym_LT] = ACTIONS(456), - [anon_sym_GT] = ACTIONS(456), - [anon_sym_SLASH] = ACTIONS(456), - [anon_sym_DOT] = ACTIONS(456), - [anon_sym_class] = ACTIONS(456), - [anon_sym_function] = ACTIONS(456), - [anon_sym_QMARK_DOT] = ACTIONS(454), - [anon_sym_new] = ACTIONS(456), - [anon_sym_AMP_AMP] = ACTIONS(454), - [anon_sym_PIPE_PIPE] = ACTIONS(454), - [anon_sym_GT_GT] = ACTIONS(456), - [anon_sym_GT_GT_GT] = ACTIONS(454), - [anon_sym_LT_LT] = ACTIONS(454), - [anon_sym_AMP] = ACTIONS(456), - [anon_sym_CARET] = ACTIONS(454), - [anon_sym_PIPE] = ACTIONS(456), - [anon_sym_PLUS] = ACTIONS(456), - [anon_sym_DASH] = ACTIONS(456), - [anon_sym_PERCENT] = ACTIONS(454), - [anon_sym_STAR_STAR] = ACTIONS(454), - [anon_sym_LT_EQ] = ACTIONS(454), - [anon_sym_EQ_EQ] = ACTIONS(456), - [anon_sym_EQ_EQ_EQ] = ACTIONS(454), - [anon_sym_BANG_EQ] = ACTIONS(456), - [anon_sym_BANG_EQ_EQ] = ACTIONS(454), - [anon_sym_GT_EQ] = ACTIONS(454), - [anon_sym_QMARK_QMARK] = ACTIONS(454), - [anon_sym_instanceof] = ACTIONS(456), - [anon_sym_BANG] = ACTIONS(456), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_typeof] = ACTIONS(456), - [anon_sym_void] = ACTIONS(456), - [anon_sym_delete] = ACTIONS(456), - [anon_sym_PLUS_PLUS] = ACTIONS(454), - [anon_sym_DASH_DASH] = ACTIONS(454), - [anon_sym_DQUOTE] = ACTIONS(454), - [anon_sym_SQUOTE] = ACTIONS(454), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(454), - [sym_number] = ACTIONS(454), - [sym_this] = ACTIONS(456), - [sym_super] = ACTIONS(456), - [sym_true] = ACTIONS(456), - [sym_false] = ACTIONS(456), - [sym_null] = ACTIONS(456), - [sym_undefined] = ACTIONS(456), - [anon_sym_AT] = ACTIONS(454), - [sym_automatic_semicolon] = ACTIONS(466), - [sym_ternary_qmark] = ACTIONS(454), + [sym_export_statement] = STATE(350), + [sym_declaration] = STATE(350), + [sym_import] = STATE(1156), + [sym_import_statement] = STATE(350), + [sym_statement] = STATE(390), + [sym_expression_statement] = STATE(350), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_statement_block] = STATE(350), + [sym_if_statement] = STATE(350), + [sym_switch_statement] = STATE(350), + [sym_for_statement] = STATE(350), + [sym_for_in_statement] = STATE(350), + [sym_while_statement] = STATE(350), + [sym_do_statement] = STATE(350), + [sym_try_statement] = STATE(350), + [sym_with_statement] = STATE(350), + [sym_break_statement] = STATE(350), + [sym_continue_statement] = STATE(350), + [sym_debugger_statement] = STATE(350), + [sym_return_statement] = STATE(350), + [sym_throw_statement] = STATE(350), + [sym_empty_statement] = STATE(350), + [sym_labeled_statement] = STATE(350), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_class_declaration] = STATE(346), + [sym_function_expression] = STATE(609), + [sym_function_declaration] = STATE(346), + [sym_generator_function] = STATE(609), + [sym_generator_function_declaration] = STATE(346), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_sequence_expression] = STATE(1527), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1103), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_SEMI] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_import] = ACTIONS(19), + [anon_sym_with] = ACTIONS(21), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_if] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_for] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(9), + [anon_sym_set] = ACTIONS(9), + [anon_sym_async] = ACTIONS(39), + [anon_sym_static] = ACTIONS(9), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [50] = { - [ts_builtin_sym_end] = ACTIONS(448), - [sym_identifier] = ACTIONS(450), - [anon_sym_export] = ACTIONS(450), - [anon_sym_STAR] = ACTIONS(450), - [anon_sym_SEMI] = ACTIONS(448), - [anon_sym_default] = ACTIONS(450), - [anon_sym_LBRACE] = ACTIONS(448), - [anon_sym_COMMA] = ACTIONS(448), - [anon_sym_RBRACE] = ACTIONS(448), - [anon_sym_import] = ACTIONS(450), - [anon_sym_var] = ACTIONS(450), - [anon_sym_let] = ACTIONS(450), - [anon_sym_const] = ACTIONS(450), - [anon_sym_else] = ACTIONS(450), - [anon_sym_if] = ACTIONS(450), - [anon_sym_switch] = ACTIONS(450), - [anon_sym_for] = ACTIONS(450), - [anon_sym_LPAREN] = ACTIONS(448), - [anon_sym_await] = ACTIONS(450), - [anon_sym_get] = ACTIONS(450), - [anon_sym_set] = ACTIONS(450), - [anon_sym_async] = ACTIONS(450), - [anon_sym_static] = ACTIONS(450), - [anon_sym_in] = ACTIONS(450), - [anon_sym_of] = ACTIONS(450), - [anon_sym_while] = ACTIONS(450), - [anon_sym_do] = ACTIONS(450), - [anon_sym_try] = ACTIONS(450), - [anon_sym_with] = ACTIONS(450), - [anon_sym_break] = ACTIONS(450), - [anon_sym_continue] = ACTIONS(450), - [anon_sym_debugger] = ACTIONS(450), - [anon_sym_return] = ACTIONS(450), - [anon_sym_throw] = ACTIONS(450), - [anon_sym_case] = ACTIONS(450), - [anon_sym_yield] = ACTIONS(450), - [anon_sym_LBRACK] = ACTIONS(448), - [anon_sym_LT] = ACTIONS(450), - [anon_sym_GT] = ACTIONS(450), - [anon_sym_SLASH] = ACTIONS(450), - [anon_sym_DOT] = ACTIONS(450), - [anon_sym_class] = ACTIONS(450), - [anon_sym_function] = ACTIONS(450), - [anon_sym_QMARK_DOT] = ACTIONS(448), - [anon_sym_new] = ACTIONS(450), - [anon_sym_AMP_AMP] = ACTIONS(448), - [anon_sym_PIPE_PIPE] = ACTIONS(448), - [anon_sym_GT_GT] = ACTIONS(450), - [anon_sym_GT_GT_GT] = ACTIONS(448), - [anon_sym_LT_LT] = ACTIONS(448), - [anon_sym_AMP] = ACTIONS(450), - [anon_sym_CARET] = ACTIONS(448), - [anon_sym_PIPE] = ACTIONS(450), - [anon_sym_PLUS] = ACTIONS(450), - [anon_sym_DASH] = ACTIONS(450), - [anon_sym_PERCENT] = ACTIONS(448), - [anon_sym_STAR_STAR] = ACTIONS(448), - [anon_sym_LT_EQ] = ACTIONS(448), - [anon_sym_EQ_EQ] = ACTIONS(450), - [anon_sym_EQ_EQ_EQ] = ACTIONS(448), - [anon_sym_BANG_EQ] = ACTIONS(450), - [anon_sym_BANG_EQ_EQ] = ACTIONS(448), - [anon_sym_GT_EQ] = ACTIONS(448), - [anon_sym_QMARK_QMARK] = ACTIONS(448), - [anon_sym_instanceof] = ACTIONS(450), - [anon_sym_BANG] = ACTIONS(450), - [anon_sym_TILDE] = ACTIONS(448), - [anon_sym_typeof] = ACTIONS(450), - [anon_sym_void] = ACTIONS(450), - [anon_sym_delete] = ACTIONS(450), - [anon_sym_PLUS_PLUS] = ACTIONS(448), - [anon_sym_DASH_DASH] = ACTIONS(448), - [anon_sym_DQUOTE] = ACTIONS(448), - [anon_sym_SQUOTE] = ACTIONS(448), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(448), - [sym_number] = ACTIONS(448), - [sym_this] = ACTIONS(450), - [sym_super] = ACTIONS(450), - [sym_true] = ACTIONS(450), - [sym_false] = ACTIONS(450), - [sym_null] = ACTIONS(450), - [sym_undefined] = ACTIONS(450), - [anon_sym_AT] = ACTIONS(448), - [sym_automatic_semicolon] = ACTIONS(448), - [sym_ternary_qmark] = ACTIONS(448), + [sym_export_statement] = STATE(350), + [sym_declaration] = STATE(350), + [sym_import] = STATE(1156), + [sym_import_statement] = STATE(350), + [sym_statement] = STATE(361), + [sym_expression_statement] = STATE(350), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_statement_block] = STATE(350), + [sym_if_statement] = STATE(350), + [sym_switch_statement] = STATE(350), + [sym_for_statement] = STATE(350), + [sym_for_in_statement] = STATE(350), + [sym_while_statement] = STATE(350), + [sym_do_statement] = STATE(350), + [sym_try_statement] = STATE(350), + [sym_with_statement] = STATE(350), + [sym_break_statement] = STATE(350), + [sym_continue_statement] = STATE(350), + [sym_debugger_statement] = STATE(350), + [sym_return_statement] = STATE(350), + [sym_throw_statement] = STATE(350), + [sym_empty_statement] = STATE(350), + [sym_labeled_statement] = STATE(350), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_class_declaration] = STATE(346), + [sym_function_expression] = STATE(609), + [sym_function_declaration] = STATE(346), + [sym_generator_function] = STATE(609), + [sym_generator_function_declaration] = STATE(346), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_sequence_expression] = STATE(1527), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1088), + [sym_identifier] = ACTIONS(318), + [anon_sym_export] = ACTIONS(320), + [anon_sym_SEMI] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(322), + [anon_sym_import] = ACTIONS(19), + [anon_sym_with] = ACTIONS(324), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(326), + [anon_sym_const] = ACTIONS(27), + [anon_sym_if] = ACTIONS(328), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_for] = ACTIONS(330), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(318), + [anon_sym_set] = ACTIONS(318), + [anon_sym_async] = ACTIONS(332), + [anon_sym_static] = ACTIONS(318), + [anon_sym_while] = ACTIONS(334), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(336), + [anon_sym_function] = ACTIONS(338), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [51] = { - [ts_builtin_sym_end] = ACTIONS(468), - [sym_identifier] = ACTIONS(470), - [anon_sym_export] = ACTIONS(470), - [anon_sym_STAR] = ACTIONS(470), - [anon_sym_SEMI] = ACTIONS(468), - [anon_sym_default] = ACTIONS(470), - [anon_sym_LBRACE] = ACTIONS(468), - [anon_sym_COMMA] = ACTIONS(468), - [anon_sym_RBRACE] = ACTIONS(468), - [anon_sym_import] = ACTIONS(470), - [anon_sym_var] = ACTIONS(470), - [anon_sym_let] = ACTIONS(470), - [anon_sym_const] = ACTIONS(470), - [anon_sym_else] = ACTIONS(470), - [anon_sym_if] = ACTIONS(470), - [anon_sym_switch] = ACTIONS(470), - [anon_sym_for] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(468), - [anon_sym_await] = ACTIONS(470), - [anon_sym_get] = ACTIONS(470), - [anon_sym_set] = ACTIONS(470), - [anon_sym_async] = ACTIONS(470), - [anon_sym_static] = ACTIONS(470), - [anon_sym_in] = ACTIONS(470), - [anon_sym_of] = ACTIONS(470), - [anon_sym_while] = ACTIONS(470), - [anon_sym_do] = ACTIONS(470), - [anon_sym_try] = ACTIONS(470), - [anon_sym_with] = ACTIONS(470), - [anon_sym_break] = ACTIONS(470), - [anon_sym_continue] = ACTIONS(470), - [anon_sym_debugger] = ACTIONS(470), - [anon_sym_return] = ACTIONS(470), - [anon_sym_throw] = ACTIONS(470), - [anon_sym_case] = ACTIONS(470), - [anon_sym_yield] = ACTIONS(470), - [anon_sym_LBRACK] = ACTIONS(468), - [anon_sym_LT] = ACTIONS(470), - [anon_sym_GT] = ACTIONS(470), - [anon_sym_SLASH] = ACTIONS(470), - [anon_sym_DOT] = ACTIONS(470), - [anon_sym_class] = ACTIONS(470), - [anon_sym_function] = ACTIONS(470), - [anon_sym_QMARK_DOT] = ACTIONS(468), - [anon_sym_new] = ACTIONS(470), - [anon_sym_AMP_AMP] = ACTIONS(468), - [anon_sym_PIPE_PIPE] = ACTIONS(468), - [anon_sym_GT_GT] = ACTIONS(470), - [anon_sym_GT_GT_GT] = ACTIONS(468), - [anon_sym_LT_LT] = ACTIONS(468), - [anon_sym_AMP] = ACTIONS(470), - [anon_sym_CARET] = ACTIONS(468), - [anon_sym_PIPE] = ACTIONS(470), - [anon_sym_PLUS] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(470), - [anon_sym_PERCENT] = ACTIONS(468), - [anon_sym_STAR_STAR] = ACTIONS(468), - [anon_sym_LT_EQ] = ACTIONS(468), - [anon_sym_EQ_EQ] = ACTIONS(470), - [anon_sym_EQ_EQ_EQ] = ACTIONS(468), - [anon_sym_BANG_EQ] = ACTIONS(470), - [anon_sym_BANG_EQ_EQ] = ACTIONS(468), - [anon_sym_GT_EQ] = ACTIONS(468), - [anon_sym_QMARK_QMARK] = ACTIONS(468), - [anon_sym_instanceof] = ACTIONS(470), - [anon_sym_BANG] = ACTIONS(470), - [anon_sym_TILDE] = ACTIONS(468), - [anon_sym_typeof] = ACTIONS(470), - [anon_sym_void] = ACTIONS(470), - [anon_sym_delete] = ACTIONS(470), - [anon_sym_PLUS_PLUS] = ACTIONS(468), - [anon_sym_DASH_DASH] = ACTIONS(468), - [anon_sym_DQUOTE] = ACTIONS(468), - [anon_sym_SQUOTE] = ACTIONS(468), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(468), - [sym_number] = ACTIONS(468), - [sym_this] = ACTIONS(470), - [sym_super] = ACTIONS(470), - [sym_true] = ACTIONS(470), - [sym_false] = ACTIONS(470), - [sym_null] = ACTIONS(470), - [sym_undefined] = ACTIONS(470), - [anon_sym_AT] = ACTIONS(468), - [sym_automatic_semicolon] = ACTIONS(468), - [sym_ternary_qmark] = ACTIONS(468), + [sym_export_statement] = STATE(350), + [sym_declaration] = STATE(350), + [sym_import] = STATE(1156), + [sym_import_statement] = STATE(350), + [sym_statement] = STATE(344), + [sym_expression_statement] = STATE(350), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_statement_block] = STATE(350), + [sym_if_statement] = STATE(350), + [sym_switch_statement] = STATE(350), + [sym_for_statement] = STATE(350), + [sym_for_in_statement] = STATE(350), + [sym_while_statement] = STATE(350), + [sym_do_statement] = STATE(350), + [sym_try_statement] = STATE(350), + [sym_with_statement] = STATE(350), + [sym_break_statement] = STATE(350), + [sym_continue_statement] = STATE(350), + [sym_debugger_statement] = STATE(350), + [sym_return_statement] = STATE(350), + [sym_throw_statement] = STATE(350), + [sym_empty_statement] = STATE(350), + [sym_labeled_statement] = STATE(350), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_class_declaration] = STATE(346), + [sym_function_expression] = STATE(609), + [sym_function_declaration] = STATE(346), + [sym_generator_function] = STATE(609), + [sym_generator_function_declaration] = STATE(346), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_sequence_expression] = STATE(1527), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1088), + [sym_identifier] = ACTIONS(318), + [anon_sym_export] = ACTIONS(320), + [anon_sym_SEMI] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(322), + [anon_sym_import] = ACTIONS(19), + [anon_sym_with] = ACTIONS(324), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(326), + [anon_sym_const] = ACTIONS(27), + [anon_sym_if] = ACTIONS(328), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_for] = ACTIONS(330), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(318), + [anon_sym_set] = ACTIONS(318), + [anon_sym_async] = ACTIONS(332), + [anon_sym_static] = ACTIONS(318), + [anon_sym_while] = ACTIONS(334), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(336), + [anon_sym_function] = ACTIONS(338), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [52] = { - [ts_builtin_sym_end] = ACTIONS(472), - [sym_identifier] = ACTIONS(474), - [anon_sym_export] = ACTIONS(474), - [anon_sym_STAR] = ACTIONS(474), - [anon_sym_SEMI] = ACTIONS(472), - [anon_sym_default] = ACTIONS(474), - [anon_sym_LBRACE] = ACTIONS(472), - [anon_sym_COMMA] = ACTIONS(472), - [anon_sym_RBRACE] = ACTIONS(472), - [anon_sym_import] = ACTIONS(474), - [anon_sym_var] = ACTIONS(474), - [anon_sym_let] = ACTIONS(474), - [anon_sym_const] = ACTIONS(474), - [anon_sym_else] = ACTIONS(474), - [anon_sym_if] = ACTIONS(474), - [anon_sym_switch] = ACTIONS(474), - [anon_sym_for] = ACTIONS(474), - [anon_sym_LPAREN] = ACTIONS(472), - [anon_sym_await] = ACTIONS(474), - [anon_sym_get] = ACTIONS(474), - [anon_sym_set] = ACTIONS(474), - [anon_sym_async] = ACTIONS(474), - [anon_sym_static] = ACTIONS(474), - [anon_sym_in] = ACTIONS(474), - [anon_sym_of] = ACTIONS(474), - [anon_sym_while] = ACTIONS(474), - [anon_sym_do] = ACTIONS(474), - [anon_sym_try] = ACTIONS(474), - [anon_sym_with] = ACTIONS(474), - [anon_sym_break] = ACTIONS(474), - [anon_sym_continue] = ACTIONS(474), - [anon_sym_debugger] = ACTIONS(474), - [anon_sym_return] = ACTIONS(474), - [anon_sym_throw] = ACTIONS(474), - [anon_sym_case] = ACTIONS(474), - [anon_sym_yield] = ACTIONS(474), - [anon_sym_LBRACK] = ACTIONS(472), - [anon_sym_LT] = ACTIONS(474), - [anon_sym_GT] = ACTIONS(474), - [anon_sym_SLASH] = ACTIONS(474), - [anon_sym_DOT] = ACTIONS(474), - [anon_sym_class] = ACTIONS(474), - [anon_sym_function] = ACTIONS(474), - [anon_sym_QMARK_DOT] = ACTIONS(472), - [anon_sym_new] = ACTIONS(474), - [anon_sym_AMP_AMP] = ACTIONS(472), - [anon_sym_PIPE_PIPE] = ACTIONS(472), - [anon_sym_GT_GT] = ACTIONS(474), - [anon_sym_GT_GT_GT] = ACTIONS(472), - [anon_sym_LT_LT] = ACTIONS(472), - [anon_sym_AMP] = ACTIONS(474), - [anon_sym_CARET] = ACTIONS(472), - [anon_sym_PIPE] = ACTIONS(474), - [anon_sym_PLUS] = ACTIONS(474), - [anon_sym_DASH] = ACTIONS(474), - [anon_sym_PERCENT] = ACTIONS(472), - [anon_sym_STAR_STAR] = ACTIONS(472), - [anon_sym_LT_EQ] = ACTIONS(472), - [anon_sym_EQ_EQ] = ACTIONS(474), - [anon_sym_EQ_EQ_EQ] = ACTIONS(472), - [anon_sym_BANG_EQ] = ACTIONS(474), - [anon_sym_BANG_EQ_EQ] = ACTIONS(472), - [anon_sym_GT_EQ] = ACTIONS(472), - [anon_sym_QMARK_QMARK] = ACTIONS(472), - [anon_sym_instanceof] = ACTIONS(474), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_TILDE] = ACTIONS(472), - [anon_sym_typeof] = ACTIONS(474), - [anon_sym_void] = ACTIONS(474), - [anon_sym_delete] = ACTIONS(474), - [anon_sym_PLUS_PLUS] = ACTIONS(472), - [anon_sym_DASH_DASH] = ACTIONS(472), - [anon_sym_DQUOTE] = ACTIONS(472), - [anon_sym_SQUOTE] = ACTIONS(472), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(472), - [sym_number] = ACTIONS(472), - [sym_this] = ACTIONS(474), - [sym_super] = ACTIONS(474), - [sym_true] = ACTIONS(474), - [sym_false] = ACTIONS(474), - [sym_null] = ACTIONS(474), - [sym_undefined] = ACTIONS(474), - [anon_sym_AT] = ACTIONS(472), - [sym_automatic_semicolon] = ACTIONS(472), - [sym_ternary_qmark] = ACTIONS(472), + [sym_export_statement] = STATE(350), + [sym_declaration] = STATE(350), + [sym_import] = STATE(1156), + [sym_import_statement] = STATE(350), + [sym_statement] = STATE(372), + [sym_expression_statement] = STATE(350), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_statement_block] = STATE(350), + [sym_if_statement] = STATE(350), + [sym_switch_statement] = STATE(350), + [sym_for_statement] = STATE(350), + [sym_for_in_statement] = STATE(350), + [sym_while_statement] = STATE(350), + [sym_do_statement] = STATE(350), + [sym_try_statement] = STATE(350), + [sym_with_statement] = STATE(350), + [sym_break_statement] = STATE(350), + [sym_continue_statement] = STATE(350), + [sym_debugger_statement] = STATE(350), + [sym_return_statement] = STATE(350), + [sym_throw_statement] = STATE(350), + [sym_empty_statement] = STATE(350), + [sym_labeled_statement] = STATE(350), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_class_declaration] = STATE(346), + [sym_function_expression] = STATE(609), + [sym_function_declaration] = STATE(346), + [sym_generator_function] = STATE(609), + [sym_generator_function_declaration] = STATE(346), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_sequence_expression] = STATE(1527), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1088), + [sym_identifier] = ACTIONS(318), + [anon_sym_export] = ACTIONS(320), + [anon_sym_SEMI] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(322), + [anon_sym_import] = ACTIONS(19), + [anon_sym_with] = ACTIONS(324), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(326), + [anon_sym_const] = ACTIONS(27), + [anon_sym_if] = ACTIONS(328), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_for] = ACTIONS(330), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(318), + [anon_sym_set] = ACTIONS(318), + [anon_sym_async] = ACTIONS(332), + [anon_sym_static] = ACTIONS(318), + [anon_sym_while] = ACTIONS(334), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(336), + [anon_sym_function] = ACTIONS(338), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [53] = { - [ts_builtin_sym_end] = ACTIONS(476), - [sym_identifier] = ACTIONS(478), - [anon_sym_export] = ACTIONS(478), - [anon_sym_STAR] = ACTIONS(478), - [anon_sym_SEMI] = ACTIONS(476), - [anon_sym_default] = ACTIONS(478), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_COMMA] = ACTIONS(476), - [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_get] = ACTIONS(478), - [anon_sym_set] = ACTIONS(478), - [anon_sym_async] = ACTIONS(478), - [anon_sym_static] = ACTIONS(478), - [anon_sym_in] = ACTIONS(478), - [anon_sym_of] = ACTIONS(478), - [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_case] = ACTIONS(478), - [anon_sym_yield] = ACTIONS(478), - [anon_sym_LBRACK] = ACTIONS(476), - [anon_sym_LT] = ACTIONS(478), - [anon_sym_GT] = ACTIONS(478), - [anon_sym_SLASH] = ACTIONS(478), - [anon_sym_DOT] = ACTIONS(478), - [anon_sym_class] = ACTIONS(478), - [anon_sym_function] = ACTIONS(478), - [anon_sym_QMARK_DOT] = ACTIONS(476), - [anon_sym_new] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(476), - [anon_sym_PIPE_PIPE] = ACTIONS(476), - [anon_sym_GT_GT] = ACTIONS(478), - [anon_sym_GT_GT_GT] = ACTIONS(476), - [anon_sym_LT_LT] = ACTIONS(476), - [anon_sym_AMP] = ACTIONS(478), - [anon_sym_CARET] = ACTIONS(476), - [anon_sym_PIPE] = ACTIONS(478), - [anon_sym_PLUS] = ACTIONS(478), - [anon_sym_DASH] = ACTIONS(478), - [anon_sym_PERCENT] = ACTIONS(476), - [anon_sym_STAR_STAR] = ACTIONS(476), - [anon_sym_LT_EQ] = ACTIONS(476), - [anon_sym_EQ_EQ] = ACTIONS(478), - [anon_sym_EQ_EQ_EQ] = ACTIONS(476), - [anon_sym_BANG_EQ] = ACTIONS(478), - [anon_sym_BANG_EQ_EQ] = ACTIONS(476), - [anon_sym_GT_EQ] = ACTIONS(476), - [anon_sym_QMARK_QMARK] = ACTIONS(476), - [anon_sym_instanceof] = ACTIONS(478), - [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(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), - [sym_automatic_semicolon] = ACTIONS(476), - [sym_ternary_qmark] = ACTIONS(476), + [sym_export_statement] = STATE(350), + [sym_declaration] = STATE(350), + [sym_import] = STATE(1156), + [sym_import_statement] = STATE(350), + [sym_statement] = STATE(341), + [sym_expression_statement] = STATE(350), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_statement_block] = STATE(350), + [sym_if_statement] = STATE(350), + [sym_switch_statement] = STATE(350), + [sym_for_statement] = STATE(350), + [sym_for_in_statement] = STATE(350), + [sym_while_statement] = STATE(350), + [sym_do_statement] = STATE(350), + [sym_try_statement] = STATE(350), + [sym_with_statement] = STATE(350), + [sym_break_statement] = STATE(350), + [sym_continue_statement] = STATE(350), + [sym_debugger_statement] = STATE(350), + [sym_return_statement] = STATE(350), + [sym_throw_statement] = STATE(350), + [sym_empty_statement] = STATE(350), + [sym_labeled_statement] = STATE(350), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_class_declaration] = STATE(346), + [sym_function_expression] = STATE(609), + [sym_function_declaration] = STATE(346), + [sym_generator_function] = STATE(609), + [sym_generator_function_declaration] = STATE(346), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_sequence_expression] = STATE(1527), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1088), + [sym_identifier] = ACTIONS(318), + [anon_sym_export] = ACTIONS(320), + [anon_sym_SEMI] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(322), + [anon_sym_import] = ACTIONS(19), + [anon_sym_with] = ACTIONS(324), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(326), + [anon_sym_const] = ACTIONS(27), + [anon_sym_if] = ACTIONS(328), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_for] = ACTIONS(330), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(318), + [anon_sym_set] = ACTIONS(318), + [anon_sym_async] = ACTIONS(332), + [anon_sym_static] = ACTIONS(318), + [anon_sym_while] = ACTIONS(334), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(336), + [anon_sym_function] = ACTIONS(338), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [54] = { - [ts_builtin_sym_end] = ACTIONS(480), - [sym_identifier] = ACTIONS(482), - [anon_sym_export] = ACTIONS(482), - [anon_sym_STAR] = ACTIONS(484), - [anon_sym_SEMI] = ACTIONS(480), - [anon_sym_default] = ACTIONS(482), - [anon_sym_LBRACE] = ACTIONS(480), - [anon_sym_COMMA] = ACTIONS(486), - [anon_sym_RBRACE] = ACTIONS(480), - [anon_sym_import] = ACTIONS(482), - [anon_sym_var] = ACTIONS(482), - [anon_sym_let] = ACTIONS(482), - [anon_sym_const] = ACTIONS(482), - [anon_sym_else] = ACTIONS(482), - [anon_sym_if] = ACTIONS(482), - [anon_sym_switch] = ACTIONS(482), - [anon_sym_for] = ACTIONS(482), - [anon_sym_LPAREN] = ACTIONS(480), - [anon_sym_await] = ACTIONS(482), - [anon_sym_get] = ACTIONS(482), - [anon_sym_set] = ACTIONS(482), - [anon_sym_async] = ACTIONS(482), - [anon_sym_static] = ACTIONS(482), - [anon_sym_in] = ACTIONS(484), - [anon_sym_while] = ACTIONS(482), - [anon_sym_do] = ACTIONS(482), - [anon_sym_try] = ACTIONS(482), - [anon_sym_with] = ACTIONS(482), - [anon_sym_break] = ACTIONS(482), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_debugger] = ACTIONS(482), - [anon_sym_return] = ACTIONS(482), - [anon_sym_throw] = ACTIONS(482), - [anon_sym_case] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(480), - [anon_sym_LT] = ACTIONS(482), - [anon_sym_GT] = ACTIONS(484), - [anon_sym_SLASH] = ACTIONS(482), - [anon_sym_DOT] = ACTIONS(484), - [anon_sym_class] = ACTIONS(482), - [anon_sym_function] = ACTIONS(482), - [anon_sym_QMARK_DOT] = ACTIONS(486), - [anon_sym_new] = ACTIONS(482), - [anon_sym_AMP_AMP] = ACTIONS(486), - [anon_sym_PIPE_PIPE] = ACTIONS(486), - [anon_sym_GT_GT] = ACTIONS(484), - [anon_sym_GT_GT_GT] = ACTIONS(486), - [anon_sym_LT_LT] = ACTIONS(486), - [anon_sym_AMP] = ACTIONS(484), - [anon_sym_CARET] = ACTIONS(486), - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_PLUS] = ACTIONS(482), - [anon_sym_DASH] = ACTIONS(482), - [anon_sym_PERCENT] = ACTIONS(486), - [anon_sym_STAR_STAR] = ACTIONS(486), - [anon_sym_LT_EQ] = ACTIONS(486), + [sym_export_statement] = STATE(350), + [sym_declaration] = STATE(350), + [sym_import] = STATE(1156), + [sym_import_statement] = STATE(350), + [sym_statement] = STATE(1209), + [sym_expression_statement] = STATE(350), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_statement_block] = STATE(350), + [sym_if_statement] = STATE(350), + [sym_switch_statement] = STATE(350), + [sym_for_statement] = STATE(350), + [sym_for_in_statement] = STATE(350), + [sym_while_statement] = STATE(350), + [sym_do_statement] = STATE(350), + [sym_try_statement] = STATE(350), + [sym_with_statement] = STATE(350), + [sym_break_statement] = STATE(350), + [sym_continue_statement] = STATE(350), + [sym_debugger_statement] = STATE(350), + [sym_return_statement] = STATE(350), + [sym_throw_statement] = STATE(350), + [sym_empty_statement] = STATE(350), + [sym_labeled_statement] = STATE(350), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_class_declaration] = STATE(346), + [sym_function_expression] = STATE(609), + [sym_function_declaration] = STATE(346), + [sym_generator_function] = STATE(609), + [sym_generator_function_declaration] = STATE(346), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_sequence_expression] = STATE(1527), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1088), + [sym_identifier] = ACTIONS(318), + [anon_sym_export] = ACTIONS(320), + [anon_sym_SEMI] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(322), + [anon_sym_import] = ACTIONS(19), + [anon_sym_with] = ACTIONS(324), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(326), + [anon_sym_const] = ACTIONS(27), + [anon_sym_if] = ACTIONS(328), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_for] = ACTIONS(330), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(318), + [anon_sym_set] = ACTIONS(318), + [anon_sym_async] = ACTIONS(332), + [anon_sym_static] = ACTIONS(318), + [anon_sym_while] = ACTIONS(334), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(336), + [anon_sym_function] = ACTIONS(338), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), + }, + [55] = { + [sym_export_statement] = STATE(350), + [sym_declaration] = STATE(350), + [sym_import] = STATE(1156), + [sym_import_statement] = STATE(350), + [sym_statement] = STATE(386), + [sym_expression_statement] = STATE(350), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_statement_block] = STATE(350), + [sym_if_statement] = STATE(350), + [sym_switch_statement] = STATE(350), + [sym_for_statement] = STATE(350), + [sym_for_in_statement] = STATE(350), + [sym_while_statement] = STATE(350), + [sym_do_statement] = STATE(350), + [sym_try_statement] = STATE(350), + [sym_with_statement] = STATE(350), + [sym_break_statement] = STATE(350), + [sym_continue_statement] = STATE(350), + [sym_debugger_statement] = STATE(350), + [sym_return_statement] = STATE(350), + [sym_throw_statement] = STATE(350), + [sym_empty_statement] = STATE(350), + [sym_labeled_statement] = STATE(350), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_class_declaration] = STATE(346), + [sym_function_expression] = STATE(609), + [sym_function_declaration] = STATE(346), + [sym_generator_function] = STATE(609), + [sym_generator_function_declaration] = STATE(346), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_sequence_expression] = STATE(1527), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1103), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_SEMI] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_import] = ACTIONS(19), + [anon_sym_with] = ACTIONS(21), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_if] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_for] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(9), + [anon_sym_set] = ACTIONS(9), + [anon_sym_async] = ACTIONS(39), + [anon_sym_static] = ACTIONS(9), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), + }, + [56] = { + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(537), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1637), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_STAR] = ACTIONS(342), + [anon_sym_SEMI] = ACTIONS(344), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_COMMA] = ACTIONS(344), + [anon_sym_RBRACE] = ACTIONS(344), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_RPAREN] = ACTIONS(344), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(340), + [anon_sym_set] = ACTIONS(340), + [anon_sym_async] = ACTIONS(354), + [anon_sym_static] = ACTIONS(340), + [anon_sym_in] = ACTIONS(356), + [anon_sym_COLON] = ACTIONS(344), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_RBRACK] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(356), + [anon_sym_LT] = ACTIONS(362), + [anon_sym_DOT] = ACTIONS(356), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [sym_optional_chain] = ACTIONS(344), + [anon_sym_new] = ACTIONS(372), + [anon_sym_AMP_AMP] = ACTIONS(344), + [anon_sym_PIPE_PIPE] = ACTIONS(344), + [anon_sym_GT_GT] = ACTIONS(356), + [anon_sym_GT_GT_GT] = ACTIONS(344), + [anon_sym_LT_LT] = ACTIONS(344), + [anon_sym_AMP] = ACTIONS(356), + [anon_sym_CARET] = ACTIONS(344), + [anon_sym_PIPE] = ACTIONS(356), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_PERCENT] = ACTIONS(344), + [anon_sym_STAR_STAR] = ACTIONS(344), + [anon_sym_LT_EQ] = ACTIONS(344), + [anon_sym_EQ_EQ] = ACTIONS(356), + [anon_sym_EQ_EQ_EQ] = ACTIONS(344), + [anon_sym_BANG_EQ] = ACTIONS(356), + [anon_sym_BANG_EQ_EQ] = ACTIONS(344), + [anon_sym_GT_EQ] = ACTIONS(344), + [anon_sym_QMARK_QMARK] = ACTIONS(344), + [anon_sym_instanceof] = ACTIONS(356), + [anon_sym_BANG] = ACTIONS(374), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(390), + [anon_sym_AT] = ACTIONS(91), + [sym_ternary_qmark] = ACTIONS(344), + [sym_html_comment] = ACTIONS(5), + }, + [57] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(436), + [sym_expression] = STATE(615), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_function_expression] = STATE(609), + [sym_generator_function] = STATE(609), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(436), + [sym_subscript_expression] = STATE(436), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(940), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1551), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1550), + [aux_sym_export_statement_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(392), + [anon_sym_export] = ACTIONS(392), + [anon_sym_STAR] = ACTIONS(394), + [anon_sym_SEMI] = ACTIONS(344), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_COMMA] = ACTIONS(344), + [anon_sym_import] = ACTIONS(398), + [anon_sym_let] = ACTIONS(392), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(400), + [anon_sym_get] = ACTIONS(392), + [anon_sym_set] = ACTIONS(392), + [anon_sym_async] = ACTIONS(402), + [anon_sym_static] = ACTIONS(392), + [anon_sym_in] = ACTIONS(356), + [anon_sym_of] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(404), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_GT] = ACTIONS(356), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_DOT] = ACTIONS(356), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(408), + [anon_sym_function] = ACTIONS(410), + [sym_optional_chain] = ACTIONS(344), + [anon_sym_new] = ACTIONS(412), + [anon_sym_AMP_AMP] = ACTIONS(344), + [anon_sym_PIPE_PIPE] = ACTIONS(344), + [anon_sym_GT_GT] = ACTIONS(356), + [anon_sym_GT_GT_GT] = ACTIONS(344), + [anon_sym_LT_LT] = ACTIONS(344), + [anon_sym_AMP] = ACTIONS(356), + [anon_sym_CARET] = ACTIONS(344), + [anon_sym_PIPE] = ACTIONS(356), + [anon_sym_PLUS] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(414), + [anon_sym_SLASH] = ACTIONS(416), + [anon_sym_PERCENT] = ACTIONS(344), + [anon_sym_STAR_STAR] = ACTIONS(344), + [anon_sym_LT_EQ] = ACTIONS(344), + [anon_sym_EQ_EQ] = ACTIONS(356), + [anon_sym_EQ_EQ_EQ] = ACTIONS(344), + [anon_sym_BANG_EQ] = ACTIONS(356), + [anon_sym_BANG_EQ_EQ] = ACTIONS(344), + [anon_sym_GT_EQ] = ACTIONS(344), + [anon_sym_QMARK_QMARK] = ACTIONS(344), + [anon_sym_instanceof] = ACTIONS(356), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(418), + [anon_sym_typeof] = ACTIONS(414), + [anon_sym_void] = ACTIONS(414), + [anon_sym_delete] = ACTIONS(414), + [anon_sym_PLUS_PLUS] = ACTIONS(420), + [anon_sym_DASH_DASH] = ACTIONS(420), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(422), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(424), + [anon_sym_AT] = ACTIONS(91), + [sym_automatic_semicolon] = ACTIONS(344), + [sym_ternary_qmark] = ACTIONS(344), + [sym_html_comment] = ACTIONS(5), + }, + [58] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(585), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_function_expression] = STATE(609), + [sym_generator_function] = STATE(609), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(426), + [anon_sym_export] = ACTIONS(426), + [anon_sym_STAR] = ACTIONS(428), + [anon_sym_SEMI] = ACTIONS(344), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_COMMA] = ACTIONS(344), + [anon_sym_RBRACE] = ACTIONS(344), + [anon_sym_import] = ACTIONS(398), + [anon_sym_let] = ACTIONS(426), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(426), + [anon_sym_set] = ACTIONS(426), + [anon_sym_async] = ACTIONS(430), + [anon_sym_static] = ACTIONS(426), + [anon_sym_in] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_GT] = ACTIONS(356), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_DOT] = ACTIONS(356), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(408), + [anon_sym_function] = ACTIONS(410), + [sym_optional_chain] = ACTIONS(344), + [anon_sym_new] = ACTIONS(71), + [anon_sym_AMP_AMP] = ACTIONS(344), + [anon_sym_PIPE_PIPE] = ACTIONS(344), + [anon_sym_GT_GT] = ACTIONS(356), + [anon_sym_GT_GT_GT] = ACTIONS(344), + [anon_sym_LT_LT] = ACTIONS(344), + [anon_sym_AMP] = ACTIONS(356), + [anon_sym_CARET] = ACTIONS(344), + [anon_sym_PIPE] = ACTIONS(356), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(344), + [anon_sym_STAR_STAR] = ACTIONS(344), + [anon_sym_LT_EQ] = ACTIONS(344), + [anon_sym_EQ_EQ] = ACTIONS(356), + [anon_sym_EQ_EQ_EQ] = ACTIONS(344), + [anon_sym_BANG_EQ] = ACTIONS(356), + [anon_sym_BANG_EQ_EQ] = ACTIONS(344), + [anon_sym_GT_EQ] = ACTIONS(344), + [anon_sym_QMARK_QMARK] = ACTIONS(344), + [anon_sym_instanceof] = ACTIONS(356), + [anon_sym_BANG] = ACTIONS(73), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_automatic_semicolon] = ACTIONS(344), + [sym_ternary_qmark] = ACTIONS(344), + [sym_html_comment] = ACTIONS(5), + }, + [59] = { + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(748), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(935), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1641), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1625), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(432), + [anon_sym_export] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(434), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(432), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(438), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), + [anon_sym_async] = ACTIONS(440), + [anon_sym_static] = ACTIONS(432), + [anon_sym_in] = ACTIONS(356), + [anon_sym_of] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(442), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_GT] = ACTIONS(356), + [anon_sym_LT] = ACTIONS(362), + [anon_sym_DOT] = ACTIONS(356), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [sym_optional_chain] = ACTIONS(344), + [anon_sym_new] = ACTIONS(446), + [anon_sym_AMP_AMP] = ACTIONS(344), + [anon_sym_PIPE_PIPE] = ACTIONS(344), + [anon_sym_GT_GT] = ACTIONS(356), + [anon_sym_GT_GT_GT] = ACTIONS(344), + [anon_sym_LT_LT] = ACTIONS(344), + [anon_sym_AMP] = ACTIONS(356), + [anon_sym_CARET] = ACTIONS(344), + [anon_sym_PIPE] = ACTIONS(356), + [anon_sym_PLUS] = ACTIONS(448), + [anon_sym_DASH] = ACTIONS(448), + [anon_sym_SLASH] = ACTIONS(450), + [anon_sym_PERCENT] = ACTIONS(344), + [anon_sym_STAR_STAR] = ACTIONS(344), + [anon_sym_LT_EQ] = ACTIONS(344), + [anon_sym_EQ_EQ] = ACTIONS(356), + [anon_sym_EQ_EQ_EQ] = ACTIONS(344), + [anon_sym_BANG_EQ] = ACTIONS(356), + [anon_sym_BANG_EQ_EQ] = ACTIONS(344), + [anon_sym_GT_EQ] = ACTIONS(344), + [anon_sym_QMARK_QMARK] = ACTIONS(344), + [anon_sym_instanceof] = ACTIONS(356), + [anon_sym_BANG] = ACTIONS(448), + [anon_sym_TILDE] = ACTIONS(452), + [anon_sym_typeof] = ACTIONS(448), + [anon_sym_void] = ACTIONS(448), + [anon_sym_delete] = ACTIONS(448), + [anon_sym_PLUS_PLUS] = ACTIONS(454), + [anon_sym_DASH_DASH] = ACTIONS(454), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(456), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(458), + [anon_sym_AT] = ACTIONS(91), + [sym_ternary_qmark] = ACTIONS(344), + [sym_html_comment] = ACTIONS(5), + }, + [60] = { + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(403), + [sym_expression] = STATE(704), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(403), + [sym_subscript_expression] = STATE(403), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(939), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1572), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1635), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(460), + [anon_sym_export] = ACTIONS(460), + [anon_sym_STAR] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(464), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), + [anon_sym_async] = ACTIONS(466), + [anon_sym_static] = ACTIONS(460), + [anon_sym_in] = ACTIONS(356), + [anon_sym_COLON] = ACTIONS(344), + [anon_sym_yield] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_GT] = ACTIONS(356), + [anon_sym_LT] = ACTIONS(362), + [anon_sym_DOT] = ACTIONS(356), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [sym_optional_chain] = ACTIONS(344), + [anon_sym_new] = ACTIONS(470), + [anon_sym_AMP_AMP] = ACTIONS(344), + [anon_sym_PIPE_PIPE] = ACTIONS(344), + [anon_sym_GT_GT] = ACTIONS(356), + [anon_sym_GT_GT_GT] = ACTIONS(344), + [anon_sym_LT_LT] = ACTIONS(344), + [anon_sym_AMP] = ACTIONS(356), + [anon_sym_CARET] = ACTIONS(344), + [anon_sym_PIPE] = ACTIONS(356), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_PERCENT] = ACTIONS(344), + [anon_sym_STAR_STAR] = ACTIONS(344), + [anon_sym_LT_EQ] = ACTIONS(344), + [anon_sym_EQ_EQ] = ACTIONS(356), + [anon_sym_EQ_EQ_EQ] = ACTIONS(344), + [anon_sym_BANG_EQ] = ACTIONS(356), + [anon_sym_BANG_EQ_EQ] = ACTIONS(344), + [anon_sym_GT_EQ] = ACTIONS(344), + [anon_sym_QMARK_QMARK] = ACTIONS(344), + [anon_sym_instanceof] = ACTIONS(356), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(91), + [sym_ternary_qmark] = ACTIONS(344), + [sym_html_comment] = ACTIONS(5), + }, + [61] = { + [ts_builtin_sym_end] = ACTIONS(482), + [sym_identifier] = ACTIONS(484), + [anon_sym_export] = ACTIONS(484), + [anon_sym_STAR] = ACTIONS(484), + [anon_sym_SEMI] = ACTIONS(482), + [anon_sym_default] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(482), + [anon_sym_COMMA] = ACTIONS(482), + [anon_sym_RBRACE] = ACTIONS(482), + [anon_sym_import] = ACTIONS(484), + [anon_sym_with] = ACTIONS(484), + [anon_sym_var] = ACTIONS(484), + [anon_sym_let] = ACTIONS(484), + [anon_sym_const] = ACTIONS(484), + [anon_sym_else] = ACTIONS(484), + [anon_sym_if] = ACTIONS(484), + [anon_sym_switch] = ACTIONS(484), + [anon_sym_for] = ACTIONS(484), + [anon_sym_LPAREN] = ACTIONS(482), + [anon_sym_await] = ACTIONS(484), + [anon_sym_get] = ACTIONS(484), + [anon_sym_set] = ACTIONS(484), + [anon_sym_async] = ACTIONS(484), + [anon_sym_static] = ACTIONS(484), + [anon_sym_in] = ACTIONS(484), + [anon_sym_of] = ACTIONS(484), + [anon_sym_while] = ACTIONS(484), + [anon_sym_do] = ACTIONS(484), + [anon_sym_try] = ACTIONS(484), + [anon_sym_break] = ACTIONS(484), + [anon_sym_continue] = ACTIONS(484), + [anon_sym_debugger] = ACTIONS(484), + [anon_sym_return] = ACTIONS(484), + [anon_sym_throw] = ACTIONS(484), + [anon_sym_case] = ACTIONS(484), + [anon_sym_yield] = ACTIONS(484), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_GT] = ACTIONS(484), + [anon_sym_LT] = ACTIONS(484), + [anon_sym_DOT] = ACTIONS(484), + [anon_sym_DQUOTE] = ACTIONS(482), + [anon_sym_SQUOTE] = ACTIONS(482), + [anon_sym_class] = ACTIONS(484), + [anon_sym_function] = ACTIONS(484), + [sym_optional_chain] = ACTIONS(482), + [anon_sym_new] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(482), + [anon_sym_PIPE_PIPE] = ACTIONS(482), + [anon_sym_GT_GT] = ACTIONS(484), + [anon_sym_GT_GT_GT] = ACTIONS(482), + [anon_sym_LT_LT] = ACTIONS(482), + [anon_sym_AMP] = ACTIONS(484), + [anon_sym_CARET] = ACTIONS(482), + [anon_sym_PIPE] = ACTIONS(484), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_SLASH] = ACTIONS(484), + [anon_sym_PERCENT] = ACTIONS(482), + [anon_sym_STAR_STAR] = ACTIONS(482), + [anon_sym_LT_EQ] = ACTIONS(482), [anon_sym_EQ_EQ] = ACTIONS(484), - [anon_sym_EQ_EQ_EQ] = ACTIONS(486), + [anon_sym_EQ_EQ_EQ] = ACTIONS(482), [anon_sym_BANG_EQ] = ACTIONS(484), + [anon_sym_BANG_EQ_EQ] = ACTIONS(482), + [anon_sym_GT_EQ] = ACTIONS(482), + [anon_sym_QMARK_QMARK] = ACTIONS(482), + [anon_sym_instanceof] = ACTIONS(484), + [anon_sym_BANG] = ACTIONS(484), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_typeof] = ACTIONS(484), + [anon_sym_void] = ACTIONS(484), + [anon_sym_delete] = ACTIONS(484), + [anon_sym_PLUS_PLUS] = ACTIONS(482), + [anon_sym_DASH_DASH] = ACTIONS(482), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(482), + [sym_number] = ACTIONS(482), + [sym_private_property_identifier] = ACTIONS(482), + [sym_this] = ACTIONS(484), + [sym_super] = ACTIONS(484), + [sym_true] = ACTIONS(484), + [sym_false] = ACTIONS(484), + [sym_null] = ACTIONS(484), + [sym_undefined] = ACTIONS(484), + [anon_sym_AT] = ACTIONS(482), + [sym_automatic_semicolon] = ACTIONS(482), + [sym_ternary_qmark] = ACTIONS(482), + [sym_html_comment] = ACTIONS(5), + }, + [62] = { + [ts_builtin_sym_end] = ACTIONS(486), + [sym_identifier] = ACTIONS(488), + [anon_sym_export] = ACTIONS(488), + [anon_sym_STAR] = ACTIONS(488), + [anon_sym_SEMI] = ACTIONS(486), + [anon_sym_default] = ACTIONS(488), + [anon_sym_LBRACE] = ACTIONS(486), + [anon_sym_COMMA] = ACTIONS(486), + [anon_sym_RBRACE] = ACTIONS(486), + [anon_sym_import] = ACTIONS(488), + [anon_sym_with] = ACTIONS(488), + [anon_sym_var] = ACTIONS(488), + [anon_sym_let] = ACTIONS(488), + [anon_sym_const] = ACTIONS(488), + [anon_sym_else] = ACTIONS(488), + [anon_sym_if] = ACTIONS(488), + [anon_sym_switch] = ACTIONS(488), + [anon_sym_for] = ACTIONS(488), + [anon_sym_LPAREN] = ACTIONS(486), + [anon_sym_await] = ACTIONS(488), + [anon_sym_get] = ACTIONS(488), + [anon_sym_set] = ACTIONS(488), + [anon_sym_async] = ACTIONS(488), + [anon_sym_static] = ACTIONS(488), + [anon_sym_in] = ACTIONS(488), + [anon_sym_of] = ACTIONS(488), + [anon_sym_while] = ACTIONS(488), + [anon_sym_do] = ACTIONS(488), + [anon_sym_try] = ACTIONS(488), + [anon_sym_break] = ACTIONS(488), + [anon_sym_continue] = ACTIONS(488), + [anon_sym_debugger] = ACTIONS(488), + [anon_sym_return] = ACTIONS(488), + [anon_sym_throw] = ACTIONS(488), + [anon_sym_case] = ACTIONS(488), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(486), + [anon_sym_GT] = ACTIONS(488), + [anon_sym_LT] = ACTIONS(488), + [anon_sym_DOT] = ACTIONS(488), + [anon_sym_DQUOTE] = ACTIONS(486), + [anon_sym_SQUOTE] = ACTIONS(486), + [anon_sym_class] = ACTIONS(488), + [anon_sym_function] = ACTIONS(488), + [sym_optional_chain] = ACTIONS(486), + [anon_sym_new] = ACTIONS(488), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(486), + [anon_sym_GT_GT] = ACTIONS(488), + [anon_sym_GT_GT_GT] = ACTIONS(486), + [anon_sym_LT_LT] = ACTIONS(486), + [anon_sym_AMP] = ACTIONS(488), + [anon_sym_CARET] = ACTIONS(486), + [anon_sym_PIPE] = ACTIONS(488), + [anon_sym_PLUS] = ACTIONS(488), + [anon_sym_DASH] = ACTIONS(488), + [anon_sym_SLASH] = ACTIONS(488), + [anon_sym_PERCENT] = ACTIONS(486), + [anon_sym_STAR_STAR] = ACTIONS(486), + [anon_sym_LT_EQ] = ACTIONS(486), + [anon_sym_EQ_EQ] = ACTIONS(488), + [anon_sym_EQ_EQ_EQ] = ACTIONS(486), + [anon_sym_BANG_EQ] = ACTIONS(488), [anon_sym_BANG_EQ_EQ] = ACTIONS(486), [anon_sym_GT_EQ] = ACTIONS(486), [anon_sym_QMARK_QMARK] = ACTIONS(486), - [anon_sym_instanceof] = ACTIONS(484), - [anon_sym_BANG] = ACTIONS(482), - [anon_sym_TILDE] = ACTIONS(480), - [anon_sym_typeof] = ACTIONS(482), - [anon_sym_void] = ACTIONS(482), - [anon_sym_delete] = ACTIONS(482), - [anon_sym_PLUS_PLUS] = ACTIONS(480), - [anon_sym_DASH_DASH] = ACTIONS(480), - [anon_sym_DQUOTE] = ACTIONS(480), - [anon_sym_SQUOTE] = ACTIONS(480), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(480), - [sym_number] = ACTIONS(480), - [sym_this] = ACTIONS(482), - [sym_super] = ACTIONS(482), - [sym_true] = ACTIONS(482), - [sym_false] = ACTIONS(482), - [sym_null] = ACTIONS(482), - [sym_undefined] = ACTIONS(482), - [anon_sym_AT] = ACTIONS(480), - [sym_automatic_semicolon] = ACTIONS(488), + [anon_sym_instanceof] = ACTIONS(488), + [anon_sym_BANG] = ACTIONS(488), + [anon_sym_TILDE] = ACTIONS(486), + [anon_sym_typeof] = ACTIONS(488), + [anon_sym_void] = ACTIONS(488), + [anon_sym_delete] = ACTIONS(488), + [anon_sym_PLUS_PLUS] = ACTIONS(486), + [anon_sym_DASH_DASH] = ACTIONS(486), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(486), + [sym_number] = ACTIONS(486), + [sym_private_property_identifier] = ACTIONS(486), + [sym_this] = ACTIONS(488), + [sym_super] = ACTIONS(488), + [sym_true] = ACTIONS(488), + [sym_false] = ACTIONS(488), + [sym_null] = ACTIONS(488), + [sym_undefined] = ACTIONS(488), + [anon_sym_AT] = ACTIONS(486), + [sym_automatic_semicolon] = ACTIONS(486), [sym_ternary_qmark] = ACTIONS(486), + [sym_html_comment] = ACTIONS(5), }, - [55] = { + [63] = { [ts_builtin_sym_end] = ACTIONS(490), [sym_identifier] = ACTIONS(492), [anon_sym_export] = ACTIONS(492), - [anon_sym_STAR] = ACTIONS(494), + [anon_sym_STAR] = ACTIONS(492), [anon_sym_SEMI] = ACTIONS(490), [anon_sym_default] = ACTIONS(492), [anon_sym_LBRACE] = ACTIONS(490), - [anon_sym_COMMA] = ACTIONS(496), + [anon_sym_COMMA] = ACTIONS(490), [anon_sym_RBRACE] = ACTIONS(490), [anon_sym_import] = ACTIONS(492), + [anon_sym_with] = ACTIONS(492), [anon_sym_var] = ACTIONS(492), [anon_sym_let] = ACTIONS(492), [anon_sym_const] = ACTIONS(492), @@ -11987,11 +15700,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(492), [anon_sym_async] = ACTIONS(492), [anon_sym_static] = ACTIONS(492), - [anon_sym_in] = ACTIONS(494), + [anon_sym_in] = ACTIONS(492), + [anon_sym_of] = ACTIONS(492), [anon_sym_while] = ACTIONS(492), [anon_sym_do] = ACTIONS(492), [anon_sym_try] = ACTIONS(492), - [anon_sym_with] = ACTIONS(492), [anon_sym_break] = ACTIONS(492), [anon_sym_continue] = ACTIONS(492), [anon_sym_debugger] = ACTIONS(492), @@ -12000,34 +15713,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(492), [anon_sym_yield] = ACTIONS(492), [anon_sym_LBRACK] = ACTIONS(490), + [anon_sym_GT] = ACTIONS(492), [anon_sym_LT] = ACTIONS(492), - [anon_sym_GT] = ACTIONS(494), - [anon_sym_SLASH] = ACTIONS(492), - [anon_sym_DOT] = ACTIONS(494), + [anon_sym_DOT] = ACTIONS(492), + [anon_sym_DQUOTE] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(490), [anon_sym_class] = ACTIONS(492), [anon_sym_function] = ACTIONS(492), - [anon_sym_QMARK_DOT] = ACTIONS(496), + [sym_optional_chain] = ACTIONS(490), [anon_sym_new] = ACTIONS(492), - [anon_sym_AMP_AMP] = ACTIONS(496), - [anon_sym_PIPE_PIPE] = ACTIONS(496), - [anon_sym_GT_GT] = ACTIONS(494), - [anon_sym_GT_GT_GT] = ACTIONS(496), - [anon_sym_LT_LT] = ACTIONS(496), - [anon_sym_AMP] = ACTIONS(494), - [anon_sym_CARET] = ACTIONS(496), - [anon_sym_PIPE] = ACTIONS(494), + [anon_sym_AMP_AMP] = ACTIONS(490), + [anon_sym_PIPE_PIPE] = ACTIONS(490), + [anon_sym_GT_GT] = ACTIONS(492), + [anon_sym_GT_GT_GT] = ACTIONS(490), + [anon_sym_LT_LT] = ACTIONS(490), + [anon_sym_AMP] = ACTIONS(492), + [anon_sym_CARET] = ACTIONS(490), + [anon_sym_PIPE] = ACTIONS(492), [anon_sym_PLUS] = ACTIONS(492), [anon_sym_DASH] = ACTIONS(492), - [anon_sym_PERCENT] = ACTIONS(496), - [anon_sym_STAR_STAR] = ACTIONS(496), - [anon_sym_LT_EQ] = ACTIONS(496), - [anon_sym_EQ_EQ] = ACTIONS(494), - [anon_sym_EQ_EQ_EQ] = ACTIONS(496), - [anon_sym_BANG_EQ] = ACTIONS(494), - [anon_sym_BANG_EQ_EQ] = ACTIONS(496), - [anon_sym_GT_EQ] = ACTIONS(496), - [anon_sym_QMARK_QMARK] = ACTIONS(496), - [anon_sym_instanceof] = ACTIONS(494), + [anon_sym_SLASH] = ACTIONS(492), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_STAR_STAR] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_EQ_EQ_EQ] = ACTIONS(490), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_BANG_EQ_EQ] = ACTIONS(490), + [anon_sym_GT_EQ] = ACTIONS(490), + [anon_sym_QMARK_QMARK] = ACTIONS(490), + [anon_sym_instanceof] = ACTIONS(492), [anon_sym_BANG] = ACTIONS(492), [anon_sym_TILDE] = ACTIONS(490), [anon_sym_typeof] = ACTIONS(492), @@ -12035,11 +15750,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(492), [anon_sym_PLUS_PLUS] = ACTIONS(490), [anon_sym_DASH_DASH] = ACTIONS(490), - [anon_sym_DQUOTE] = ACTIONS(490), - [anon_sym_SQUOTE] = ACTIONS(490), - [sym_comment] = ACTIONS(3), + [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(490), [sym_number] = ACTIONS(490), + [sym_private_property_identifier] = ACTIONS(490), [sym_this] = ACTIONS(492), [sym_super] = ACTIONS(492), [sym_true] = ACTIONS(492), @@ -12047,16813 +15761,19253 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(492), [sym_undefined] = ACTIONS(492), [anon_sym_AT] = ACTIONS(490), - [sym_automatic_semicolon] = ACTIONS(498), + [sym_automatic_semicolon] = ACTIONS(494), + [sym_ternary_qmark] = ACTIONS(490), + [sym_html_comment] = ACTIONS(5), + }, + [64] = { + [ts_builtin_sym_end] = ACTIONS(496), + [sym_identifier] = ACTIONS(498), + [anon_sym_export] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(498), + [anon_sym_SEMI] = ACTIONS(496), + [anon_sym_default] = ACTIONS(498), + [anon_sym_LBRACE] = ACTIONS(496), + [anon_sym_COMMA] = ACTIONS(496), + [anon_sym_RBRACE] = ACTIONS(496), + [anon_sym_import] = ACTIONS(498), + [anon_sym_with] = ACTIONS(498), + [anon_sym_var] = ACTIONS(498), + [anon_sym_let] = ACTIONS(498), + [anon_sym_const] = ACTIONS(498), + [anon_sym_else] = ACTIONS(498), + [anon_sym_if] = ACTIONS(498), + [anon_sym_switch] = ACTIONS(498), + [anon_sym_for] = ACTIONS(498), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_await] = ACTIONS(498), + [anon_sym_get] = ACTIONS(498), + [anon_sym_set] = ACTIONS(498), + [anon_sym_async] = ACTIONS(498), + [anon_sym_static] = ACTIONS(498), + [anon_sym_in] = ACTIONS(498), + [anon_sym_of] = ACTIONS(498), + [anon_sym_while] = ACTIONS(498), + [anon_sym_do] = ACTIONS(498), + [anon_sym_try] = ACTIONS(498), + [anon_sym_break] = ACTIONS(498), + [anon_sym_continue] = ACTIONS(498), + [anon_sym_debugger] = ACTIONS(498), + [anon_sym_return] = ACTIONS(498), + [anon_sym_throw] = ACTIONS(498), + [anon_sym_case] = ACTIONS(498), + [anon_sym_yield] = ACTIONS(498), + [anon_sym_LBRACK] = ACTIONS(496), + [anon_sym_GT] = ACTIONS(498), + [anon_sym_LT] = ACTIONS(498), + [anon_sym_DOT] = ACTIONS(498), + [anon_sym_DQUOTE] = ACTIONS(496), + [anon_sym_SQUOTE] = ACTIONS(496), + [anon_sym_class] = ACTIONS(498), + [anon_sym_function] = ACTIONS(498), + [sym_optional_chain] = ACTIONS(496), + [anon_sym_new] = ACTIONS(498), + [anon_sym_AMP_AMP] = ACTIONS(496), + [anon_sym_PIPE_PIPE] = ACTIONS(496), + [anon_sym_GT_GT] = ACTIONS(498), + [anon_sym_GT_GT_GT] = ACTIONS(496), + [anon_sym_LT_LT] = ACTIONS(496), + [anon_sym_AMP] = ACTIONS(498), + [anon_sym_CARET] = ACTIONS(496), + [anon_sym_PIPE] = ACTIONS(498), + [anon_sym_PLUS] = ACTIONS(498), + [anon_sym_DASH] = ACTIONS(498), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_PERCENT] = ACTIONS(496), + [anon_sym_STAR_STAR] = ACTIONS(496), + [anon_sym_LT_EQ] = ACTIONS(496), + [anon_sym_EQ_EQ] = ACTIONS(498), + [anon_sym_EQ_EQ_EQ] = ACTIONS(496), + [anon_sym_BANG_EQ] = ACTIONS(498), + [anon_sym_BANG_EQ_EQ] = ACTIONS(496), + [anon_sym_GT_EQ] = ACTIONS(496), + [anon_sym_QMARK_QMARK] = ACTIONS(496), + [anon_sym_instanceof] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(498), + [anon_sym_TILDE] = ACTIONS(496), + [anon_sym_typeof] = ACTIONS(498), + [anon_sym_void] = ACTIONS(498), + [anon_sym_delete] = ACTIONS(498), + [anon_sym_PLUS_PLUS] = ACTIONS(496), + [anon_sym_DASH_DASH] = ACTIONS(496), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(496), + [sym_number] = ACTIONS(496), + [sym_private_property_identifier] = ACTIONS(496), + [sym_this] = ACTIONS(498), + [sym_super] = ACTIONS(498), + [sym_true] = ACTIONS(498), + [sym_false] = ACTIONS(498), + [sym_null] = ACTIONS(498), + [sym_undefined] = ACTIONS(498), + [anon_sym_AT] = ACTIONS(496), + [sym_automatic_semicolon] = ACTIONS(500), [sym_ternary_qmark] = ACTIONS(496), + [sym_html_comment] = ACTIONS(5), }, - [56] = { - [ts_builtin_sym_end] = ACTIONS(500), - [sym_identifier] = ACTIONS(502), - [anon_sym_export] = ACTIONS(502), + [65] = { + [ts_builtin_sym_end] = ACTIONS(496), + [sym_identifier] = ACTIONS(498), + [anon_sym_export] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(498), + [anon_sym_SEMI] = ACTIONS(496), + [anon_sym_default] = ACTIONS(498), + [anon_sym_LBRACE] = ACTIONS(496), + [anon_sym_COMMA] = ACTIONS(496), + [anon_sym_RBRACE] = ACTIONS(496), + [anon_sym_import] = ACTIONS(498), + [anon_sym_with] = ACTIONS(498), + [anon_sym_var] = ACTIONS(498), + [anon_sym_let] = ACTIONS(498), + [anon_sym_const] = ACTIONS(498), + [anon_sym_else] = ACTIONS(498), + [anon_sym_if] = ACTIONS(498), + [anon_sym_switch] = ACTIONS(498), + [anon_sym_for] = ACTIONS(498), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_await] = ACTIONS(498), + [anon_sym_get] = ACTIONS(498), + [anon_sym_set] = ACTIONS(498), + [anon_sym_async] = ACTIONS(498), + [anon_sym_static] = ACTIONS(498), + [anon_sym_in] = ACTIONS(498), + [anon_sym_of] = ACTIONS(498), + [anon_sym_while] = ACTIONS(498), + [anon_sym_do] = ACTIONS(498), + [anon_sym_try] = ACTIONS(498), + [anon_sym_break] = ACTIONS(498), + [anon_sym_continue] = ACTIONS(498), + [anon_sym_debugger] = ACTIONS(498), + [anon_sym_return] = ACTIONS(498), + [anon_sym_throw] = ACTIONS(498), + [anon_sym_case] = ACTIONS(498), + [anon_sym_yield] = ACTIONS(498), + [anon_sym_LBRACK] = ACTIONS(496), + [anon_sym_GT] = ACTIONS(498), + [anon_sym_LT] = ACTIONS(498), + [anon_sym_DOT] = ACTIONS(498), + [anon_sym_DQUOTE] = ACTIONS(496), + [anon_sym_SQUOTE] = ACTIONS(496), + [anon_sym_class] = ACTIONS(498), + [anon_sym_function] = ACTIONS(498), + [sym_optional_chain] = ACTIONS(496), + [anon_sym_new] = ACTIONS(498), + [anon_sym_AMP_AMP] = ACTIONS(496), + [anon_sym_PIPE_PIPE] = ACTIONS(496), + [anon_sym_GT_GT] = ACTIONS(498), + [anon_sym_GT_GT_GT] = ACTIONS(496), + [anon_sym_LT_LT] = ACTIONS(496), + [anon_sym_AMP] = ACTIONS(498), + [anon_sym_CARET] = ACTIONS(496), + [anon_sym_PIPE] = ACTIONS(498), + [anon_sym_PLUS] = ACTIONS(498), + [anon_sym_DASH] = ACTIONS(498), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_PERCENT] = ACTIONS(496), + [anon_sym_STAR_STAR] = ACTIONS(496), + [anon_sym_LT_EQ] = ACTIONS(496), + [anon_sym_EQ_EQ] = ACTIONS(498), + [anon_sym_EQ_EQ_EQ] = ACTIONS(496), + [anon_sym_BANG_EQ] = ACTIONS(498), + [anon_sym_BANG_EQ_EQ] = ACTIONS(496), + [anon_sym_GT_EQ] = ACTIONS(496), + [anon_sym_QMARK_QMARK] = ACTIONS(496), + [anon_sym_instanceof] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(498), + [anon_sym_TILDE] = ACTIONS(496), + [anon_sym_typeof] = ACTIONS(498), + [anon_sym_void] = ACTIONS(498), + [anon_sym_delete] = ACTIONS(498), + [anon_sym_PLUS_PLUS] = ACTIONS(496), + [anon_sym_DASH_DASH] = ACTIONS(496), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(496), + [sym_number] = ACTIONS(496), + [sym_private_property_identifier] = ACTIONS(496), + [sym_this] = ACTIONS(498), + [sym_super] = ACTIONS(498), + [sym_true] = ACTIONS(498), + [sym_false] = ACTIONS(498), + [sym_null] = ACTIONS(498), + [sym_undefined] = ACTIONS(498), + [anon_sym_AT] = ACTIONS(496), + [sym_automatic_semicolon] = ACTIONS(496), + [sym_ternary_qmark] = ACTIONS(496), + [sym_html_comment] = ACTIONS(5), + }, + [66] = { + [ts_builtin_sym_end] = ACTIONS(502), + [sym_identifier] = ACTIONS(504), + [anon_sym_export] = ACTIONS(504), [anon_sym_STAR] = ACTIONS(504), - [anon_sym_SEMI] = ACTIONS(500), - [anon_sym_default] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(500), - [anon_sym_COMMA] = ACTIONS(506), - [anon_sym_RBRACE] = ACTIONS(500), - [anon_sym_import] = ACTIONS(502), - [anon_sym_var] = ACTIONS(502), - [anon_sym_let] = ACTIONS(502), - [anon_sym_const] = ACTIONS(502), - [anon_sym_else] = ACTIONS(502), - [anon_sym_if] = ACTIONS(502), - [anon_sym_switch] = ACTIONS(502), - [anon_sym_for] = ACTIONS(502), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_await] = ACTIONS(502), - [anon_sym_get] = ACTIONS(502), - [anon_sym_set] = ACTIONS(502), - [anon_sym_async] = ACTIONS(502), - [anon_sym_static] = ACTIONS(502), + [anon_sym_SEMI] = ACTIONS(502), + [anon_sym_default] = ACTIONS(504), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_COMMA] = ACTIONS(502), + [anon_sym_RBRACE] = ACTIONS(502), + [anon_sym_import] = ACTIONS(504), + [anon_sym_with] = ACTIONS(504), + [anon_sym_var] = ACTIONS(504), + [anon_sym_let] = ACTIONS(504), + [anon_sym_const] = ACTIONS(504), + [anon_sym_else] = ACTIONS(504), + [anon_sym_if] = ACTIONS(504), + [anon_sym_switch] = ACTIONS(504), + [anon_sym_for] = ACTIONS(504), + [anon_sym_LPAREN] = ACTIONS(502), + [anon_sym_await] = ACTIONS(504), + [anon_sym_get] = ACTIONS(504), + [anon_sym_set] = ACTIONS(504), + [anon_sym_async] = ACTIONS(504), + [anon_sym_static] = ACTIONS(504), [anon_sym_in] = ACTIONS(504), - [anon_sym_while] = ACTIONS(502), - [anon_sym_do] = ACTIONS(502), - [anon_sym_try] = ACTIONS(502), - [anon_sym_with] = ACTIONS(502), - [anon_sym_break] = ACTIONS(502), - [anon_sym_continue] = ACTIONS(502), - [anon_sym_debugger] = ACTIONS(502), - [anon_sym_return] = ACTIONS(502), - [anon_sym_throw] = ACTIONS(502), - [anon_sym_case] = ACTIONS(502), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_LBRACK] = ACTIONS(500), - [anon_sym_LT] = ACTIONS(502), + [anon_sym_of] = ACTIONS(504), + [anon_sym_while] = ACTIONS(504), + [anon_sym_do] = ACTIONS(504), + [anon_sym_try] = ACTIONS(504), + [anon_sym_break] = ACTIONS(504), + [anon_sym_continue] = ACTIONS(504), + [anon_sym_debugger] = ACTIONS(504), + [anon_sym_return] = ACTIONS(504), + [anon_sym_throw] = ACTIONS(504), + [anon_sym_case] = ACTIONS(504), + [anon_sym_yield] = ACTIONS(504), + [anon_sym_LBRACK] = ACTIONS(502), [anon_sym_GT] = ACTIONS(504), - [anon_sym_SLASH] = ACTIONS(502), + [anon_sym_LT] = ACTIONS(504), [anon_sym_DOT] = ACTIONS(504), - [anon_sym_class] = ACTIONS(502), - [anon_sym_function] = ACTIONS(502), - [anon_sym_QMARK_DOT] = ACTIONS(506), - [anon_sym_new] = ACTIONS(502), - [anon_sym_AMP_AMP] = ACTIONS(506), - [anon_sym_PIPE_PIPE] = ACTIONS(506), + [anon_sym_DQUOTE] = ACTIONS(502), + [anon_sym_SQUOTE] = ACTIONS(502), + [anon_sym_class] = ACTIONS(504), + [anon_sym_function] = ACTIONS(504), + [sym_optional_chain] = ACTIONS(502), + [anon_sym_new] = ACTIONS(504), + [anon_sym_AMP_AMP] = ACTIONS(502), + [anon_sym_PIPE_PIPE] = ACTIONS(502), [anon_sym_GT_GT] = ACTIONS(504), - [anon_sym_GT_GT_GT] = ACTIONS(506), - [anon_sym_LT_LT] = ACTIONS(506), + [anon_sym_GT_GT_GT] = ACTIONS(502), + [anon_sym_LT_LT] = ACTIONS(502), [anon_sym_AMP] = ACTIONS(504), - [anon_sym_CARET] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(502), [anon_sym_PIPE] = ACTIONS(504), - [anon_sym_PLUS] = ACTIONS(502), - [anon_sym_DASH] = ACTIONS(502), - [anon_sym_PERCENT] = ACTIONS(506), - [anon_sym_STAR_STAR] = ACTIONS(506), - [anon_sym_LT_EQ] = ACTIONS(506), + [anon_sym_PLUS] = ACTIONS(504), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_SLASH] = ACTIONS(504), + [anon_sym_PERCENT] = ACTIONS(502), + [anon_sym_STAR_STAR] = ACTIONS(502), + [anon_sym_LT_EQ] = ACTIONS(502), [anon_sym_EQ_EQ] = ACTIONS(504), - [anon_sym_EQ_EQ_EQ] = ACTIONS(506), + [anon_sym_EQ_EQ_EQ] = ACTIONS(502), [anon_sym_BANG_EQ] = ACTIONS(504), - [anon_sym_BANG_EQ_EQ] = ACTIONS(506), - [anon_sym_GT_EQ] = ACTIONS(506), - [anon_sym_QMARK_QMARK] = ACTIONS(506), + [anon_sym_BANG_EQ_EQ] = ACTIONS(502), + [anon_sym_GT_EQ] = ACTIONS(502), + [anon_sym_QMARK_QMARK] = ACTIONS(502), [anon_sym_instanceof] = ACTIONS(504), - [anon_sym_BANG] = ACTIONS(502), - [anon_sym_TILDE] = ACTIONS(500), - [anon_sym_typeof] = ACTIONS(502), - [anon_sym_void] = ACTIONS(502), - [anon_sym_delete] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(500), - [anon_sym_DASH_DASH] = ACTIONS(500), - [anon_sym_DQUOTE] = ACTIONS(500), - [anon_sym_SQUOTE] = ACTIONS(500), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(500), - [sym_number] = ACTIONS(500), - [sym_this] = ACTIONS(502), - [sym_super] = ACTIONS(502), - [sym_true] = ACTIONS(502), - [sym_false] = ACTIONS(502), - [sym_null] = ACTIONS(502), - [sym_undefined] = ACTIONS(502), - [anon_sym_AT] = ACTIONS(500), - [sym_automatic_semicolon] = ACTIONS(508), - [sym_ternary_qmark] = ACTIONS(506), - }, - [57] = { - [ts_builtin_sym_end] = ACTIONS(510), - [sym_identifier] = ACTIONS(512), - [anon_sym_export] = ACTIONS(512), - [anon_sym_STAR] = ACTIONS(514), - [anon_sym_SEMI] = ACTIONS(510), - [anon_sym_default] = ACTIONS(512), - [anon_sym_LBRACE] = ACTIONS(510), - [anon_sym_COMMA] = ACTIONS(516), - [anon_sym_RBRACE] = ACTIONS(510), - [anon_sym_import] = ACTIONS(512), - [anon_sym_var] = ACTIONS(512), - [anon_sym_let] = ACTIONS(512), - [anon_sym_const] = ACTIONS(512), - [anon_sym_else] = ACTIONS(512), - [anon_sym_if] = ACTIONS(512), - [anon_sym_switch] = ACTIONS(512), - [anon_sym_for] = ACTIONS(512), - [anon_sym_LPAREN] = ACTIONS(510), - [anon_sym_await] = ACTIONS(512), - [anon_sym_get] = ACTIONS(512), - [anon_sym_set] = ACTIONS(512), - [anon_sym_async] = ACTIONS(512), - [anon_sym_static] = ACTIONS(512), - [anon_sym_in] = ACTIONS(514), - [anon_sym_while] = ACTIONS(512), - [anon_sym_do] = ACTIONS(512), - [anon_sym_try] = ACTIONS(512), - [anon_sym_with] = ACTIONS(512), - [anon_sym_break] = ACTIONS(512), - [anon_sym_continue] = ACTIONS(512), - [anon_sym_debugger] = ACTIONS(512), - [anon_sym_return] = ACTIONS(512), - [anon_sym_throw] = ACTIONS(512), - [anon_sym_case] = ACTIONS(512), - [anon_sym_yield] = ACTIONS(512), - [anon_sym_LBRACK] = ACTIONS(510), - [anon_sym_LT] = ACTIONS(512), - [anon_sym_GT] = ACTIONS(514), - [anon_sym_SLASH] = ACTIONS(512), - [anon_sym_DOT] = ACTIONS(514), - [anon_sym_class] = ACTIONS(512), - [anon_sym_function] = ACTIONS(512), - [anon_sym_QMARK_DOT] = ACTIONS(516), - [anon_sym_new] = ACTIONS(512), - [anon_sym_AMP_AMP] = ACTIONS(516), - [anon_sym_PIPE_PIPE] = ACTIONS(516), - [anon_sym_GT_GT] = ACTIONS(514), - [anon_sym_GT_GT_GT] = ACTIONS(516), - [anon_sym_LT_LT] = ACTIONS(516), - [anon_sym_AMP] = ACTIONS(514), - [anon_sym_CARET] = ACTIONS(516), - [anon_sym_PIPE] = ACTIONS(514), - [anon_sym_PLUS] = ACTIONS(512), - [anon_sym_DASH] = ACTIONS(512), - [anon_sym_PERCENT] = ACTIONS(516), - [anon_sym_STAR_STAR] = ACTIONS(516), - [anon_sym_LT_EQ] = ACTIONS(516), - [anon_sym_EQ_EQ] = ACTIONS(514), - [anon_sym_EQ_EQ_EQ] = ACTIONS(516), - [anon_sym_BANG_EQ] = ACTIONS(514), - [anon_sym_BANG_EQ_EQ] = ACTIONS(516), - [anon_sym_GT_EQ] = ACTIONS(516), - [anon_sym_QMARK_QMARK] = ACTIONS(516), - [anon_sym_instanceof] = ACTIONS(514), - [anon_sym_BANG] = ACTIONS(512), - [anon_sym_TILDE] = ACTIONS(510), - [anon_sym_typeof] = ACTIONS(512), - [anon_sym_void] = ACTIONS(512), - [anon_sym_delete] = ACTIONS(512), - [anon_sym_PLUS_PLUS] = ACTIONS(510), - [anon_sym_DASH_DASH] = ACTIONS(510), - [anon_sym_DQUOTE] = ACTIONS(510), - [anon_sym_SQUOTE] = ACTIONS(510), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(510), - [sym_number] = ACTIONS(510), - [sym_this] = ACTIONS(512), - [sym_super] = ACTIONS(512), - [sym_true] = ACTIONS(512), - [sym_false] = ACTIONS(512), - [sym_null] = ACTIONS(512), - [sym_undefined] = ACTIONS(512), - [anon_sym_AT] = ACTIONS(510), - [sym_automatic_semicolon] = ACTIONS(518), - [sym_ternary_qmark] = ACTIONS(516), - }, - [58] = { - [ts_builtin_sym_end] = ACTIONS(520), - [sym_identifier] = ACTIONS(522), - [anon_sym_export] = ACTIONS(522), - [anon_sym_STAR] = ACTIONS(524), - [anon_sym_SEMI] = ACTIONS(520), - [anon_sym_default] = ACTIONS(522), - [anon_sym_LBRACE] = ACTIONS(520), - [anon_sym_COMMA] = ACTIONS(526), - [anon_sym_RBRACE] = ACTIONS(520), - [anon_sym_import] = ACTIONS(522), - [anon_sym_var] = ACTIONS(522), - [anon_sym_let] = ACTIONS(522), - [anon_sym_const] = ACTIONS(522), - [anon_sym_else] = ACTIONS(522), - [anon_sym_if] = ACTIONS(522), - [anon_sym_switch] = ACTIONS(522), - [anon_sym_for] = ACTIONS(522), - [anon_sym_LPAREN] = ACTIONS(520), - [anon_sym_await] = ACTIONS(522), - [anon_sym_get] = ACTIONS(522), - [anon_sym_set] = ACTIONS(522), - [anon_sym_async] = ACTIONS(522), - [anon_sym_static] = ACTIONS(522), - [anon_sym_in] = ACTIONS(524), - [anon_sym_while] = ACTIONS(522), - [anon_sym_do] = ACTIONS(522), - [anon_sym_try] = ACTIONS(522), - [anon_sym_with] = ACTIONS(522), - [anon_sym_break] = ACTIONS(522), - [anon_sym_continue] = ACTIONS(522), - [anon_sym_debugger] = ACTIONS(522), - [anon_sym_return] = ACTIONS(522), - [anon_sym_throw] = ACTIONS(522), - [anon_sym_case] = ACTIONS(522), - [anon_sym_yield] = ACTIONS(522), - [anon_sym_LBRACK] = ACTIONS(520), - [anon_sym_LT] = ACTIONS(522), - [anon_sym_GT] = ACTIONS(524), - [anon_sym_SLASH] = ACTIONS(522), - [anon_sym_DOT] = ACTIONS(524), - [anon_sym_class] = ACTIONS(522), - [anon_sym_function] = ACTIONS(522), - [anon_sym_QMARK_DOT] = ACTIONS(526), - [anon_sym_new] = ACTIONS(522), - [anon_sym_AMP_AMP] = ACTIONS(526), - [anon_sym_PIPE_PIPE] = ACTIONS(526), - [anon_sym_GT_GT] = ACTIONS(524), - [anon_sym_GT_GT_GT] = ACTIONS(526), - [anon_sym_LT_LT] = ACTIONS(526), - [anon_sym_AMP] = ACTIONS(524), - [anon_sym_CARET] = ACTIONS(526), - [anon_sym_PIPE] = ACTIONS(524), - [anon_sym_PLUS] = ACTIONS(522), - [anon_sym_DASH] = ACTIONS(522), - [anon_sym_PERCENT] = ACTIONS(526), - [anon_sym_STAR_STAR] = ACTIONS(526), - [anon_sym_LT_EQ] = ACTIONS(526), - [anon_sym_EQ_EQ] = ACTIONS(524), - [anon_sym_EQ_EQ_EQ] = ACTIONS(526), - [anon_sym_BANG_EQ] = ACTIONS(524), - [anon_sym_BANG_EQ_EQ] = ACTIONS(526), - [anon_sym_GT_EQ] = ACTIONS(526), - [anon_sym_QMARK_QMARK] = ACTIONS(526), - [anon_sym_instanceof] = ACTIONS(524), - [anon_sym_BANG] = ACTIONS(522), - [anon_sym_TILDE] = ACTIONS(520), - [anon_sym_typeof] = ACTIONS(522), - [anon_sym_void] = ACTIONS(522), - [anon_sym_delete] = ACTIONS(522), - [anon_sym_PLUS_PLUS] = ACTIONS(520), - [anon_sym_DASH_DASH] = ACTIONS(520), - [anon_sym_DQUOTE] = ACTIONS(520), - [anon_sym_SQUOTE] = ACTIONS(520), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(520), - [sym_number] = ACTIONS(520), - [sym_this] = ACTIONS(522), - [sym_super] = ACTIONS(522), - [sym_true] = ACTIONS(522), - [sym_false] = ACTIONS(522), - [sym_null] = ACTIONS(522), - [sym_undefined] = ACTIONS(522), - [anon_sym_AT] = ACTIONS(520), - [sym_automatic_semicolon] = ACTIONS(528), - [sym_ternary_qmark] = ACTIONS(526), - }, - [59] = { - [ts_builtin_sym_end] = ACTIONS(530), - [sym_identifier] = ACTIONS(532), - [anon_sym_export] = ACTIONS(532), - [anon_sym_STAR] = ACTIONS(534), - [anon_sym_SEMI] = ACTIONS(530), - [anon_sym_default] = ACTIONS(532), - [anon_sym_LBRACE] = ACTIONS(530), - [anon_sym_COMMA] = ACTIONS(536), - [anon_sym_RBRACE] = ACTIONS(530), - [anon_sym_import] = ACTIONS(532), - [anon_sym_var] = ACTIONS(532), - [anon_sym_let] = ACTIONS(532), - [anon_sym_const] = ACTIONS(532), - [anon_sym_else] = ACTIONS(532), - [anon_sym_if] = ACTIONS(532), - [anon_sym_switch] = ACTIONS(532), - [anon_sym_for] = ACTIONS(532), - [anon_sym_LPAREN] = ACTIONS(530), - [anon_sym_await] = ACTIONS(532), - [anon_sym_get] = ACTIONS(532), - [anon_sym_set] = ACTIONS(532), - [anon_sym_async] = ACTIONS(532), - [anon_sym_static] = ACTIONS(532), - [anon_sym_in] = ACTIONS(534), - [anon_sym_while] = ACTIONS(532), - [anon_sym_do] = ACTIONS(532), - [anon_sym_try] = ACTIONS(532), - [anon_sym_with] = ACTIONS(532), - [anon_sym_break] = ACTIONS(532), - [anon_sym_continue] = ACTIONS(532), - [anon_sym_debugger] = ACTIONS(532), - [anon_sym_return] = ACTIONS(532), - [anon_sym_throw] = ACTIONS(532), - [anon_sym_case] = ACTIONS(532), - [anon_sym_yield] = ACTIONS(532), - [anon_sym_LBRACK] = ACTIONS(530), - [anon_sym_LT] = ACTIONS(532), - [anon_sym_GT] = ACTIONS(534), - [anon_sym_SLASH] = ACTIONS(532), - [anon_sym_DOT] = ACTIONS(534), - [anon_sym_class] = ACTIONS(532), - [anon_sym_function] = ACTIONS(532), - [anon_sym_QMARK_DOT] = ACTIONS(536), - [anon_sym_new] = ACTIONS(532), - [anon_sym_AMP_AMP] = ACTIONS(536), - [anon_sym_PIPE_PIPE] = ACTIONS(536), - [anon_sym_GT_GT] = ACTIONS(534), - [anon_sym_GT_GT_GT] = ACTIONS(536), - [anon_sym_LT_LT] = ACTIONS(536), - [anon_sym_AMP] = ACTIONS(534), - [anon_sym_CARET] = ACTIONS(536), - [anon_sym_PIPE] = ACTIONS(534), - [anon_sym_PLUS] = ACTIONS(532), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_PERCENT] = ACTIONS(536), - [anon_sym_STAR_STAR] = ACTIONS(536), - [anon_sym_LT_EQ] = ACTIONS(536), - [anon_sym_EQ_EQ] = ACTIONS(534), - [anon_sym_EQ_EQ_EQ] = ACTIONS(536), - [anon_sym_BANG_EQ] = ACTIONS(534), - [anon_sym_BANG_EQ_EQ] = ACTIONS(536), - [anon_sym_GT_EQ] = ACTIONS(536), - [anon_sym_QMARK_QMARK] = ACTIONS(536), - [anon_sym_instanceof] = ACTIONS(534), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(530), - [anon_sym_typeof] = ACTIONS(532), - [anon_sym_void] = ACTIONS(532), - [anon_sym_delete] = ACTIONS(532), - [anon_sym_PLUS_PLUS] = ACTIONS(530), - [anon_sym_DASH_DASH] = ACTIONS(530), - [anon_sym_DQUOTE] = ACTIONS(530), - [anon_sym_SQUOTE] = ACTIONS(530), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(530), - [sym_number] = ACTIONS(530), - [sym_this] = ACTIONS(532), - [sym_super] = ACTIONS(532), - [sym_true] = ACTIONS(532), - [sym_false] = ACTIONS(532), - [sym_null] = ACTIONS(532), - [sym_undefined] = ACTIONS(532), - [anon_sym_AT] = ACTIONS(530), - [sym_automatic_semicolon] = ACTIONS(538), - [sym_ternary_qmark] = ACTIONS(536), - }, - [60] = { - [ts_builtin_sym_end] = ACTIONS(540), - [sym_identifier] = ACTIONS(542), - [anon_sym_export] = ACTIONS(542), - [anon_sym_STAR] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(540), - [anon_sym_default] = ACTIONS(542), - [anon_sym_LBRACE] = ACTIONS(540), - [anon_sym_COMMA] = ACTIONS(546), - [anon_sym_RBRACE] = ACTIONS(540), - [anon_sym_import] = ACTIONS(542), - [anon_sym_var] = ACTIONS(542), - [anon_sym_let] = ACTIONS(542), - [anon_sym_const] = ACTIONS(542), - [anon_sym_else] = ACTIONS(542), - [anon_sym_if] = ACTIONS(542), - [anon_sym_switch] = ACTIONS(542), - [anon_sym_for] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(540), - [anon_sym_await] = ACTIONS(542), - [anon_sym_get] = ACTIONS(542), - [anon_sym_set] = ACTIONS(542), - [anon_sym_async] = ACTIONS(542), - [anon_sym_static] = ACTIONS(542), - [anon_sym_in] = ACTIONS(544), - [anon_sym_while] = ACTIONS(542), - [anon_sym_do] = ACTIONS(542), - [anon_sym_try] = ACTIONS(542), - [anon_sym_with] = ACTIONS(542), - [anon_sym_break] = ACTIONS(542), - [anon_sym_continue] = ACTIONS(542), - [anon_sym_debugger] = ACTIONS(542), - [anon_sym_return] = ACTIONS(542), - [anon_sym_throw] = ACTIONS(542), - [anon_sym_case] = ACTIONS(542), - [anon_sym_yield] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(540), - [anon_sym_LT] = ACTIONS(542), - [anon_sym_GT] = ACTIONS(544), - [anon_sym_SLASH] = ACTIONS(542), - [anon_sym_DOT] = ACTIONS(544), - [anon_sym_class] = ACTIONS(542), - [anon_sym_function] = ACTIONS(542), - [anon_sym_QMARK_DOT] = ACTIONS(546), - [anon_sym_new] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(546), - [anon_sym_PIPE_PIPE] = ACTIONS(546), - [anon_sym_GT_GT] = ACTIONS(544), - [anon_sym_GT_GT_GT] = ACTIONS(546), - [anon_sym_LT_LT] = ACTIONS(546), - [anon_sym_AMP] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(546), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_PLUS] = ACTIONS(542), - [anon_sym_DASH] = ACTIONS(542), - [anon_sym_PERCENT] = ACTIONS(546), - [anon_sym_STAR_STAR] = ACTIONS(546), - [anon_sym_LT_EQ] = ACTIONS(546), - [anon_sym_EQ_EQ] = ACTIONS(544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(546), - [anon_sym_BANG_EQ] = ACTIONS(544), - [anon_sym_BANG_EQ_EQ] = ACTIONS(546), - [anon_sym_GT_EQ] = ACTIONS(546), - [anon_sym_QMARK_QMARK] = ACTIONS(546), - [anon_sym_instanceof] = ACTIONS(544), - [anon_sym_BANG] = ACTIONS(542), - [anon_sym_TILDE] = ACTIONS(540), - [anon_sym_typeof] = ACTIONS(542), - [anon_sym_void] = ACTIONS(542), - [anon_sym_delete] = ACTIONS(542), - [anon_sym_PLUS_PLUS] = ACTIONS(540), - [anon_sym_DASH_DASH] = ACTIONS(540), - [anon_sym_DQUOTE] = ACTIONS(540), - [anon_sym_SQUOTE] = ACTIONS(540), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(540), - [sym_number] = ACTIONS(540), - [sym_this] = ACTIONS(542), - [sym_super] = ACTIONS(542), - [sym_true] = ACTIONS(542), - [sym_false] = ACTIONS(542), - [sym_null] = ACTIONS(542), - [sym_undefined] = ACTIONS(542), - [anon_sym_AT] = ACTIONS(540), - [sym_automatic_semicolon] = ACTIONS(548), - [sym_ternary_qmark] = ACTIONS(546), - }, - [61] = { - [ts_builtin_sym_end] = ACTIONS(550), - [sym_identifier] = ACTIONS(552), - [anon_sym_export] = ACTIONS(552), - [anon_sym_STAR] = ACTIONS(554), - [anon_sym_SEMI] = ACTIONS(550), - [anon_sym_default] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(550), - [anon_sym_COMMA] = ACTIONS(556), - [anon_sym_RBRACE] = ACTIONS(550), - [anon_sym_import] = ACTIONS(552), - [anon_sym_var] = ACTIONS(552), - [anon_sym_let] = ACTIONS(552), - [anon_sym_const] = ACTIONS(552), - [anon_sym_else] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_switch] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_await] = ACTIONS(552), - [anon_sym_get] = ACTIONS(552), - [anon_sym_set] = ACTIONS(552), - [anon_sym_async] = ACTIONS(552), - [anon_sym_static] = ACTIONS(552), - [anon_sym_in] = ACTIONS(554), - [anon_sym_while] = ACTIONS(552), - [anon_sym_do] = ACTIONS(552), - [anon_sym_try] = ACTIONS(552), - [anon_sym_with] = ACTIONS(552), - [anon_sym_break] = ACTIONS(552), - [anon_sym_continue] = ACTIONS(552), - [anon_sym_debugger] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_throw] = ACTIONS(552), - [anon_sym_case] = ACTIONS(552), - [anon_sym_yield] = ACTIONS(552), - [anon_sym_LBRACK] = ACTIONS(550), - [anon_sym_LT] = ACTIONS(552), - [anon_sym_GT] = ACTIONS(554), - [anon_sym_SLASH] = ACTIONS(552), - [anon_sym_DOT] = ACTIONS(554), - [anon_sym_class] = ACTIONS(552), - [anon_sym_function] = ACTIONS(552), - [anon_sym_QMARK_DOT] = ACTIONS(556), - [anon_sym_new] = ACTIONS(552), - [anon_sym_AMP_AMP] = ACTIONS(556), - [anon_sym_PIPE_PIPE] = ACTIONS(556), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_GT_GT_GT] = ACTIONS(556), - [anon_sym_LT_LT] = ACTIONS(556), - [anon_sym_AMP] = ACTIONS(554), - [anon_sym_CARET] = ACTIONS(556), - [anon_sym_PIPE] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(552), - [anon_sym_DASH] = ACTIONS(552), - [anon_sym_PERCENT] = ACTIONS(556), - [anon_sym_STAR_STAR] = ACTIONS(556), - [anon_sym_LT_EQ] = ACTIONS(556), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_EQ_EQ_EQ] = ACTIONS(556), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ_EQ] = ACTIONS(556), - [anon_sym_GT_EQ] = ACTIONS(556), - [anon_sym_QMARK_QMARK] = ACTIONS(556), - [anon_sym_instanceof] = ACTIONS(554), - [anon_sym_BANG] = ACTIONS(552), - [anon_sym_TILDE] = ACTIONS(550), - [anon_sym_typeof] = ACTIONS(552), - [anon_sym_void] = ACTIONS(552), - [anon_sym_delete] = ACTIONS(552), - [anon_sym_PLUS_PLUS] = ACTIONS(550), - [anon_sym_DASH_DASH] = ACTIONS(550), - [anon_sym_DQUOTE] = ACTIONS(550), - [anon_sym_SQUOTE] = ACTIONS(550), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(550), - [sym_number] = ACTIONS(550), - [sym_this] = ACTIONS(552), - [sym_super] = ACTIONS(552), - [sym_true] = ACTIONS(552), - [sym_false] = ACTIONS(552), - [sym_null] = ACTIONS(552), - [sym_undefined] = ACTIONS(552), - [anon_sym_AT] = ACTIONS(550), - [sym_automatic_semicolon] = ACTIONS(558), - [sym_ternary_qmark] = ACTIONS(556), - }, - [62] = { - [sym_import] = STATE(595), - [sym_expression_statement] = STATE(90), - [sym_variable_declaration] = STATE(90), - [sym_lexical_declaration] = STATE(90), - [sym_empty_statement] = STATE(90), - [sym_parenthesized_expression] = STATE(390), - [sym_expression] = STATE(600), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_function] = STATE(595), - [sym_generator_function] = STATE(595), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(390), - [sym_subscript_expression] = STATE(390), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1079), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_sequence_expression] = STATE(1227), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_export_statement_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(560), - [anon_sym_export] = ACTIONS(560), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_import] = ACTIONS(370), - [anon_sym_var] = ACTIONS(564), - [anon_sym_let] = ACTIONS(566), - [anon_sym_const] = ACTIONS(566), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(560), - [anon_sym_set] = ACTIONS(560), - [anon_sym_async] = ACTIONS(568), - [anon_sym_static] = ACTIONS(560), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(376), - [anon_sym_function] = ACTIONS(378), - [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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(85), - }, - [63] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(610), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_assignment_pattern] = STATE(1082), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(391), - [sym_subscript_expression] = STATE(391), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(968), - [sym_spread_element] = STATE(1083), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [sym_pattern] = STATE(1008), - [sym_rest_pattern] = STATE(970), - [aux_sym_export_statement_repeat1] = STATE(1020), - [aux_sym_array_repeat1] = STATE(1131), - [aux_sym_array_pattern_repeat1] = STATE(1134), - [sym_identifier] = ACTIONS(574), - [anon_sym_export] = ACTIONS(574), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(576), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(574), - [anon_sym_set] = ACTIONS(574), - [anon_sym_async] = ACTIONS(578), - [anon_sym_static] = ACTIONS(574), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_RBRACK] = ACTIONS(580), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_DOT_DOT_DOT] = ACTIONS(105), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(584), - [anon_sym_AT] = ACTIONS(85), - }, - [64] = { - [sym_declaration] = STATE(331), - [sym_import] = STATE(595), - [sym_variable_declaration] = STATE(341), - [sym_lexical_declaration] = STATE(341), - [sym_parenthesized_expression] = STATE(388), - [sym_expression] = STATE(659), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_class_declaration] = STATE(341), - [sym_function] = STATE(595), - [sym_function_declaration] = STATE(341), - [sym_generator_function] = STATE(595), - [sym_generator_function_declaration] = STATE(341), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_export_statement_repeat1] = STATE(1006), - [sym_identifier] = ACTIONS(364), - [anon_sym_export] = ACTIONS(364), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_import] = ACTIONS(370), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [anon_sym_const] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(364), - [anon_sym_set] = ACTIONS(364), - [anon_sym_async] = ACTIONS(586), - [anon_sym_static] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = 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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - }, - [65] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(594), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_assignment_pattern] = STATE(1082), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(391), - [sym_subscript_expression] = STATE(391), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(968), - [sym_spread_element] = STATE(1127), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [sym_pattern] = STATE(1008), - [sym_rest_pattern] = STATE(970), - [aux_sym_export_statement_repeat1] = STATE(1020), - [aux_sym_array_repeat1] = STATE(1132), - [aux_sym_array_pattern_repeat1] = STATE(1134), - [sym_identifier] = ACTIONS(574), - [anon_sym_export] = ACTIONS(574), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(576), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(574), - [anon_sym_set] = ACTIONS(574), - [anon_sym_async] = ACTIONS(578), - [anon_sym_static] = ACTIONS(574), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_RBRACK] = ACTIONS(588), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_DOT_DOT_DOT] = ACTIONS(105), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(584), - [anon_sym_AT] = ACTIONS(85), - }, - [66] = { - [sym_declaration] = STATE(342), - [sym_import] = STATE(595), - [sym_variable_declaration] = STATE(341), - [sym_lexical_declaration] = STATE(341), - [sym_parenthesized_expression] = STATE(388), - [sym_expression] = STATE(662), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_class_declaration] = STATE(341), - [sym_function] = STATE(595), - [sym_function_declaration] = STATE(341), - [sym_generator_function] = STATE(595), - [sym_generator_function_declaration] = STATE(341), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_export_statement_repeat1] = STATE(1006), - [sym_identifier] = ACTIONS(364), - [anon_sym_export] = ACTIONS(364), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_import] = ACTIONS(370), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [anon_sym_const] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(364), - [anon_sym_set] = ACTIONS(364), - [anon_sym_async] = ACTIONS(586), - [anon_sym_static] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = 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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_TILDE] = ACTIONS(502), + [anon_sym_typeof] = ACTIONS(504), + [anon_sym_void] = ACTIONS(504), + [anon_sym_delete] = ACTIONS(504), + [anon_sym_PLUS_PLUS] = ACTIONS(502), + [anon_sym_DASH_DASH] = ACTIONS(502), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(502), + [sym_number] = ACTIONS(502), + [sym_private_property_identifier] = ACTIONS(502), + [sym_this] = ACTIONS(504), + [sym_super] = ACTIONS(504), + [sym_true] = ACTIONS(504), + [sym_false] = ACTIONS(504), + [sym_null] = ACTIONS(504), + [sym_undefined] = ACTIONS(504), + [anon_sym_AT] = ACTIONS(502), + [sym_automatic_semicolon] = ACTIONS(502), + [sym_ternary_qmark] = ACTIONS(502), + [sym_html_comment] = ACTIONS(5), }, [67] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(594), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_assignment_pattern] = STATE(1082), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(391), - [sym_subscript_expression] = STATE(391), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(968), - [sym_spread_element] = STATE(1127), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [sym_pattern] = STATE(1008), - [sym_rest_pattern] = STATE(970), - [aux_sym_export_statement_repeat1] = STATE(1020), - [aux_sym_array_repeat1] = STATE(1132), - [aux_sym_array_pattern_repeat1] = STATE(1134), - [sym_identifier] = ACTIONS(574), - [anon_sym_export] = ACTIONS(574), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(576), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(574), - [anon_sym_set] = ACTIONS(574), - [anon_sym_async] = ACTIONS(578), - [anon_sym_static] = ACTIONS(574), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_RBRACK] = ACTIONS(590), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_DOT_DOT_DOT] = ACTIONS(105), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(584), - [anon_sym_AT] = ACTIONS(85), + [ts_builtin_sym_end] = ACTIONS(490), + [sym_identifier] = ACTIONS(492), + [anon_sym_export] = ACTIONS(492), + [anon_sym_STAR] = ACTIONS(506), + [anon_sym_SEMI] = ACTIONS(490), + [anon_sym_default] = ACTIONS(492), + [anon_sym_LBRACE] = ACTIONS(490), + [anon_sym_COMMA] = ACTIONS(508), + [anon_sym_RBRACE] = ACTIONS(490), + [anon_sym_import] = ACTIONS(492), + [anon_sym_with] = ACTIONS(492), + [anon_sym_var] = ACTIONS(492), + [anon_sym_let] = ACTIONS(492), + [anon_sym_const] = ACTIONS(492), + [anon_sym_else] = ACTIONS(492), + [anon_sym_if] = ACTIONS(492), + [anon_sym_switch] = ACTIONS(492), + [anon_sym_for] = ACTIONS(492), + [anon_sym_LPAREN] = ACTIONS(490), + [anon_sym_await] = ACTIONS(492), + [anon_sym_get] = ACTIONS(492), + [anon_sym_set] = ACTIONS(492), + [anon_sym_async] = ACTIONS(492), + [anon_sym_static] = ACTIONS(492), + [anon_sym_in] = ACTIONS(506), + [anon_sym_while] = ACTIONS(492), + [anon_sym_do] = ACTIONS(492), + [anon_sym_try] = ACTIONS(492), + [anon_sym_break] = ACTIONS(492), + [anon_sym_continue] = ACTIONS(492), + [anon_sym_debugger] = ACTIONS(492), + [anon_sym_return] = ACTIONS(492), + [anon_sym_throw] = ACTIONS(492), + [anon_sym_case] = ACTIONS(492), + [anon_sym_yield] = ACTIONS(492), + [anon_sym_EQ] = ACTIONS(510), + [anon_sym_LBRACK] = ACTIONS(490), + [anon_sym_GT] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(492), + [anon_sym_DOT] = ACTIONS(506), + [anon_sym_DQUOTE] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(490), + [anon_sym_class] = ACTIONS(492), + [anon_sym_function] = ACTIONS(492), + [sym_optional_chain] = ACTIONS(508), + [anon_sym_new] = ACTIONS(492), + [anon_sym_AMP_AMP] = ACTIONS(508), + [anon_sym_PIPE_PIPE] = ACTIONS(508), + [anon_sym_GT_GT] = ACTIONS(506), + [anon_sym_GT_GT_GT] = ACTIONS(508), + [anon_sym_LT_LT] = ACTIONS(508), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(508), + [anon_sym_PIPE] = ACTIONS(506), + [anon_sym_PLUS] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_SLASH] = ACTIONS(492), + [anon_sym_PERCENT] = ACTIONS(508), + [anon_sym_STAR_STAR] = ACTIONS(508), + [anon_sym_LT_EQ] = ACTIONS(508), + [anon_sym_EQ_EQ] = ACTIONS(506), + [anon_sym_EQ_EQ_EQ] = ACTIONS(508), + [anon_sym_BANG_EQ] = ACTIONS(506), + [anon_sym_BANG_EQ_EQ] = ACTIONS(508), + [anon_sym_GT_EQ] = ACTIONS(508), + [anon_sym_QMARK_QMARK] = ACTIONS(508), + [anon_sym_instanceof] = ACTIONS(506), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_TILDE] = ACTIONS(490), + [anon_sym_typeof] = ACTIONS(492), + [anon_sym_void] = ACTIONS(492), + [anon_sym_delete] = ACTIONS(492), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_DASH_DASH] = ACTIONS(490), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(490), + [sym_number] = ACTIONS(490), + [sym_private_property_identifier] = ACTIONS(490), + [sym_this] = ACTIONS(492), + [sym_super] = ACTIONS(492), + [sym_true] = ACTIONS(492), + [sym_false] = ACTIONS(492), + [sym_null] = ACTIONS(492), + [sym_undefined] = ACTIONS(492), + [anon_sym_AT] = ACTIONS(490), + [sym_automatic_semicolon] = ACTIONS(512), + [sym_ternary_qmark] = ACTIONS(508), + [sym_html_comment] = ACTIONS(5), }, [68] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(594), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_assignment_pattern] = STATE(1082), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(391), - [sym_subscript_expression] = STATE(391), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(968), - [sym_spread_element] = STATE(1127), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [sym_pattern] = STATE(1008), - [sym_rest_pattern] = STATE(970), - [aux_sym_export_statement_repeat1] = STATE(1020), - [aux_sym_array_repeat1] = STATE(1132), - [aux_sym_array_pattern_repeat1] = STATE(1134), - [sym_identifier] = ACTIONS(574), - [anon_sym_export] = ACTIONS(574), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(576), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(574), - [anon_sym_set] = ACTIONS(574), - [anon_sym_async] = ACTIONS(578), - [anon_sym_static] = ACTIONS(574), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_RBRACK] = ACTIONS(592), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_DOT_DOT_DOT] = ACTIONS(105), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(584), - [anon_sym_AT] = ACTIONS(85), + [ts_builtin_sym_end] = ACTIONS(514), + [sym_identifier] = ACTIONS(516), + [anon_sym_export] = ACTIONS(516), + [anon_sym_STAR] = ACTIONS(518), + [anon_sym_SEMI] = ACTIONS(514), + [anon_sym_default] = ACTIONS(516), + [anon_sym_LBRACE] = ACTIONS(514), + [anon_sym_COMMA] = ACTIONS(520), + [anon_sym_RBRACE] = ACTIONS(514), + [anon_sym_import] = ACTIONS(516), + [anon_sym_with] = ACTIONS(516), + [anon_sym_var] = ACTIONS(516), + [anon_sym_let] = ACTIONS(516), + [anon_sym_const] = ACTIONS(516), + [anon_sym_else] = ACTIONS(516), + [anon_sym_if] = ACTIONS(516), + [anon_sym_switch] = ACTIONS(516), + [anon_sym_for] = ACTIONS(516), + [anon_sym_LPAREN] = ACTIONS(514), + [anon_sym_await] = ACTIONS(516), + [anon_sym_get] = ACTIONS(516), + [anon_sym_set] = ACTIONS(516), + [anon_sym_async] = ACTIONS(516), + [anon_sym_static] = ACTIONS(516), + [anon_sym_in] = ACTIONS(518), + [anon_sym_while] = ACTIONS(516), + [anon_sym_do] = ACTIONS(516), + [anon_sym_try] = ACTIONS(516), + [anon_sym_break] = ACTIONS(516), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_debugger] = ACTIONS(516), + [anon_sym_return] = ACTIONS(516), + [anon_sym_throw] = ACTIONS(516), + [anon_sym_case] = ACTIONS(516), + [anon_sym_yield] = ACTIONS(516), + [anon_sym_LBRACK] = ACTIONS(514), + [anon_sym_GT] = ACTIONS(518), + [anon_sym_LT] = ACTIONS(516), + [anon_sym_DOT] = ACTIONS(518), + [anon_sym_DQUOTE] = ACTIONS(514), + [anon_sym_SQUOTE] = ACTIONS(514), + [anon_sym_class] = ACTIONS(516), + [anon_sym_function] = ACTIONS(516), + [sym_optional_chain] = ACTIONS(520), + [anon_sym_new] = ACTIONS(516), + [anon_sym_AMP_AMP] = ACTIONS(520), + [anon_sym_PIPE_PIPE] = ACTIONS(520), + [anon_sym_GT_GT] = ACTIONS(518), + [anon_sym_GT_GT_GT] = ACTIONS(520), + [anon_sym_LT_LT] = ACTIONS(520), + [anon_sym_AMP] = ACTIONS(518), + [anon_sym_CARET] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(518), + [anon_sym_PLUS] = ACTIONS(516), + [anon_sym_DASH] = ACTIONS(516), + [anon_sym_SLASH] = ACTIONS(516), + [anon_sym_PERCENT] = ACTIONS(520), + [anon_sym_STAR_STAR] = ACTIONS(520), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_EQ_EQ] = ACTIONS(518), + [anon_sym_EQ_EQ_EQ] = ACTIONS(520), + [anon_sym_BANG_EQ] = ACTIONS(518), + [anon_sym_BANG_EQ_EQ] = ACTIONS(520), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_QMARK_QMARK] = ACTIONS(520), + [anon_sym_instanceof] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(516), + [anon_sym_TILDE] = ACTIONS(514), + [anon_sym_typeof] = ACTIONS(516), + [anon_sym_void] = ACTIONS(516), + [anon_sym_delete] = ACTIONS(516), + [anon_sym_PLUS_PLUS] = ACTIONS(514), + [anon_sym_DASH_DASH] = ACTIONS(514), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(514), + [sym_number] = ACTIONS(514), + [sym_private_property_identifier] = ACTIONS(514), + [sym_this] = ACTIONS(516), + [sym_super] = ACTIONS(516), + [sym_true] = ACTIONS(516), + [sym_false] = ACTIONS(516), + [sym_null] = ACTIONS(516), + [sym_undefined] = ACTIONS(516), + [anon_sym_AT] = ACTIONS(514), + [sym_automatic_semicolon] = ACTIONS(522), + [sym_ternary_qmark] = ACTIONS(520), + [sym_html_comment] = ACTIONS(5), }, [69] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(594), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_assignment_pattern] = STATE(1082), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(391), - [sym_subscript_expression] = STATE(391), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(968), - [sym_spread_element] = STATE(1127), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [sym_pattern] = STATE(1008), - [sym_rest_pattern] = STATE(970), - [aux_sym_export_statement_repeat1] = STATE(1020), - [aux_sym_array_repeat1] = STATE(1132), - [aux_sym_array_pattern_repeat1] = STATE(1134), - [sym_identifier] = ACTIONS(574), - [anon_sym_export] = ACTIONS(574), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(576), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(574), - [anon_sym_set] = ACTIONS(574), - [anon_sym_async] = ACTIONS(578), - [anon_sym_static] = ACTIONS(574), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_RBRACK] = ACTIONS(594), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_DOT_DOT_DOT] = ACTIONS(105), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(584), - [anon_sym_AT] = ACTIONS(85), + [ts_builtin_sym_end] = ACTIONS(524), + [sym_identifier] = ACTIONS(526), + [anon_sym_export] = ACTIONS(526), + [anon_sym_STAR] = ACTIONS(528), + [anon_sym_SEMI] = ACTIONS(524), + [anon_sym_default] = ACTIONS(526), + [anon_sym_LBRACE] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(530), + [anon_sym_RBRACE] = ACTIONS(524), + [anon_sym_import] = ACTIONS(526), + [anon_sym_with] = ACTIONS(526), + [anon_sym_var] = ACTIONS(526), + [anon_sym_let] = ACTIONS(526), + [anon_sym_const] = ACTIONS(526), + [anon_sym_else] = ACTIONS(526), + [anon_sym_if] = ACTIONS(526), + [anon_sym_switch] = ACTIONS(526), + [anon_sym_for] = ACTIONS(526), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_await] = ACTIONS(526), + [anon_sym_get] = ACTIONS(526), + [anon_sym_set] = ACTIONS(526), + [anon_sym_async] = ACTIONS(526), + [anon_sym_static] = ACTIONS(526), + [anon_sym_in] = ACTIONS(528), + [anon_sym_while] = ACTIONS(526), + [anon_sym_do] = ACTIONS(526), + [anon_sym_try] = ACTIONS(526), + [anon_sym_break] = ACTIONS(526), + [anon_sym_continue] = ACTIONS(526), + [anon_sym_debugger] = ACTIONS(526), + [anon_sym_return] = ACTIONS(526), + [anon_sym_throw] = ACTIONS(526), + [anon_sym_case] = ACTIONS(526), + [anon_sym_yield] = ACTIONS(526), + [anon_sym_LBRACK] = ACTIONS(524), + [anon_sym_GT] = ACTIONS(528), + [anon_sym_LT] = ACTIONS(526), + [anon_sym_DOT] = ACTIONS(528), + [anon_sym_DQUOTE] = ACTIONS(524), + [anon_sym_SQUOTE] = ACTIONS(524), + [anon_sym_class] = ACTIONS(526), + [anon_sym_function] = ACTIONS(526), + [sym_optional_chain] = ACTIONS(530), + [anon_sym_new] = ACTIONS(526), + [anon_sym_AMP_AMP] = ACTIONS(530), + [anon_sym_PIPE_PIPE] = ACTIONS(530), + [anon_sym_GT_GT] = ACTIONS(528), + [anon_sym_GT_GT_GT] = ACTIONS(530), + [anon_sym_LT_LT] = ACTIONS(530), + [anon_sym_AMP] = ACTIONS(528), + [anon_sym_CARET] = ACTIONS(530), + [anon_sym_PIPE] = ACTIONS(528), + [anon_sym_PLUS] = ACTIONS(526), + [anon_sym_DASH] = ACTIONS(526), + [anon_sym_SLASH] = ACTIONS(526), + [anon_sym_PERCENT] = ACTIONS(530), + [anon_sym_STAR_STAR] = ACTIONS(530), + [anon_sym_LT_EQ] = ACTIONS(530), + [anon_sym_EQ_EQ] = ACTIONS(528), + [anon_sym_EQ_EQ_EQ] = ACTIONS(530), + [anon_sym_BANG_EQ] = ACTIONS(528), + [anon_sym_BANG_EQ_EQ] = ACTIONS(530), + [anon_sym_GT_EQ] = ACTIONS(530), + [anon_sym_QMARK_QMARK] = ACTIONS(530), + [anon_sym_instanceof] = ACTIONS(528), + [anon_sym_BANG] = ACTIONS(526), + [anon_sym_TILDE] = ACTIONS(524), + [anon_sym_typeof] = ACTIONS(526), + [anon_sym_void] = ACTIONS(526), + [anon_sym_delete] = ACTIONS(526), + [anon_sym_PLUS_PLUS] = ACTIONS(524), + [anon_sym_DASH_DASH] = ACTIONS(524), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(524), + [sym_number] = ACTIONS(524), + [sym_private_property_identifier] = ACTIONS(524), + [sym_this] = ACTIONS(526), + [sym_super] = ACTIONS(526), + [sym_true] = ACTIONS(526), + [sym_false] = ACTIONS(526), + [sym_null] = ACTIONS(526), + [sym_undefined] = ACTIONS(526), + [anon_sym_AT] = ACTIONS(524), + [sym_automatic_semicolon] = ACTIONS(532), + [sym_ternary_qmark] = ACTIONS(530), + [sym_html_comment] = ACTIONS(5), }, [70] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(610), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_assignment_pattern] = STATE(1082), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(391), - [sym_subscript_expression] = STATE(391), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(968), - [sym_spread_element] = STATE(1083), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [sym_pattern] = STATE(1008), - [sym_rest_pattern] = STATE(970), - [aux_sym_export_statement_repeat1] = STATE(1020), - [aux_sym_array_repeat1] = STATE(1131), - [aux_sym_array_pattern_repeat1] = STATE(1134), - [sym_identifier] = ACTIONS(574), - [anon_sym_export] = ACTIONS(574), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(576), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(574), - [anon_sym_set] = ACTIONS(574), - [anon_sym_async] = ACTIONS(578), - [anon_sym_static] = ACTIONS(574), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_RBRACK] = ACTIONS(596), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_DOT_DOT_DOT] = ACTIONS(105), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(584), - [anon_sym_AT] = ACTIONS(85), + [ts_builtin_sym_end] = ACTIONS(534), + [sym_identifier] = ACTIONS(536), + [anon_sym_export] = ACTIONS(536), + [anon_sym_STAR] = ACTIONS(538), + [anon_sym_SEMI] = ACTIONS(534), + [anon_sym_default] = ACTIONS(536), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_COMMA] = ACTIONS(540), + [anon_sym_RBRACE] = ACTIONS(534), + [anon_sym_import] = ACTIONS(536), + [anon_sym_with] = ACTIONS(536), + [anon_sym_var] = ACTIONS(536), + [anon_sym_let] = ACTIONS(536), + [anon_sym_const] = ACTIONS(536), + [anon_sym_else] = ACTIONS(536), + [anon_sym_if] = ACTIONS(536), + [anon_sym_switch] = ACTIONS(536), + [anon_sym_for] = ACTIONS(536), + [anon_sym_LPAREN] = ACTIONS(534), + [anon_sym_await] = ACTIONS(536), + [anon_sym_get] = ACTIONS(536), + [anon_sym_set] = ACTIONS(536), + [anon_sym_async] = ACTIONS(536), + [anon_sym_static] = ACTIONS(536), + [anon_sym_in] = ACTIONS(538), + [anon_sym_while] = ACTIONS(536), + [anon_sym_do] = ACTIONS(536), + [anon_sym_try] = ACTIONS(536), + [anon_sym_break] = ACTIONS(536), + [anon_sym_continue] = ACTIONS(536), + [anon_sym_debugger] = ACTIONS(536), + [anon_sym_return] = ACTIONS(536), + [anon_sym_throw] = ACTIONS(536), + [anon_sym_case] = ACTIONS(536), + [anon_sym_yield] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(534), + [anon_sym_GT] = ACTIONS(538), + [anon_sym_LT] = ACTIONS(536), + [anon_sym_DOT] = ACTIONS(538), + [anon_sym_DQUOTE] = ACTIONS(534), + [anon_sym_SQUOTE] = ACTIONS(534), + [anon_sym_class] = ACTIONS(536), + [anon_sym_function] = ACTIONS(536), + [sym_optional_chain] = ACTIONS(540), + [anon_sym_new] = ACTIONS(536), + [anon_sym_AMP_AMP] = ACTIONS(540), + [anon_sym_PIPE_PIPE] = ACTIONS(540), + [anon_sym_GT_GT] = ACTIONS(538), + [anon_sym_GT_GT_GT] = ACTIONS(540), + [anon_sym_LT_LT] = ACTIONS(540), + [anon_sym_AMP] = ACTIONS(538), + [anon_sym_CARET] = ACTIONS(540), + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_PLUS] = ACTIONS(536), + [anon_sym_DASH] = ACTIONS(536), + [anon_sym_SLASH] = ACTIONS(536), + [anon_sym_PERCENT] = ACTIONS(540), + [anon_sym_STAR_STAR] = ACTIONS(540), + [anon_sym_LT_EQ] = ACTIONS(540), + [anon_sym_EQ_EQ] = ACTIONS(538), + [anon_sym_EQ_EQ_EQ] = ACTIONS(540), + [anon_sym_BANG_EQ] = ACTIONS(538), + [anon_sym_BANG_EQ_EQ] = ACTIONS(540), + [anon_sym_GT_EQ] = ACTIONS(540), + [anon_sym_QMARK_QMARK] = ACTIONS(540), + [anon_sym_instanceof] = ACTIONS(538), + [anon_sym_BANG] = ACTIONS(536), + [anon_sym_TILDE] = ACTIONS(534), + [anon_sym_typeof] = ACTIONS(536), + [anon_sym_void] = ACTIONS(536), + [anon_sym_delete] = ACTIONS(536), + [anon_sym_PLUS_PLUS] = ACTIONS(534), + [anon_sym_DASH_DASH] = ACTIONS(534), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(534), + [sym_number] = ACTIONS(534), + [sym_private_property_identifier] = ACTIONS(534), + [sym_this] = ACTIONS(536), + [sym_super] = ACTIONS(536), + [sym_true] = ACTIONS(536), + [sym_false] = ACTIONS(536), + [sym_null] = ACTIONS(536), + [sym_undefined] = ACTIONS(536), + [anon_sym_AT] = ACTIONS(534), + [sym_automatic_semicolon] = ACTIONS(542), + [sym_ternary_qmark] = ACTIONS(540), + [sym_html_comment] = ACTIONS(5), }, [71] = { - [sym_declaration] = STATE(342), - [sym_import] = STATE(595), - [sym_variable_declaration] = STATE(341), - [sym_lexical_declaration] = STATE(341), - [sym_parenthesized_expression] = STATE(388), - [sym_expression] = STATE(662), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_class_declaration] = STATE(341), - [sym_function] = STATE(595), - [sym_function_declaration] = STATE(341), - [sym_generator_function] = STATE(595), - [sym_generator_function_declaration] = STATE(341), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_export_statement_repeat1] = STATE(1004), - [sym_identifier] = ACTIONS(364), - [anon_sym_export] = ACTIONS(364), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_import] = ACTIONS(370), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [anon_sym_const] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(364), - [anon_sym_set] = ACTIONS(364), - [anon_sym_async] = ACTIONS(598), - [anon_sym_static] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(310), - [anon_sym_function] = ACTIONS(312), - [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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [ts_builtin_sym_end] = ACTIONS(544), + [sym_identifier] = ACTIONS(546), + [anon_sym_export] = ACTIONS(546), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_SEMI] = ACTIONS(544), + [anon_sym_default] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(544), + [anon_sym_COMMA] = ACTIONS(550), + [anon_sym_RBRACE] = ACTIONS(544), + [anon_sym_import] = ACTIONS(546), + [anon_sym_with] = ACTIONS(546), + [anon_sym_var] = ACTIONS(546), + [anon_sym_let] = ACTIONS(546), + [anon_sym_const] = ACTIONS(546), + [anon_sym_else] = ACTIONS(546), + [anon_sym_if] = ACTIONS(546), + [anon_sym_switch] = ACTIONS(546), + [anon_sym_for] = ACTIONS(546), + [anon_sym_LPAREN] = ACTIONS(544), + [anon_sym_await] = ACTIONS(546), + [anon_sym_get] = ACTIONS(546), + [anon_sym_set] = ACTIONS(546), + [anon_sym_async] = ACTIONS(546), + [anon_sym_static] = ACTIONS(546), + [anon_sym_in] = ACTIONS(548), + [anon_sym_while] = ACTIONS(546), + [anon_sym_do] = ACTIONS(546), + [anon_sym_try] = ACTIONS(546), + [anon_sym_break] = ACTIONS(546), + [anon_sym_continue] = ACTIONS(546), + [anon_sym_debugger] = ACTIONS(546), + [anon_sym_return] = ACTIONS(546), + [anon_sym_throw] = ACTIONS(546), + [anon_sym_case] = ACTIONS(546), + [anon_sym_yield] = ACTIONS(546), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_GT] = ACTIONS(548), + [anon_sym_LT] = ACTIONS(546), + [anon_sym_DOT] = ACTIONS(548), + [anon_sym_DQUOTE] = ACTIONS(544), + [anon_sym_SQUOTE] = ACTIONS(544), + [anon_sym_class] = ACTIONS(546), + [anon_sym_function] = ACTIONS(546), + [sym_optional_chain] = ACTIONS(550), + [anon_sym_new] = ACTIONS(546), + [anon_sym_AMP_AMP] = ACTIONS(550), + [anon_sym_PIPE_PIPE] = ACTIONS(550), + [anon_sym_GT_GT] = ACTIONS(548), + [anon_sym_GT_GT_GT] = ACTIONS(550), + [anon_sym_LT_LT] = ACTIONS(550), + [anon_sym_AMP] = ACTIONS(548), + [anon_sym_CARET] = ACTIONS(550), + [anon_sym_PIPE] = ACTIONS(548), + [anon_sym_PLUS] = ACTIONS(546), + [anon_sym_DASH] = ACTIONS(546), + [anon_sym_SLASH] = ACTIONS(546), + [anon_sym_PERCENT] = ACTIONS(550), + [anon_sym_STAR_STAR] = ACTIONS(550), + [anon_sym_LT_EQ] = ACTIONS(550), + [anon_sym_EQ_EQ] = ACTIONS(548), + [anon_sym_EQ_EQ_EQ] = ACTIONS(550), + [anon_sym_BANG_EQ] = ACTIONS(548), + [anon_sym_BANG_EQ_EQ] = ACTIONS(550), + [anon_sym_GT_EQ] = ACTIONS(550), + [anon_sym_QMARK_QMARK] = ACTIONS(550), + [anon_sym_instanceof] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(546), + [anon_sym_TILDE] = ACTIONS(544), + [anon_sym_typeof] = ACTIONS(546), + [anon_sym_void] = ACTIONS(546), + [anon_sym_delete] = ACTIONS(546), + [anon_sym_PLUS_PLUS] = ACTIONS(544), + [anon_sym_DASH_DASH] = ACTIONS(544), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(544), + [sym_number] = ACTIONS(544), + [sym_private_property_identifier] = ACTIONS(544), + [sym_this] = ACTIONS(546), + [sym_super] = ACTIONS(546), + [sym_true] = ACTIONS(546), + [sym_false] = ACTIONS(546), + [sym_null] = ACTIONS(546), + [sym_undefined] = ACTIONS(546), + [anon_sym_AT] = ACTIONS(544), + [sym_automatic_semicolon] = ACTIONS(552), + [sym_ternary_qmark] = ACTIONS(550), + [sym_html_comment] = ACTIONS(5), }, [72] = { - [sym_declaration] = STATE(331), - [sym_import] = STATE(595), - [sym_variable_declaration] = STATE(341), - [sym_lexical_declaration] = STATE(341), - [sym_parenthesized_expression] = STATE(388), - [sym_expression] = STATE(659), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_class_declaration] = STATE(341), - [sym_function] = STATE(595), - [sym_function_declaration] = STATE(341), - [sym_generator_function] = STATE(595), - [sym_generator_function_declaration] = STATE(341), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_export_statement_repeat1] = STATE(1004), - [sym_identifier] = ACTIONS(364), - [anon_sym_export] = ACTIONS(364), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_import] = ACTIONS(370), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [anon_sym_const] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(364), - [anon_sym_set] = ACTIONS(364), - [anon_sym_async] = ACTIONS(598), - [anon_sym_static] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(310), - [anon_sym_function] = ACTIONS(312), - [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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [ts_builtin_sym_end] = ACTIONS(554), + [sym_identifier] = ACTIONS(556), + [anon_sym_export] = ACTIONS(556), + [anon_sym_STAR] = ACTIONS(558), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_default] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(560), + [anon_sym_RBRACE] = ACTIONS(554), + [anon_sym_import] = ACTIONS(556), + [anon_sym_with] = ACTIONS(556), + [anon_sym_var] = ACTIONS(556), + [anon_sym_let] = ACTIONS(556), + [anon_sym_const] = ACTIONS(556), + [anon_sym_else] = ACTIONS(556), + [anon_sym_if] = ACTIONS(556), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_for] = ACTIONS(556), + [anon_sym_LPAREN] = ACTIONS(554), + [anon_sym_await] = ACTIONS(556), + [anon_sym_get] = ACTIONS(556), + [anon_sym_set] = ACTIONS(556), + [anon_sym_async] = ACTIONS(556), + [anon_sym_static] = ACTIONS(556), + [anon_sym_in] = ACTIONS(558), + [anon_sym_while] = ACTIONS(556), + [anon_sym_do] = ACTIONS(556), + [anon_sym_try] = ACTIONS(556), + [anon_sym_break] = ACTIONS(556), + [anon_sym_continue] = ACTIONS(556), + [anon_sym_debugger] = ACTIONS(556), + [anon_sym_return] = ACTIONS(556), + [anon_sym_throw] = ACTIONS(556), + [anon_sym_case] = ACTIONS(556), + [anon_sym_yield] = ACTIONS(556), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(558), + [anon_sym_LT] = ACTIONS(556), + [anon_sym_DOT] = ACTIONS(558), + [anon_sym_DQUOTE] = ACTIONS(554), + [anon_sym_SQUOTE] = ACTIONS(554), + [anon_sym_class] = ACTIONS(556), + [anon_sym_function] = ACTIONS(556), + [sym_optional_chain] = ACTIONS(560), + [anon_sym_new] = ACTIONS(556), + [anon_sym_AMP_AMP] = ACTIONS(560), + [anon_sym_PIPE_PIPE] = ACTIONS(560), + [anon_sym_GT_GT] = ACTIONS(558), + [anon_sym_GT_GT_GT] = ACTIONS(560), + [anon_sym_LT_LT] = ACTIONS(560), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_CARET] = ACTIONS(560), + [anon_sym_PIPE] = ACTIONS(558), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_SLASH] = ACTIONS(556), + [anon_sym_PERCENT] = ACTIONS(560), + [anon_sym_STAR_STAR] = ACTIONS(560), + [anon_sym_LT_EQ] = ACTIONS(560), + [anon_sym_EQ_EQ] = ACTIONS(558), + [anon_sym_EQ_EQ_EQ] = ACTIONS(560), + [anon_sym_BANG_EQ] = ACTIONS(558), + [anon_sym_BANG_EQ_EQ] = ACTIONS(560), + [anon_sym_GT_EQ] = ACTIONS(560), + [anon_sym_QMARK_QMARK] = ACTIONS(560), + [anon_sym_instanceof] = ACTIONS(558), + [anon_sym_BANG] = ACTIONS(556), + [anon_sym_TILDE] = ACTIONS(554), + [anon_sym_typeof] = ACTIONS(556), + [anon_sym_void] = ACTIONS(556), + [anon_sym_delete] = ACTIONS(556), + [anon_sym_PLUS_PLUS] = ACTIONS(554), + [anon_sym_DASH_DASH] = ACTIONS(554), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(554), + [sym_number] = ACTIONS(554), + [sym_private_property_identifier] = ACTIONS(554), + [sym_this] = ACTIONS(556), + [sym_super] = ACTIONS(556), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_null] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), + [anon_sym_AT] = ACTIONS(554), + [sym_automatic_semicolon] = ACTIONS(562), + [sym_ternary_qmark] = ACTIONS(560), + [sym_html_comment] = ACTIONS(5), }, [73] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(594), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_assignment_pattern] = STATE(1082), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(391), - [sym_subscript_expression] = STATE(391), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(968), - [sym_spread_element] = STATE(1127), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [sym_pattern] = STATE(1008), - [sym_rest_pattern] = STATE(970), - [aux_sym_export_statement_repeat1] = STATE(1020), - [aux_sym_array_repeat1] = STATE(1132), - [aux_sym_array_pattern_repeat1] = STATE(1134), - [sym_identifier] = ACTIONS(574), - [anon_sym_export] = ACTIONS(574), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(576), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(574), - [anon_sym_set] = ACTIONS(574), - [anon_sym_async] = ACTIONS(578), - [anon_sym_static] = ACTIONS(574), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_RBRACK] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_DOT_DOT_DOT] = ACTIONS(105), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(584), - [anon_sym_AT] = ACTIONS(85), + [ts_builtin_sym_end] = ACTIONS(564), + [sym_identifier] = ACTIONS(566), + [anon_sym_export] = ACTIONS(566), + [anon_sym_STAR] = ACTIONS(568), + [anon_sym_SEMI] = ACTIONS(564), + [anon_sym_default] = ACTIONS(566), + [anon_sym_LBRACE] = ACTIONS(564), + [anon_sym_COMMA] = ACTIONS(570), + [anon_sym_RBRACE] = ACTIONS(564), + [anon_sym_import] = ACTIONS(566), + [anon_sym_with] = ACTIONS(566), + [anon_sym_var] = ACTIONS(566), + [anon_sym_let] = ACTIONS(566), + [anon_sym_const] = ACTIONS(566), + [anon_sym_else] = ACTIONS(566), + [anon_sym_if] = ACTIONS(566), + [anon_sym_switch] = ACTIONS(566), + [anon_sym_for] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(564), + [anon_sym_await] = ACTIONS(566), + [anon_sym_get] = ACTIONS(566), + [anon_sym_set] = ACTIONS(566), + [anon_sym_async] = ACTIONS(566), + [anon_sym_static] = ACTIONS(566), + [anon_sym_in] = ACTIONS(568), + [anon_sym_while] = ACTIONS(566), + [anon_sym_do] = ACTIONS(566), + [anon_sym_try] = ACTIONS(566), + [anon_sym_break] = ACTIONS(566), + [anon_sym_continue] = ACTIONS(566), + [anon_sym_debugger] = ACTIONS(566), + [anon_sym_return] = ACTIONS(566), + [anon_sym_throw] = ACTIONS(566), + [anon_sym_case] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(564), + [anon_sym_GT] = ACTIONS(568), + [anon_sym_LT] = ACTIONS(566), + [anon_sym_DOT] = ACTIONS(568), + [anon_sym_DQUOTE] = ACTIONS(564), + [anon_sym_SQUOTE] = ACTIONS(564), + [anon_sym_class] = ACTIONS(566), + [anon_sym_function] = ACTIONS(566), + [sym_optional_chain] = ACTIONS(570), + [anon_sym_new] = ACTIONS(566), + [anon_sym_AMP_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(570), + [anon_sym_GT_GT] = ACTIONS(568), + [anon_sym_GT_GT_GT] = ACTIONS(570), + [anon_sym_LT_LT] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(568), + [anon_sym_CARET] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(568), + [anon_sym_PLUS] = ACTIONS(566), + [anon_sym_DASH] = ACTIONS(566), + [anon_sym_SLASH] = ACTIONS(566), + [anon_sym_PERCENT] = ACTIONS(570), + [anon_sym_STAR_STAR] = ACTIONS(570), + [anon_sym_LT_EQ] = ACTIONS(570), + [anon_sym_EQ_EQ] = ACTIONS(568), + [anon_sym_EQ_EQ_EQ] = ACTIONS(570), + [anon_sym_BANG_EQ] = ACTIONS(568), + [anon_sym_BANG_EQ_EQ] = ACTIONS(570), + [anon_sym_GT_EQ] = ACTIONS(570), + [anon_sym_QMARK_QMARK] = ACTIONS(570), + [anon_sym_instanceof] = ACTIONS(568), + [anon_sym_BANG] = ACTIONS(566), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_typeof] = ACTIONS(566), + [anon_sym_void] = ACTIONS(566), + [anon_sym_delete] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(564), + [anon_sym_DASH_DASH] = ACTIONS(564), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(564), + [sym_number] = ACTIONS(564), + [sym_private_property_identifier] = ACTIONS(564), + [sym_this] = ACTIONS(566), + [sym_super] = ACTIONS(566), + [sym_true] = ACTIONS(566), + [sym_false] = ACTIONS(566), + [sym_null] = ACTIONS(566), + [sym_undefined] = ACTIONS(566), + [anon_sym_AT] = ACTIONS(564), + [sym_automatic_semicolon] = ACTIONS(572), + [sym_ternary_qmark] = ACTIONS(570), + [sym_html_comment] = ACTIONS(5), }, [74] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(579), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_assignment_pattern] = STATE(1082), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(391), - [sym_subscript_expression] = STATE(391), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(968), - [sym_spread_element] = STATE(1083), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [sym_pattern] = STATE(1008), - [sym_rest_pattern] = STATE(970), - [aux_sym_export_statement_repeat1] = STATE(1020), - [aux_sym_array_repeat1] = STATE(1131), - [aux_sym_array_pattern_repeat1] = STATE(1134), - [sym_identifier] = ACTIONS(574), - [anon_sym_export] = ACTIONS(574), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(576), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(574), - [anon_sym_set] = ACTIONS(574), - [anon_sym_async] = ACTIONS(578), - [anon_sym_static] = ACTIONS(574), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_RBRACK] = ACTIONS(580), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_DOT_DOT_DOT] = ACTIONS(105), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(584), - [anon_sym_AT] = ACTIONS(85), + [ts_builtin_sym_end] = ACTIONS(574), + [sym_identifier] = ACTIONS(576), + [anon_sym_export] = ACTIONS(576), + [anon_sym_STAR] = ACTIONS(578), + [anon_sym_SEMI] = ACTIONS(574), + [anon_sym_default] = ACTIONS(576), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_COMMA] = ACTIONS(580), + [anon_sym_RBRACE] = ACTIONS(574), + [anon_sym_import] = ACTIONS(576), + [anon_sym_with] = ACTIONS(576), + [anon_sym_var] = ACTIONS(576), + [anon_sym_let] = ACTIONS(576), + [anon_sym_const] = ACTIONS(576), + [anon_sym_else] = ACTIONS(576), + [anon_sym_if] = ACTIONS(576), + [anon_sym_switch] = ACTIONS(576), + [anon_sym_for] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(574), + [anon_sym_await] = ACTIONS(576), + [anon_sym_get] = ACTIONS(576), + [anon_sym_set] = ACTIONS(576), + [anon_sym_async] = ACTIONS(576), + [anon_sym_static] = ACTIONS(576), + [anon_sym_in] = ACTIONS(578), + [anon_sym_while] = ACTIONS(576), + [anon_sym_do] = ACTIONS(576), + [anon_sym_try] = ACTIONS(576), + [anon_sym_break] = ACTIONS(576), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_debugger] = ACTIONS(576), + [anon_sym_return] = ACTIONS(576), + [anon_sym_throw] = ACTIONS(576), + [anon_sym_case] = ACTIONS(576), + [anon_sym_yield] = ACTIONS(576), + [anon_sym_LBRACK] = ACTIONS(574), + [anon_sym_GT] = ACTIONS(578), + [anon_sym_LT] = ACTIONS(576), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_DQUOTE] = ACTIONS(574), + [anon_sym_SQUOTE] = ACTIONS(574), + [anon_sym_class] = ACTIONS(576), + [anon_sym_function] = ACTIONS(576), + [sym_optional_chain] = ACTIONS(580), + [anon_sym_new] = ACTIONS(576), + [anon_sym_AMP_AMP] = ACTIONS(580), + [anon_sym_PIPE_PIPE] = ACTIONS(580), + [anon_sym_GT_GT] = ACTIONS(578), + [anon_sym_GT_GT_GT] = ACTIONS(580), + [anon_sym_LT_LT] = ACTIONS(580), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_CARET] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(576), + [anon_sym_DASH] = ACTIONS(576), + [anon_sym_SLASH] = ACTIONS(576), + [anon_sym_PERCENT] = ACTIONS(580), + [anon_sym_STAR_STAR] = ACTIONS(580), + [anon_sym_LT_EQ] = ACTIONS(580), + [anon_sym_EQ_EQ] = ACTIONS(578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(580), + [anon_sym_BANG_EQ] = ACTIONS(578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(580), + [anon_sym_GT_EQ] = ACTIONS(580), + [anon_sym_QMARK_QMARK] = ACTIONS(580), + [anon_sym_instanceof] = ACTIONS(578), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(574), + [anon_sym_typeof] = ACTIONS(576), + [anon_sym_void] = ACTIONS(576), + [anon_sym_delete] = ACTIONS(576), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_DASH_DASH] = ACTIONS(574), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(574), + [sym_number] = ACTIONS(574), + [sym_private_property_identifier] = ACTIONS(574), + [sym_this] = ACTIONS(576), + [sym_super] = ACTIONS(576), + [sym_true] = ACTIONS(576), + [sym_false] = ACTIONS(576), + [sym_null] = ACTIONS(576), + [sym_undefined] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(574), + [sym_automatic_semicolon] = ACTIONS(582), + [sym_ternary_qmark] = ACTIONS(580), + [sym_html_comment] = ACTIONS(5), }, [75] = { - [sym_import] = STATE(595), - [sym_expression_statement] = STATE(94), - [sym_variable_declaration] = STATE(94), - [sym_lexical_declaration] = STATE(94), - [sym_empty_statement] = STATE(94), - [sym_parenthesized_expression] = STATE(390), - [sym_expression] = STATE(600), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_function] = STATE(595), - [sym_generator_function] = STATE(595), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(390), - [sym_subscript_expression] = STATE(390), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1079), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_sequence_expression] = STATE(1227), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_export_statement_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(560), - [anon_sym_export] = ACTIONS(560), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_import] = ACTIONS(370), - [anon_sym_var] = ACTIONS(564), - [anon_sym_let] = ACTIONS(566), - [anon_sym_const] = ACTIONS(566), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(560), - [anon_sym_set] = ACTIONS(560), - [anon_sym_async] = ACTIONS(568), - [anon_sym_static] = ACTIONS(560), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(376), - [anon_sym_function] = ACTIONS(378), - [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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(85), + [ts_builtin_sym_end] = ACTIONS(584), + [sym_identifier] = ACTIONS(586), + [anon_sym_export] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(588), + [anon_sym_SEMI] = ACTIONS(584), + [anon_sym_default] = ACTIONS(586), + [anon_sym_LBRACE] = ACTIONS(584), + [anon_sym_COMMA] = ACTIONS(590), + [anon_sym_RBRACE] = ACTIONS(584), + [anon_sym_import] = ACTIONS(586), + [anon_sym_with] = ACTIONS(586), + [anon_sym_var] = ACTIONS(586), + [anon_sym_let] = ACTIONS(586), + [anon_sym_const] = ACTIONS(586), + [anon_sym_else] = ACTIONS(586), + [anon_sym_if] = ACTIONS(586), + [anon_sym_switch] = ACTIONS(586), + [anon_sym_for] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(584), + [anon_sym_await] = ACTIONS(586), + [anon_sym_get] = ACTIONS(586), + [anon_sym_set] = ACTIONS(586), + [anon_sym_async] = ACTIONS(586), + [anon_sym_static] = ACTIONS(586), + [anon_sym_in] = ACTIONS(588), + [anon_sym_while] = ACTIONS(586), + [anon_sym_do] = ACTIONS(586), + [anon_sym_try] = ACTIONS(586), + [anon_sym_break] = ACTIONS(586), + [anon_sym_continue] = ACTIONS(586), + [anon_sym_debugger] = ACTIONS(586), + [anon_sym_return] = ACTIONS(586), + [anon_sym_throw] = ACTIONS(586), + [anon_sym_case] = ACTIONS(586), + [anon_sym_yield] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(584), + [anon_sym_GT] = ACTIONS(588), + [anon_sym_LT] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(584), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_class] = ACTIONS(586), + [anon_sym_function] = ACTIONS(586), + [sym_optional_chain] = ACTIONS(590), + [anon_sym_new] = ACTIONS(586), + [anon_sym_AMP_AMP] = ACTIONS(590), + [anon_sym_PIPE_PIPE] = ACTIONS(590), + [anon_sym_GT_GT] = ACTIONS(588), + [anon_sym_GT_GT_GT] = ACTIONS(590), + [anon_sym_LT_LT] = ACTIONS(590), + [anon_sym_AMP] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(590), + [anon_sym_PIPE] = ACTIONS(588), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_PERCENT] = ACTIONS(590), + [anon_sym_STAR_STAR] = ACTIONS(590), + [anon_sym_LT_EQ] = ACTIONS(590), + [anon_sym_EQ_EQ] = ACTIONS(588), + [anon_sym_EQ_EQ_EQ] = ACTIONS(590), + [anon_sym_BANG_EQ] = ACTIONS(588), + [anon_sym_BANG_EQ_EQ] = ACTIONS(590), + [anon_sym_GT_EQ] = ACTIONS(590), + [anon_sym_QMARK_QMARK] = ACTIONS(590), + [anon_sym_instanceof] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(586), + [anon_sym_TILDE] = ACTIONS(584), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(584), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(584), + [sym_number] = ACTIONS(584), + [sym_private_property_identifier] = ACTIONS(584), + [sym_this] = ACTIONS(586), + [sym_super] = ACTIONS(586), + [sym_true] = ACTIONS(586), + [sym_false] = ACTIONS(586), + [sym_null] = ACTIONS(586), + [sym_undefined] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(584), + [sym_automatic_semicolon] = ACTIONS(592), + [sym_ternary_qmark] = ACTIONS(590), + [sym_html_comment] = ACTIONS(5), }, [76] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(711), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_assignment_pattern] = STATE(1082), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(403), - [sym_subscript_expression] = STATE(403), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(968), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [sym_pattern] = STATE(1008), - [sym_rest_pattern] = STATE(970), - [aux_sym_export_statement_repeat1] = STATE(1020), - [aux_sym_array_pattern_repeat1] = STATE(1134), - [sym_identifier] = ACTIONS(602), - [anon_sym_export] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_COMMA] = ACTIONS(606), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(602), - [anon_sym_set] = ACTIONS(602), - [anon_sym_async] = ACTIONS(608), - [anon_sym_static] = ACTIONS(602), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(610), - [anon_sym_RBRACK] = ACTIONS(612), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_DOT_DOT_DOT] = ACTIONS(614), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(616), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(725), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_assignment_pattern] = STATE(1286), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(435), + [sym_subscript_expression] = STATE(435), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1084), + [sym_spread_element] = STATE(1290), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [sym_pattern] = STATE(1154), + [sym_rest_pattern] = STATE(1116), + [aux_sym_export_statement_repeat1] = STATE(1186), + [aux_sym_array_repeat1] = STATE(1288), + [aux_sym_array_pattern_repeat1] = STATE(1261), + [sym_identifier] = ACTIONS(594), + [anon_sym_export] = ACTIONS(594), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_COMMA] = ACTIONS(596), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(594), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(594), + [anon_sym_set] = ACTIONS(594), + [anon_sym_async] = ACTIONS(598), + [anon_sym_static] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_RBRACK] = ACTIONS(600), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(604), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [77] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(364), - [sym_expression] = STATE(722), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_assignment_pattern] = STATE(1082), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(389), - [sym_subscript_expression] = STATE(389), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(833), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(959), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1388), - [sym_pattern] = STATE(1008), - [sym_rest_pattern] = STATE(970), - [aux_sym_export_statement_repeat1] = STATE(1020), - [aux_sym_array_pattern_repeat1] = STATE(1134), - [sym_identifier] = ACTIONS(618), - [anon_sym_export] = ACTIONS(618), - [anon_sym_LBRACE] = ACTIONS(620), - [anon_sym_COMMA] = ACTIONS(606), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(432), - [anon_sym_get] = ACTIONS(618), - [anon_sym_set] = ACTIONS(618), - [anon_sym_async] = ACTIONS(622), - [anon_sym_static] = ACTIONS(618), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(624), - [anon_sym_RBRACK] = ACTIONS(612), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(438), - [anon_sym_DOT_DOT_DOT] = ACTIONS(614), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_BANG] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(442), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(444), - [anon_sym_DASH_DASH] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(626), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(738), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_assignment_pattern] = STATE(1286), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(435), + [sym_subscript_expression] = STATE(435), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1084), + [sym_spread_element] = STATE(1284), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [sym_pattern] = STATE(1154), + [sym_rest_pattern] = STATE(1116), + [aux_sym_export_statement_repeat1] = STATE(1186), + [aux_sym_array_repeat1] = STATE(1265), + [aux_sym_array_pattern_repeat1] = STATE(1261), + [sym_identifier] = ACTIONS(594), + [anon_sym_export] = ACTIONS(594), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_COMMA] = ACTIONS(596), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(594), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(594), + [anon_sym_set] = ACTIONS(594), + [anon_sym_async] = ACTIONS(598), + [anon_sym_static] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_RBRACK] = ACTIONS(606), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(604), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [78] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(364), - [sym_expression] = STATE(722), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_assignment_pattern] = STATE(1125), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(389), - [sym_subscript_expression] = STATE(389), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(833), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(959), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1388), - [sym_pattern] = STATE(1063), - [sym_rest_pattern] = STATE(970), - [aux_sym_export_statement_repeat1] = STATE(1020), - [aux_sym_array_pattern_repeat1] = STATE(1133), - [sym_identifier] = ACTIONS(618), - [anon_sym_export] = ACTIONS(618), - [anon_sym_LBRACE] = ACTIONS(620), - [anon_sym_COMMA] = ACTIONS(606), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(432), - [anon_sym_get] = ACTIONS(618), - [anon_sym_set] = ACTIONS(618), - [anon_sym_async] = ACTIONS(622), - [anon_sym_static] = ACTIONS(618), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(624), - [anon_sym_RBRACK] = ACTIONS(628), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(438), - [anon_sym_DOT_DOT_DOT] = ACTIONS(614), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_BANG] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(442), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(444), - [anon_sym_DASH_DASH] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(626), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(736), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_assignment_pattern] = STATE(1286), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(435), + [sym_subscript_expression] = STATE(435), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1084), + [sym_spread_element] = STATE(1284), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [sym_pattern] = STATE(1154), + [sym_rest_pattern] = STATE(1116), + [aux_sym_export_statement_repeat1] = STATE(1186), + [aux_sym_array_repeat1] = STATE(1265), + [aux_sym_array_pattern_repeat1] = STATE(1261), + [sym_identifier] = ACTIONS(594), + [anon_sym_export] = ACTIONS(594), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_COMMA] = ACTIONS(596), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(594), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(594), + [anon_sym_set] = ACTIONS(594), + [anon_sym_async] = ACTIONS(598), + [anon_sym_static] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_RBRACK] = ACTIONS(606), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(604), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [79] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(606), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_assignment_pattern] = STATE(1208), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(391), - [sym_subscript_expression] = STATE(391), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(968), - [sym_spread_element] = STATE(1109), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [sym_pattern] = STATE(1110), - [sym_rest_pattern] = STATE(970), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(574), - [anon_sym_export] = ACTIONS(574), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(630), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(574), - [anon_sym_set] = ACTIONS(574), - [anon_sym_async] = ACTIONS(578), - [anon_sym_static] = ACTIONS(574), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_RBRACK] = ACTIONS(630), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_DOT_DOT_DOT] = ACTIONS(105), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(584), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(725), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_assignment_pattern] = STATE(1286), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(435), + [sym_subscript_expression] = STATE(435), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1084), + [sym_spread_element] = STATE(1290), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [sym_pattern] = STATE(1154), + [sym_rest_pattern] = STATE(1116), + [aux_sym_export_statement_repeat1] = STATE(1186), + [aux_sym_array_repeat1] = STATE(1288), + [aux_sym_array_pattern_repeat1] = STATE(1261), + [sym_identifier] = ACTIONS(594), + [anon_sym_export] = ACTIONS(594), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_COMMA] = ACTIONS(596), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(594), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(594), + [anon_sym_set] = ACTIONS(594), + [anon_sym_async] = ACTIONS(598), + [anon_sym_static] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_RBRACK] = ACTIONS(608), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(604), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [80] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(643), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_assignment_pattern] = STATE(1097), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(391), - [sym_subscript_expression] = STATE(391), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(968), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_sequence_expression] = STATE(1391), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [sym_pattern] = STATE(1013), - [sym_rest_pattern] = STATE(970), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(574), - [anon_sym_export] = ACTIONS(574), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_RPAREN] = ACTIONS(633), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(574), - [anon_sym_set] = ACTIONS(574), - [anon_sym_async] = ACTIONS(578), - [anon_sym_static] = ACTIONS(574), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_DOT_DOT_DOT] = ACTIONS(614), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(584), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(725), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_assignment_pattern] = STATE(1286), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(435), + [sym_subscript_expression] = STATE(435), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1084), + [sym_spread_element] = STATE(1290), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [sym_pattern] = STATE(1154), + [sym_rest_pattern] = STATE(1116), + [aux_sym_export_statement_repeat1] = STATE(1186), + [aux_sym_array_repeat1] = STATE(1288), + [aux_sym_array_pattern_repeat1] = STATE(1261), + [sym_identifier] = ACTIONS(594), + [anon_sym_export] = ACTIONS(594), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_COMMA] = ACTIONS(596), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(594), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(594), + [anon_sym_set] = ACTIONS(594), + [anon_sym_async] = ACTIONS(598), + [anon_sym_static] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_RBRACK] = ACTIONS(610), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(604), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [81] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(364), - [sym_expression] = STATE(722), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_assignment_pattern] = STATE(1208), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(389), - [sym_subscript_expression] = STATE(389), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(833), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(959), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1388), - [sym_pattern] = STATE(1110), - [sym_rest_pattern] = STATE(970), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(618), - [anon_sym_export] = ACTIONS(618), - [anon_sym_LBRACE] = ACTIONS(620), - [anon_sym_COMMA] = ACTIONS(635), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(432), - [anon_sym_get] = ACTIONS(618), - [anon_sym_set] = ACTIONS(618), - [anon_sym_async] = ACTIONS(622), - [anon_sym_static] = ACTIONS(618), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(624), - [anon_sym_RBRACK] = ACTIONS(635), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(438), - [anon_sym_DOT_DOT_DOT] = ACTIONS(614), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_BANG] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(442), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(444), - [anon_sym_DASH_DASH] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(626), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(725), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_assignment_pattern] = STATE(1286), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(435), + [sym_subscript_expression] = STATE(435), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1084), + [sym_spread_element] = STATE(1290), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [sym_pattern] = STATE(1154), + [sym_rest_pattern] = STATE(1116), + [aux_sym_export_statement_repeat1] = STATE(1186), + [aux_sym_array_repeat1] = STATE(1288), + [aux_sym_array_pattern_repeat1] = STATE(1261), + [sym_identifier] = ACTIONS(594), + [anon_sym_export] = ACTIONS(594), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_COMMA] = ACTIONS(596), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(594), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(594), + [anon_sym_set] = ACTIONS(594), + [anon_sym_async] = ACTIONS(598), + [anon_sym_static] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_RBRACK] = ACTIONS(612), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(604), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [82] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(682), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_assignment_pattern] = STATE(1097), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(391), - [sym_subscript_expression] = STATE(391), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(968), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_sequence_expression] = STATE(1432), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [sym_pattern] = STATE(1013), - [sym_rest_pattern] = STATE(970), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(574), - [anon_sym_export] = ACTIONS(574), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_RPAREN] = ACTIONS(633), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(574), - [anon_sym_set] = ACTIONS(574), - [anon_sym_async] = ACTIONS(578), - [anon_sym_static] = ACTIONS(574), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_DOT_DOT_DOT] = ACTIONS(614), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(584), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(725), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_assignment_pattern] = STATE(1286), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(435), + [sym_subscript_expression] = STATE(435), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1084), + [sym_spread_element] = STATE(1290), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [sym_pattern] = STATE(1154), + [sym_rest_pattern] = STATE(1116), + [aux_sym_export_statement_repeat1] = STATE(1186), + [aux_sym_array_repeat1] = STATE(1288), + [aux_sym_array_pattern_repeat1] = STATE(1261), + [sym_identifier] = ACTIONS(594), + [anon_sym_export] = ACTIONS(594), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_COMMA] = ACTIONS(596), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(594), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(594), + [anon_sym_set] = ACTIONS(594), + [anon_sym_async] = ACTIONS(598), + [anon_sym_static] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_RBRACK] = ACTIONS(614), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(604), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [83] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(602), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1386), - [sym_spread_element] = STATE(1093), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [aux_sym_export_statement_repeat1] = STATE(1020), - [aux_sym_array_repeat1] = STATE(1094), - [sym_identifier] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_LBRACE] = ACTIONS(318), - [anon_sym_COMMA] = ACTIONS(637), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_RPAREN] = ACTIONS(639), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(314), - [anon_sym_set] = ACTIONS(314), - [anon_sym_async] = ACTIONS(328), - [anon_sym_static] = ACTIONS(314), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(334), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_DOT_DOT_DOT] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(362), - [anon_sym_AT] = ACTIONS(85), + [sym_declaration] = STATE(376), + [sym_import] = STATE(1156), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(758), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_class_declaration] = STATE(346), + [sym_function_expression] = STATE(609), + [sym_function_declaration] = STATE(346), + [sym_generator_function] = STATE(609), + [sym_generator_function_declaration] = STATE(346), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1196), + [sym_identifier] = ACTIONS(426), + [anon_sym_export] = ACTIONS(426), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_import] = ACTIONS(398), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(616), + [anon_sym_const] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(426), + [anon_sym_set] = ACTIONS(426), + [anon_sym_async] = ACTIONS(618), + [anon_sym_static] = ACTIONS(426), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(336), + [anon_sym_function] = ACTIONS(338), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [84] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(364), - [sym_expression] = STATE(722), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_assignment_pattern] = STATE(1269), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(389), - [sym_subscript_expression] = STATE(389), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(833), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(959), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1388), - [sym_pattern] = STATE(1148), - [sym_rest_pattern] = STATE(970), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(618), - [anon_sym_export] = ACTIONS(618), - [anon_sym_LBRACE] = ACTIONS(620), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_RPAREN] = ACTIONS(643), - [anon_sym_await] = ACTIONS(432), - [anon_sym_get] = ACTIONS(618), - [anon_sym_set] = ACTIONS(618), - [anon_sym_async] = ACTIONS(622), - [anon_sym_static] = ACTIONS(618), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(624), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(438), - [anon_sym_DOT_DOT_DOT] = ACTIONS(614), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_BANG] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(442), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(444), - [anon_sym_DASH_DASH] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(626), - [anon_sym_AT] = ACTIONS(85), + [sym_declaration] = STATE(356), + [sym_import] = STATE(1156), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(771), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_class_declaration] = STATE(346), + [sym_function_expression] = STATE(609), + [sym_function_declaration] = STATE(346), + [sym_generator_function] = STATE(609), + [sym_generator_function_declaration] = STATE(346), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1196), + [sym_identifier] = ACTIONS(426), + [anon_sym_export] = ACTIONS(426), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_import] = ACTIONS(398), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(616), + [anon_sym_const] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(426), + [anon_sym_set] = ACTIONS(426), + [anon_sym_async] = ACTIONS(618), + [anon_sym_static] = ACTIONS(426), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(336), + [anon_sym_function] = ACTIONS(338), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [85] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(596), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1386), - [sym_spread_element] = STATE(1156), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [aux_sym_export_statement_repeat1] = STATE(1020), - [aux_sym_array_repeat1] = STATE(1158), - [sym_identifier] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_LBRACE] = ACTIONS(318), - [anon_sym_COMMA] = ACTIONS(637), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_RPAREN] = ACTIONS(645), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(314), - [anon_sym_set] = ACTIONS(314), - [anon_sym_async] = ACTIONS(328), - [anon_sym_static] = ACTIONS(314), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(334), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_DOT_DOT_DOT] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(362), - [anon_sym_AT] = ACTIONS(85), + [sym_declaration] = STATE(356), + [sym_import] = STATE(1156), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(771), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_class_declaration] = STATE(346), + [sym_function_expression] = STATE(609), + [sym_function_declaration] = STATE(346), + [sym_generator_function] = STATE(609), + [sym_generator_function_declaration] = STATE(346), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1176), + [sym_identifier] = ACTIONS(426), + [anon_sym_export] = ACTIONS(426), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_import] = ACTIONS(398), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(616), + [anon_sym_const] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(426), + [anon_sym_set] = ACTIONS(426), + [anon_sym_async] = ACTIONS(620), + [anon_sym_static] = ACTIONS(426), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [86] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(364), - [sym_expression] = STATE(722), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_assignment_pattern] = STATE(1269), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(389), - [sym_subscript_expression] = STATE(389), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(833), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(959), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1388), - [sym_pattern] = STATE(1148), - [sym_rest_pattern] = STATE(970), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(618), - [anon_sym_export] = ACTIONS(618), - [anon_sym_LBRACE] = ACTIONS(620), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_RPAREN] = ACTIONS(647), - [anon_sym_await] = ACTIONS(432), - [anon_sym_get] = ACTIONS(618), - [anon_sym_set] = ACTIONS(618), - [anon_sym_async] = ACTIONS(622), - [anon_sym_static] = ACTIONS(618), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(624), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(438), - [anon_sym_DOT_DOT_DOT] = ACTIONS(614), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_BANG] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(442), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(444), - [anon_sym_DASH_DASH] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(626), - [anon_sym_AT] = ACTIONS(85), + [sym_declaration] = STATE(376), + [sym_import] = STATE(1156), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(758), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_class_declaration] = STATE(346), + [sym_function_expression] = STATE(609), + [sym_function_declaration] = STATE(346), + [sym_generator_function] = STATE(609), + [sym_generator_function_declaration] = STATE(346), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1176), + [sym_identifier] = ACTIONS(426), + [anon_sym_export] = ACTIONS(426), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_import] = ACTIONS(398), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(616), + [anon_sym_const] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(426), + [anon_sym_set] = ACTIONS(426), + [anon_sym_async] = ACTIONS(620), + [anon_sym_static] = ACTIONS(426), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [87] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(606), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1386), - [sym_spread_element] = STATE(1109), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_LBRACE] = ACTIONS(318), - [anon_sym_COMMA] = ACTIONS(649), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_RPAREN] = ACTIONS(649), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(314), - [anon_sym_set] = ACTIONS(314), - [anon_sym_async] = ACTIONS(328), - [anon_sym_static] = ACTIONS(314), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(334), - [anon_sym_RBRACK] = ACTIONS(649), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_DOT_DOT_DOT] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(362), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(685), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_assignment_pattern] = STATE(1451), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(435), + [sym_subscript_expression] = STATE(435), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1084), + [sym_spread_element] = STATE(1233), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [sym_pattern] = STATE(1211), + [sym_rest_pattern] = STATE(1116), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(594), + [anon_sym_export] = ACTIONS(594), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_COMMA] = ACTIONS(622), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(594), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(594), + [anon_sym_set] = ACTIONS(594), + [anon_sym_async] = ACTIONS(598), + [anon_sym_static] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_RBRACK] = ACTIONS(622), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(604), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [88] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(364), - [sym_expression] = STATE(722), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_assignment_pattern] = STATE(1097), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(389), - [sym_subscript_expression] = STATE(389), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(833), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(959), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1388), - [sym_pattern] = STATE(1013), - [sym_rest_pattern] = STATE(970), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(618), - [anon_sym_export] = ACTIONS(618), - [anon_sym_LBRACE] = ACTIONS(620), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_RPAREN] = ACTIONS(633), - [anon_sym_await] = ACTIONS(432), - [anon_sym_get] = ACTIONS(618), - [anon_sym_set] = ACTIONS(618), - [anon_sym_async] = ACTIONS(622), - [anon_sym_static] = ACTIONS(618), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(624), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(438), - [anon_sym_DOT_DOT_DOT] = ACTIONS(614), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_BANG] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(442), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(444), - [anon_sym_DASH_DASH] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(626), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_variable_declaration] = STATE(111), + [sym_lexical_declaration] = STATE(111), + [sym_empty_statement] = STATE(111), + [sym_parenthesized_expression] = STATE(438), + [sym_expression] = STATE(727), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(438), + [sym_subscript_expression] = STATE(438), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1225), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_sequence_expression] = STATE(1640), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(625), + [anon_sym_export] = ACTIONS(625), + [anon_sym_SEMI] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_import] = ACTIONS(348), + [anon_sym_var] = ACTIONS(629), + [anon_sym_let] = ACTIONS(631), + [anon_sym_const] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(625), + [anon_sym_set] = ACTIONS(625), + [anon_sym_async] = ACTIONS(635), + [anon_sym_static] = ACTIONS(625), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(637), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(639), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [89] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(631), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1386), - [sym_spread_element] = STATE(1165), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [aux_sym_export_statement_repeat1] = STATE(1020), - [aux_sym_array_repeat1] = STATE(1166), - [sym_identifier] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_LBRACE] = ACTIONS(318), - [anon_sym_COMMA] = ACTIONS(637), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_RPAREN] = ACTIONS(651), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(314), - [anon_sym_set] = ACTIONS(314), - [anon_sym_async] = ACTIONS(328), - [anon_sym_static] = ACTIONS(314), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(334), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_DOT_DOT_DOT] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(362), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_variable_declaration] = STATE(108), + [sym_lexical_declaration] = STATE(108), + [sym_empty_statement] = STATE(108), + [sym_parenthesized_expression] = STATE(438), + [sym_expression] = STATE(699), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(438), + [sym_subscript_expression] = STATE(438), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1225), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_sequence_expression] = STATE(1561), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(625), + [anon_sym_export] = ACTIONS(625), + [anon_sym_SEMI] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_import] = ACTIONS(348), + [anon_sym_var] = ACTIONS(629), + [anon_sym_let] = ACTIONS(631), + [anon_sym_const] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(625), + [anon_sym_set] = ACTIONS(625), + [anon_sym_async] = ACTIONS(635), + [anon_sym_static] = ACTIONS(625), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(637), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(639), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [90] = { - [sym_import] = STATE(595), - [sym_expression_statement] = STATE(103), - [sym_empty_statement] = STATE(103), - [sym_parenthesized_expression] = STATE(388), - [sym_expression] = STATE(600), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_function] = STATE(595), - [sym_generator_function] = STATE(595), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_sequence_expression] = STATE(1227), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_export_statement_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(364), - [anon_sym_export] = ACTIONS(364), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_import] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(364), - [anon_sym_set] = ACTIONS(364), - [anon_sym_async] = ACTIONS(372), - [anon_sym_static] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(376), - [anon_sym_function] = ACTIONS(378), - [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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(403), + [sym_expression] = STATE(786), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_assignment_pattern] = STATE(1291), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(939), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1123), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1635), + [sym_pattern] = STATE(1142), + [sym_rest_pattern] = STATE(1116), + [aux_sym_export_statement_repeat1] = STATE(1186), + [aux_sym_array_pattern_repeat1] = STATE(1282), + [sym_identifier] = ACTIONS(641), + [anon_sym_export] = ACTIONS(641), + [anon_sym_LBRACE] = ACTIONS(643), + [anon_sym_COMMA] = ACTIONS(645), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(641), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(464), + [anon_sym_get] = ACTIONS(641), + [anon_sym_set] = ACTIONS(641), + [anon_sym_async] = ACTIONS(647), + [anon_sym_static] = ACTIONS(641), + [anon_sym_yield] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_RBRACK] = ACTIONS(651), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(470), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(655), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [91] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(651), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1386), - [sym_spread_element] = STATE(1421), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_sequence_expression] = STATE(1421), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_LBRACE] = ACTIONS(318), - [anon_sym_RBRACE] = ACTIONS(653), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(314), - [anon_sym_set] = ACTIONS(314), - [anon_sym_async] = ACTIONS(328), - [anon_sym_static] = ACTIONS(314), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(334), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_DOT_DOT_DOT] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(362), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(403), + [sym_expression] = STATE(786), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_assignment_pattern] = STATE(1286), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(939), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1123), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1635), + [sym_pattern] = STATE(1154), + [sym_rest_pattern] = STATE(1116), + [aux_sym_export_statement_repeat1] = STATE(1186), + [aux_sym_array_pattern_repeat1] = STATE(1261), + [sym_identifier] = ACTIONS(641), + [anon_sym_export] = ACTIONS(641), + [anon_sym_LBRACE] = ACTIONS(643), + [anon_sym_COMMA] = ACTIONS(645), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(641), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(464), + [anon_sym_get] = ACTIONS(641), + [anon_sym_set] = ACTIONS(641), + [anon_sym_async] = ACTIONS(647), + [anon_sym_static] = ACTIONS(641), + [anon_sym_yield] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_RBRACK] = ACTIONS(657), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(470), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(655), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [92] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(646), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1386), - [sym_spread_element] = STATE(1380), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_sequence_expression] = STATE(1380), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_LBRACE] = ACTIONS(318), - [anon_sym_RBRACE] = ACTIONS(655), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(314), - [anon_sym_set] = ACTIONS(314), - [anon_sym_async] = ACTIONS(328), - [anon_sym_static] = ACTIONS(314), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(334), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_DOT_DOT_DOT] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(362), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(776), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_assignment_pattern] = STATE(1286), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(442), + [sym_subscript_expression] = STATE(442), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1084), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [sym_pattern] = STATE(1154), + [sym_rest_pattern] = STATE(1116), + [aux_sym_export_statement_repeat1] = STATE(1186), + [aux_sym_array_pattern_repeat1] = STATE(1261), + [sym_identifier] = ACTIONS(659), + [anon_sym_export] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(661), + [anon_sym_COMMA] = ACTIONS(645), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(659), + [anon_sym_set] = ACTIONS(659), + [anon_sym_async] = ACTIONS(663), + [anon_sym_static] = ACTIONS(659), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(665), + [anon_sym_RBRACK] = ACTIONS(657), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [93] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(364), - [sym_expression] = STATE(722), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_assignment_pattern] = STATE(1269), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(389), - [sym_subscript_expression] = STATE(389), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(833), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(959), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1388), - [sym_pattern] = STATE(1148), - [sym_rest_pattern] = STATE(970), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(618), - [anon_sym_export] = ACTIONS(618), - [anon_sym_LBRACE] = ACTIONS(620), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(432), - [anon_sym_get] = ACTIONS(618), - [anon_sym_set] = ACTIONS(618), - [anon_sym_async] = ACTIONS(622), - [anon_sym_static] = ACTIONS(618), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(624), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(438), - [anon_sym_DOT_DOT_DOT] = ACTIONS(614), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_BANG] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(442), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(444), - [anon_sym_DASH_DASH] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(626), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(735), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_assignment_pattern] = STATE(1216), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(435), + [sym_subscript_expression] = STATE(435), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1084), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_sequence_expression] = STATE(1631), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [sym_pattern] = STATE(1128), + [sym_rest_pattern] = STATE(1116), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(594), + [anon_sym_export] = ACTIONS(594), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(594), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_RPAREN] = ACTIONS(669), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(594), + [anon_sym_set] = ACTIONS(594), + [anon_sym_async] = ACTIONS(598), + [anon_sym_static] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(604), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [94] = { - [sym_import] = STATE(595), - [sym_expression_statement] = STATE(99), - [sym_empty_statement] = STATE(99), - [sym_parenthesized_expression] = STATE(388), - [sym_expression] = STATE(600), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_function] = STATE(595), - [sym_generator_function] = STATE(595), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_sequence_expression] = STATE(1227), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_export_statement_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(364), - [anon_sym_export] = ACTIONS(364), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_import] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(364), - [anon_sym_set] = ACTIONS(364), - [anon_sym_async] = ACTIONS(372), - [anon_sym_static] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(376), - [anon_sym_function] = ACTIONS(378), - [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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(734), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_assignment_pattern] = STATE(1216), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(435), + [sym_subscript_expression] = STATE(435), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1084), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_sequence_expression] = STATE(1615), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [sym_pattern] = STATE(1128), + [sym_rest_pattern] = STATE(1116), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(594), + [anon_sym_export] = ACTIONS(594), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(594), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_RPAREN] = ACTIONS(669), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(594), + [anon_sym_set] = ACTIONS(594), + [anon_sym_async] = ACTIONS(598), + [anon_sym_static] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(604), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [95] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(364), - [sym_expression] = STATE(722), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_assignment_pattern] = STATE(1248), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(389), - [sym_subscript_expression] = STATE(389), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(833), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(959), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1388), - [sym_pattern] = STATE(1135), - [sym_rest_pattern] = STATE(970), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(618), - [anon_sym_export] = ACTIONS(618), - [anon_sym_LBRACE] = ACTIONS(620), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(432), - [anon_sym_get] = ACTIONS(618), - [anon_sym_set] = ACTIONS(618), - [anon_sym_async] = ACTIONS(622), - [anon_sym_static] = ACTIONS(618), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(624), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(438), - [anon_sym_DOT_DOT_DOT] = ACTIONS(614), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_BANG] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(442), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(444), - [anon_sym_DASH_DASH] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(626), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(403), + [sym_expression] = STATE(786), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_assignment_pattern] = STATE(1451), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(939), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1123), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1635), + [sym_pattern] = STATE(1211), + [sym_rest_pattern] = STATE(1116), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(641), + [anon_sym_export] = ACTIONS(641), + [anon_sym_LBRACE] = ACTIONS(643), + [anon_sym_COMMA] = ACTIONS(671), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(641), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(464), + [anon_sym_get] = ACTIONS(641), + [anon_sym_set] = ACTIONS(641), + [anon_sym_async] = ACTIONS(647), + [anon_sym_static] = ACTIONS(641), + [anon_sym_yield] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_RBRACK] = ACTIONS(671), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(470), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(655), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [96] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(645), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_assignment_pattern] = STATE(1248), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(391), - [sym_subscript_expression] = STATE(391), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(968), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [sym_pattern] = STATE(1135), - [sym_rest_pattern] = STATE(970), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(574), - [anon_sym_export] = ACTIONS(574), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(574), - [anon_sym_set] = ACTIONS(574), - [anon_sym_async] = ACTIONS(578), - [anon_sym_static] = ACTIONS(574), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_DOT_DOT_DOT] = ACTIONS(614), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(584), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(403), + [sym_expression] = STATE(786), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_assignment_pattern] = STATE(1316), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(939), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1123), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1635), + [sym_pattern] = STATE(1270), + [sym_rest_pattern] = STATE(1116), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(641), + [anon_sym_export] = ACTIONS(641), + [anon_sym_LBRACE] = ACTIONS(643), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(641), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_RPAREN] = ACTIONS(673), + [anon_sym_await] = ACTIONS(464), + [anon_sym_get] = ACTIONS(641), + [anon_sym_set] = ACTIONS(641), + [anon_sym_async] = ACTIONS(647), + [anon_sym_static] = ACTIONS(641), + [anon_sym_yield] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(470), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(655), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [97] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(404), - [sym_expression] = STATE(722), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(404), - [sym_subscript_expression] = STATE(404), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(833), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1144), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1388), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(657), - [anon_sym_export] = ACTIONS(657), - [anon_sym_LBRACE] = ACTIONS(659), - [anon_sym_import] = ACTIONS(322), - [anon_sym_var] = ACTIONS(661), - [anon_sym_let] = ACTIONS(663), - [anon_sym_const] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(432), - [anon_sym_get] = ACTIONS(657), - [anon_sym_set] = ACTIONS(657), - [anon_sym_async] = ACTIONS(665), - [anon_sym_static] = ACTIONS(657), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_BANG] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(442), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(444), - [anon_sym_DASH_DASH] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(669), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(719), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1637), + [sym_spread_element] = STATE(1202), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [aux_sym_array_repeat1] = STATE(1240), + [sym_identifier] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_COMMA] = ACTIONS(675), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_RPAREN] = ACTIONS(677), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(340), + [anon_sym_set] = ACTIONS(340), + [anon_sym_async] = ACTIONS(354), + [anon_sym_static] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_DOT_DOT_DOT] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(390), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [98] = { - [sym_import] = STATE(595), - [sym_parenthesized_expression] = STATE(388), - [sym_expression] = STATE(560), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_function] = STATE(595), - [sym_generator_function] = STATE(595), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_sequence_expression] = STATE(1336), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_export_statement_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(364), - [anon_sym_export] = ACTIONS(364), - [anon_sym_SEMI] = ACTIONS(671), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_import] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(364), - [anon_sym_set] = ACTIONS(364), - [anon_sym_async] = ACTIONS(372), - [anon_sym_static] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(376), - [anon_sym_function] = ACTIONS(378), - [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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [sym_automatic_semicolon] = ACTIONS(671), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(685), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1637), + [sym_spread_element] = STATE(1233), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_COMMA] = ACTIONS(681), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_RPAREN] = ACTIONS(681), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(340), + [anon_sym_set] = ACTIONS(340), + [anon_sym_async] = ACTIONS(354), + [anon_sym_static] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_RBRACK] = ACTIONS(681), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_DOT_DOT_DOT] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(390), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [99] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(661), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1386), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_sequence_expression] = STATE(1406), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_LBRACE] = ACTIONS(318), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_RPAREN] = ACTIONS(673), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(314), - [anon_sym_set] = ACTIONS(314), - [anon_sym_async] = ACTIONS(328), - [anon_sym_static] = ACTIONS(314), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(334), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(362), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(403), + [sym_expression] = STATE(786), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_assignment_pattern] = STATE(1216), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(939), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1123), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1635), + [sym_pattern] = STATE(1128), + [sym_rest_pattern] = STATE(1116), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(641), + [anon_sym_export] = ACTIONS(641), + [anon_sym_LBRACE] = ACTIONS(643), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(641), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_RPAREN] = ACTIONS(669), + [anon_sym_await] = ACTIONS(464), + [anon_sym_get] = ACTIONS(641), + [anon_sym_set] = ACTIONS(641), + [anon_sym_async] = ACTIONS(647), + [anon_sym_static] = ACTIONS(641), + [anon_sym_yield] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(470), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(655), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [100] = { - [sym_export_clause] = STATE(1060), - [sym_declaration] = STATE(332), - [sym_namespace_import_export] = STATE(1275), - [sym_variable_declaration] = STATE(341), - [sym_lexical_declaration] = STATE(341), - [sym_class_declaration] = STATE(341), - [sym_function_declaration] = STATE(341), - [sym_generator_function_declaration] = STATE(341), - [sym_decorator] = STATE(845), - [aux_sym_export_statement_repeat1] = STATE(1014), - [aux_sym_object_repeat1] = STATE(1137), - [aux_sym_object_pattern_repeat1] = STATE(1142), - [anon_sym_STAR] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_default] = ACTIONS(679), - [anon_sym_LBRACE] = ACTIONS(681), - [anon_sym_COMMA] = ACTIONS(677), - [anon_sym_RBRACE] = ACTIONS(683), - [anon_sym_var] = ACTIONS(685), - [anon_sym_let] = ACTIONS(687), - [anon_sym_const] = ACTIONS(687), - [anon_sym_LPAREN] = ACTIONS(689), - [anon_sym_async] = ACTIONS(692), - [anon_sym_in] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(696), - [anon_sym_EQ] = ACTIONS(699), - [anon_sym_LBRACK] = ACTIONS(677), - [anon_sym_LT] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(694), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_DOT] = ACTIONS(677), - [anon_sym_class] = ACTIONS(701), - [anon_sym_function] = ACTIONS(703), - [anon_sym_EQ_GT] = ACTIONS(705), - [anon_sym_QMARK_DOT] = ACTIONS(677), - [anon_sym_PLUS_EQ] = ACTIONS(707), - [anon_sym_DASH_EQ] = ACTIONS(707), - [anon_sym_STAR_EQ] = ACTIONS(707), - [anon_sym_SLASH_EQ] = ACTIONS(707), - [anon_sym_PERCENT_EQ] = ACTIONS(707), - [anon_sym_CARET_EQ] = ACTIONS(707), - [anon_sym_AMP_EQ] = ACTIONS(707), - [anon_sym_PIPE_EQ] = ACTIONS(707), - [anon_sym_GT_GT_EQ] = ACTIONS(707), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(707), - [anon_sym_LT_LT_EQ] = ACTIONS(707), - [anon_sym_STAR_STAR_EQ] = ACTIONS(707), - [anon_sym_AMP_AMP_EQ] = ACTIONS(707), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(707), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(707), - [anon_sym_AMP_AMP] = ACTIONS(694), - [anon_sym_PIPE_PIPE] = ACTIONS(694), - [anon_sym_GT_GT] = ACTIONS(694), - [anon_sym_GT_GT_GT] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(694), - [anon_sym_AMP] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_PIPE] = ACTIONS(694), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_PERCENT] = ACTIONS(694), - [anon_sym_STAR_STAR] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(677), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(677), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(677), - [anon_sym_GT_EQ] = ACTIONS(677), - [anon_sym_QMARK_QMARK] = ACTIONS(694), - [anon_sym_instanceof] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_DASH_DASH] = ACTIONS(677), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(677), - [anon_sym_AT] = ACTIONS(85), - [sym_automatic_semicolon] = ACTIONS(677), - [sym_ternary_qmark] = ACTIONS(677), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(684), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1637), + [sym_spread_element] = STATE(1223), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [aux_sym_array_repeat1] = STATE(1222), + [sym_identifier] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_COMMA] = ACTIONS(675), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_RPAREN] = ACTIONS(683), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(340), + [anon_sym_set] = ACTIONS(340), + [anon_sym_async] = ACTIONS(354), + [anon_sym_static] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_DOT_DOT_DOT] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(390), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [101] = { - [sym_export_clause] = STATE(1060), - [sym_declaration] = STATE(332), - [sym_namespace_import_export] = STATE(1275), - [sym_variable_declaration] = STATE(341), - [sym_lexical_declaration] = STATE(341), - [sym_class_declaration] = STATE(341), - [sym_function_declaration] = STATE(341), - [sym_generator_function_declaration] = STATE(341), - [sym_decorator] = STATE(845), - [aux_sym_export_statement_repeat1] = STATE(1014), - [aux_sym_object_repeat1] = STATE(1146), - [aux_sym_object_pattern_repeat1] = STATE(1142), - [anon_sym_STAR] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_default] = ACTIONS(679), - [anon_sym_LBRACE] = ACTIONS(681), - [anon_sym_COMMA] = ACTIONS(677), - [anon_sym_RBRACE] = ACTIONS(709), - [anon_sym_var] = ACTIONS(685), - [anon_sym_let] = ACTIONS(687), - [anon_sym_const] = ACTIONS(687), - [anon_sym_LPAREN] = ACTIONS(689), - [anon_sym_async] = ACTIONS(692), - [anon_sym_in] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(696), - [anon_sym_EQ] = ACTIONS(699), - [anon_sym_LBRACK] = ACTIONS(677), - [anon_sym_LT] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(694), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_DOT] = ACTIONS(677), - [anon_sym_class] = ACTIONS(701), - [anon_sym_function] = ACTIONS(703), - [anon_sym_EQ_GT] = ACTIONS(705), - [anon_sym_QMARK_DOT] = ACTIONS(677), - [anon_sym_PLUS_EQ] = ACTIONS(707), - [anon_sym_DASH_EQ] = ACTIONS(707), - [anon_sym_STAR_EQ] = ACTIONS(707), - [anon_sym_SLASH_EQ] = ACTIONS(707), - [anon_sym_PERCENT_EQ] = ACTIONS(707), - [anon_sym_CARET_EQ] = ACTIONS(707), - [anon_sym_AMP_EQ] = ACTIONS(707), - [anon_sym_PIPE_EQ] = ACTIONS(707), - [anon_sym_GT_GT_EQ] = ACTIONS(707), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(707), - [anon_sym_LT_LT_EQ] = ACTIONS(707), - [anon_sym_STAR_STAR_EQ] = ACTIONS(707), - [anon_sym_AMP_AMP_EQ] = ACTIONS(707), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(707), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(707), - [anon_sym_AMP_AMP] = ACTIONS(694), - [anon_sym_PIPE_PIPE] = ACTIONS(694), - [anon_sym_GT_GT] = ACTIONS(694), - [anon_sym_GT_GT_GT] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(694), - [anon_sym_AMP] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_PIPE] = ACTIONS(694), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_PERCENT] = ACTIONS(694), - [anon_sym_STAR_STAR] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(677), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(677), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(677), - [anon_sym_GT_EQ] = ACTIONS(677), - [anon_sym_QMARK_QMARK] = ACTIONS(694), - [anon_sym_instanceof] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_DASH_DASH] = ACTIONS(677), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(677), - [anon_sym_AT] = ACTIONS(85), - [sym_automatic_semicolon] = ACTIONS(677), - [sym_ternary_qmark] = ACTIONS(677), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(728), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1637), + [sym_spread_element] = STATE(1238), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [aux_sym_array_repeat1] = STATE(1236), + [sym_identifier] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_COMMA] = ACTIONS(675), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_RPAREN] = ACTIONS(685), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(340), + [anon_sym_set] = ACTIONS(340), + [anon_sym_async] = ACTIONS(354), + [anon_sym_static] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_DOT_DOT_DOT] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(390), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [102] = { - [sym_export_clause] = STATE(1060), - [sym_declaration] = STATE(332), - [sym_namespace_import_export] = STATE(1275), - [sym_variable_declaration] = STATE(341), - [sym_lexical_declaration] = STATE(341), - [sym_class_declaration] = STATE(341), - [sym_function_declaration] = STATE(341), - [sym_generator_function_declaration] = STATE(341), - [sym_decorator] = STATE(845), - [aux_sym_export_statement_repeat1] = STATE(1014), - [aux_sym_object_repeat1] = STATE(1146), - [aux_sym_object_pattern_repeat1] = STATE(1142), - [anon_sym_STAR] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_default] = ACTIONS(679), - [anon_sym_LBRACE] = ACTIONS(681), - [anon_sym_COMMA] = ACTIONS(677), - [anon_sym_RBRACE] = ACTIONS(711), - [anon_sym_var] = ACTIONS(685), - [anon_sym_let] = ACTIONS(687), - [anon_sym_const] = ACTIONS(687), - [anon_sym_LPAREN] = ACTIONS(689), - [anon_sym_async] = ACTIONS(692), - [anon_sym_in] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(696), - [anon_sym_EQ] = ACTIONS(699), - [anon_sym_LBRACK] = ACTIONS(677), - [anon_sym_LT] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(694), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_DOT] = ACTIONS(677), - [anon_sym_class] = ACTIONS(701), - [anon_sym_function] = ACTIONS(703), - [anon_sym_EQ_GT] = ACTIONS(705), - [anon_sym_QMARK_DOT] = ACTIONS(677), - [anon_sym_PLUS_EQ] = ACTIONS(707), - [anon_sym_DASH_EQ] = ACTIONS(707), - [anon_sym_STAR_EQ] = ACTIONS(707), - [anon_sym_SLASH_EQ] = ACTIONS(707), - [anon_sym_PERCENT_EQ] = ACTIONS(707), - [anon_sym_CARET_EQ] = ACTIONS(707), - [anon_sym_AMP_EQ] = ACTIONS(707), - [anon_sym_PIPE_EQ] = ACTIONS(707), - [anon_sym_GT_GT_EQ] = ACTIONS(707), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(707), - [anon_sym_LT_LT_EQ] = ACTIONS(707), - [anon_sym_STAR_STAR_EQ] = ACTIONS(707), - [anon_sym_AMP_AMP_EQ] = ACTIONS(707), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(707), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(707), - [anon_sym_AMP_AMP] = ACTIONS(694), - [anon_sym_PIPE_PIPE] = ACTIONS(694), - [anon_sym_GT_GT] = ACTIONS(694), - [anon_sym_GT_GT_GT] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(694), - [anon_sym_AMP] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_PIPE] = ACTIONS(694), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_PERCENT] = ACTIONS(694), - [anon_sym_STAR_STAR] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(677), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(677), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(677), - [anon_sym_GT_EQ] = ACTIONS(677), - [anon_sym_QMARK_QMARK] = ACTIONS(694), - [anon_sym_instanceof] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_DASH_DASH] = ACTIONS(677), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(677), - [anon_sym_AT] = ACTIONS(85), - [sym_automatic_semicolon] = ACTIONS(677), - [sym_ternary_qmark] = ACTIONS(677), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(403), + [sym_expression] = STATE(786), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_assignment_pattern] = STATE(1316), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(939), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1123), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1635), + [sym_pattern] = STATE(1270), + [sym_rest_pattern] = STATE(1116), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(641), + [anon_sym_export] = ACTIONS(641), + [anon_sym_LBRACE] = ACTIONS(643), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(641), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_RPAREN] = ACTIONS(687), + [anon_sym_await] = ACTIONS(464), + [anon_sym_get] = ACTIONS(641), + [anon_sym_set] = ACTIONS(641), + [anon_sym_async] = ACTIONS(647), + [anon_sym_static] = ACTIONS(641), + [anon_sym_yield] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(470), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(655), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [103] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(681), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1386), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_sequence_expression] = STATE(1397), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_LBRACE] = ACTIONS(318), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_RPAREN] = ACTIONS(713), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(314), - [anon_sym_set] = ACTIONS(314), - [anon_sym_async] = ACTIONS(328), - [anon_sym_static] = ACTIONS(314), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(334), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(362), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(403), + [sym_expression] = STATE(786), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_assignment_pattern] = STATE(1478), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(939), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1123), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1635), + [sym_pattern] = STATE(1242), + [sym_rest_pattern] = STATE(1116), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(641), + [anon_sym_export] = ACTIONS(641), + [anon_sym_LBRACE] = ACTIONS(643), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(641), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(464), + [anon_sym_get] = ACTIONS(641), + [anon_sym_set] = ACTIONS(641), + [anon_sym_async] = ACTIONS(647), + [anon_sym_static] = ACTIONS(641), + [anon_sym_yield] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(470), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(655), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [104] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(671), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1386), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_sequence_expression] = STATE(1378), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_LBRACE] = ACTIONS(318), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(314), - [anon_sym_set] = ACTIONS(314), - [anon_sym_async] = ACTIONS(328), - [anon_sym_static] = ACTIONS(314), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(334), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(362), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(774), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_assignment_pattern] = STATE(1478), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(435), + [sym_subscript_expression] = STATE(435), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1084), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [sym_pattern] = STATE(1242), + [sym_rest_pattern] = STATE(1116), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(594), + [anon_sym_export] = ACTIONS(594), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(594), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(594), + [anon_sym_set] = ACTIONS(594), + [anon_sym_async] = ACTIONS(598), + [anon_sym_static] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(604), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [105] = { - [sym_import] = STATE(431), - [sym_statement_block] = STATE(475), - [sym_parenthesized_expression] = STATE(364), - [sym_expression] = STATE(679), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(364), - [sym_subscript_expression] = STATE(364), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(833), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1383), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1388), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(428), - [anon_sym_export] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(715), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(432), - [anon_sym_get] = ACTIONS(428), - [anon_sym_set] = ACTIONS(428), - [anon_sym_async] = ACTIONS(434), - [anon_sym_static] = ACTIONS(428), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_BANG] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(442), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(444), - [anon_sym_DASH_DASH] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(446), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(740), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1637), + [sym_spread_element] = STATE(1613), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_sequence_expression] = STATE(1613), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_RBRACE] = ACTIONS(689), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(340), + [anon_sym_set] = ACTIONS(340), + [anon_sym_async] = ACTIONS(354), + [anon_sym_static] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_DOT_DOT_DOT] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(390), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [106] = { - [sym_import] = STATE(431), - [sym_statement_block] = STATE(472), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(473), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1386), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_LBRACE] = ACTIONS(717), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(314), - [anon_sym_set] = ACTIONS(314), - [anon_sym_async] = ACTIONS(328), - [anon_sym_static] = ACTIONS(314), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(334), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(362), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(737), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1637), + [sym_spread_element] = STATE(1596), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_sequence_expression] = STATE(1596), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_RBRACE] = ACTIONS(691), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(340), + [anon_sym_set] = ACTIONS(340), + [anon_sym_async] = ACTIONS(354), + [anon_sym_static] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_DOT_DOT_DOT] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(390), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [107] = { - [sym_import] = STATE(431), - [sym_statement_block] = STATE(475), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(476), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1386), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_LBRACE] = ACTIONS(717), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(314), - [anon_sym_set] = ACTIONS(314), - [anon_sym_async] = ACTIONS(328), - [anon_sym_static] = ACTIONS(314), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(334), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(362), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(403), + [sym_expression] = STATE(786), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_assignment_pattern] = STATE(1316), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(939), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1123), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1635), + [sym_pattern] = STATE(1270), + [sym_rest_pattern] = STATE(1116), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(641), + [anon_sym_export] = ACTIONS(641), + [anon_sym_LBRACE] = ACTIONS(643), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(641), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(464), + [anon_sym_get] = ACTIONS(641), + [anon_sym_set] = ACTIONS(641), + [anon_sym_async] = ACTIONS(647), + [anon_sym_static] = ACTIONS(641), + [anon_sym_yield] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(470), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(655), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [108] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(364), - [sym_expression] = STATE(722), - [sym_primary_expression] = STATE(415), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(412), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(364), - [sym_subscript_expression] = STATE(364), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(833), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1383), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1388), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(428), - [anon_sym_export] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(432), - [anon_sym_get] = ACTIONS(428), - [anon_sym_set] = ACTIONS(428), - [anon_sym_async] = ACTIONS(434), - [anon_sym_static] = ACTIONS(428), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_DOT] = ACTIONS(719), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_BANG] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(442), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(444), - [anon_sym_DASH_DASH] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(446), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_empty_statement] = STATE(120), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(713), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1637), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_sequence_expression] = STATE(1639), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_SEMI] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(340), + [anon_sym_set] = ACTIONS(340), + [anon_sym_async] = ACTIONS(354), + [anon_sym_static] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(390), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [109] = { - [sym_import] = STATE(595), - [sym_statement_block] = STATE(586), - [sym_parenthesized_expression] = STATE(388), - [sym_expression] = STATE(512), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_function] = STATE(595), - [sym_generator_function] = STATE(595), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_export_statement_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(364), - [anon_sym_export] = ACTIONS(364), - [anon_sym_LBRACE] = ACTIONS(721), - [anon_sym_import] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(364), - [anon_sym_set] = ACTIONS(364), - [anon_sym_async] = ACTIONS(372), - [anon_sym_static] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(376), - [anon_sym_function] = ACTIONS(378), - [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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_empty_statement] = STATE(121), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(705), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1637), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_sequence_expression] = STATE(1544), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_SEMI] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(340), + [anon_sym_set] = ACTIONS(340), + [anon_sym_async] = ACTIONS(354), + [anon_sym_static] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(390), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [110] = { - [sym_import] = STATE(595), - [sym_statement_block] = STATE(605), - [sym_parenthesized_expression] = STATE(388), - [sym_expression] = STATE(513), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_function] = STATE(595), - [sym_generator_function] = STATE(595), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_export_statement_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(364), - [anon_sym_export] = ACTIONS(364), - [anon_sym_LBRACE] = ACTIONS(721), - [anon_sym_import] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(364), - [anon_sym_set] = ACTIONS(364), - [anon_sym_async] = ACTIONS(372), - [anon_sym_static] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(376), - [anon_sym_function] = ACTIONS(378), - [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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(667), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_function_expression] = STATE(609), + [sym_generator_function] = STATE(609), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_sequence_expression] = STATE(1300), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(426), + [anon_sym_export] = ACTIONS(426), + [anon_sym_SEMI] = ACTIONS(693), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_import] = ACTIONS(398), + [anon_sym_let] = ACTIONS(426), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(426), + [anon_sym_set] = ACTIONS(426), + [anon_sym_async] = ACTIONS(430), + [anon_sym_static] = ACTIONS(426), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(408), + [anon_sym_function] = ACTIONS(410), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_automatic_semicolon] = ACTIONS(693), + [sym_html_comment] = ACTIONS(5), }, [111] = { - [sym_import] = STATE(595), - [sym_statement_block] = STATE(581), - [sym_parenthesized_expression] = STATE(388), - [sym_expression] = STATE(515), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_function] = STATE(595), - [sym_generator_function] = STATE(595), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_export_statement_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(364), - [anon_sym_export] = ACTIONS(364), - [anon_sym_LBRACE] = ACTIONS(721), - [anon_sym_import] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(364), - [anon_sym_set] = ACTIONS(364), - [anon_sym_async] = ACTIONS(372), - [anon_sym_static] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(376), - [anon_sym_function] = ACTIONS(378), - [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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_empty_statement] = STATE(114), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(710), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1637), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_sequence_expression] = STATE(1568), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_SEMI] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(340), + [anon_sym_set] = ACTIONS(340), + [anon_sym_async] = ACTIONS(354), + [anon_sym_static] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(390), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [112] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(683), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1386), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_sequence_expression] = STATE(1403), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_LBRACE] = ACTIONS(318), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(314), - [anon_sym_set] = ACTIONS(314), - [anon_sym_async] = ACTIONS(328), - [anon_sym_static] = ACTIONS(314), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(334), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(362), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_empty_statement] = STATE(116), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(712), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1637), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_sequence_expression] = STATE(1577), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_SEMI] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(340), + [anon_sym_set] = ACTIONS(340), + [anon_sym_async] = ACTIONS(354), + [anon_sym_static] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(390), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [113] = { - [sym_import] = STATE(595), - [sym_parenthesized_expression] = STATE(375), - [sym_expression] = STATE(726), - [sym_primary_expression] = STATE(502), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(595), - [sym_function] = STATE(595), - [sym_generator_function] = STATE(595), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(375), - [sym_subscript_expression] = STATE(375), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(833), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1383), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_export_statement_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(723), - [anon_sym_export] = ACTIONS(723), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_import] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(432), - [anon_sym_get] = ACTIONS(723), - [anon_sym_set] = ACTIONS(723), - [anon_sym_async] = ACTIONS(725), - [anon_sym_static] = ACTIONS(723), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_DOT] = ACTIONS(727), - [anon_sym_class] = ACTIONS(376), - [anon_sym_function] = ACTIONS(378), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_BANG] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(442), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(444), - [anon_sym_DASH_DASH] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(729), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(689), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1637), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_sequence_expression] = STATE(1603), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_RPAREN] = ACTIONS(695), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(340), + [anon_sym_set] = ACTIONS(340), + [anon_sym_async] = ACTIONS(354), + [anon_sym_static] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(390), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [114] = { - [sym_import] = STATE(595), - [sym_parenthesized_expression] = STATE(388), - [sym_expression] = STATE(562), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_function] = STATE(595), - [sym_generator_function] = STATE(595), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_sequence_expression] = STATE(1241), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_export_statement_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(364), - [anon_sym_export] = ACTIONS(364), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_import] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(364), - [anon_sym_set] = ACTIONS(364), - [anon_sym_async] = ACTIONS(372), - [anon_sym_static] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(376), - [anon_sym_function] = ACTIONS(378), - [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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(698), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1637), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_sequence_expression] = STATE(1564), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_RPAREN] = ACTIONS(697), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(340), + [anon_sym_set] = ACTIONS(340), + [anon_sym_async] = ACTIONS(354), + [anon_sym_static] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(390), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [115] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(364), - [sym_expression] = STATE(722), - [sym_primary_expression] = STATE(415), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(412), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(364), - [sym_subscript_expression] = STATE(364), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(833), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1383), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(731), - [anon_sym_export] = ACTIONS(731), - [anon_sym_LBRACE] = ACTIONS(318), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(432), - [anon_sym_get] = ACTIONS(731), - [anon_sym_set] = ACTIONS(731), - [anon_sym_async] = ACTIONS(733), - [anon_sym_static] = ACTIONS(731), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(334), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_DOT] = ACTIONS(719), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_BANG] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(442), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(444), - [anon_sym_DASH_DASH] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(446), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(700), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1637), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_sequence_expression] = STATE(1562), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_RPAREN] = ACTIONS(699), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(340), + [anon_sym_set] = ACTIONS(340), + [anon_sym_async] = ACTIONS(354), + [anon_sym_static] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(390), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [116] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(658), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1386), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_sequence_expression] = STATE(1422), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_LBRACE] = ACTIONS(318), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(314), - [anon_sym_set] = ACTIONS(314), - [anon_sym_async] = ACTIONS(328), - [anon_sym_static] = ACTIONS(314), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(334), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(362), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(702), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1637), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_sequence_expression] = STATE(1560), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_RPAREN] = ACTIONS(701), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(340), + [anon_sym_set] = ACTIONS(340), + [anon_sym_async] = ACTIONS(354), + [anon_sym_static] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(390), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [117] = { - [sym_import] = STATE(431), - [sym_statement_block] = STATE(441), - [sym_parenthesized_expression] = STATE(364), - [sym_expression] = STATE(653), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(364), - [sym_subscript_expression] = STATE(364), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(833), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1383), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1388), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(428), - [anon_sym_export] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(715), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(432), - [anon_sym_get] = ACTIONS(428), - [anon_sym_set] = ACTIONS(428), - [anon_sym_async] = ACTIONS(434), - [anon_sym_static] = ACTIONS(428), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_BANG] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(442), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(444), - [anon_sym_DASH_DASH] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(446), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(703), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1637), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_sequence_expression] = STATE(1559), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_RPAREN] = ACTIONS(703), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(340), + [anon_sym_set] = ACTIONS(340), + [anon_sym_async] = ACTIONS(354), + [anon_sym_static] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(390), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [118] = { - [sym_import] = STATE(595), - [sym_statement_block] = STATE(633), - [sym_parenthesized_expression] = STATE(388), - [sym_expression] = STATE(516), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_function] = STATE(595), - [sym_generator_function] = STATE(595), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_export_statement_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(364), - [anon_sym_export] = ACTIONS(364), - [anon_sym_LBRACE] = ACTIONS(721), - [anon_sym_import] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(364), - [anon_sym_set] = ACTIONS(364), - [anon_sym_async] = ACTIONS(372), - [anon_sym_static] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(376), - [anon_sym_function] = ACTIONS(378), - [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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(686), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1637), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_sequence_expression] = STATE(1604), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_RPAREN] = ACTIONS(705), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(340), + [anon_sym_set] = ACTIONS(340), + [anon_sym_async] = ACTIONS(354), + [anon_sym_static] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(390), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [119] = { - [sym_import] = STATE(431), - [sym_statement_block] = STATE(468), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(469), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1386), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_LBRACE] = ACTIONS(717), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(314), - [anon_sym_set] = ACTIONS(314), - [anon_sym_async] = ACTIONS(328), - [anon_sym_static] = ACTIONS(314), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(334), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(362), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(446), + [sym_expression] = STATE(786), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(446), + [sym_subscript_expression] = STATE(446), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(939), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1231), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1635), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(707), + [anon_sym_export] = ACTIONS(707), + [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_import] = ACTIONS(348), + [anon_sym_var] = ACTIONS(709), + [anon_sym_let] = ACTIONS(711), + [anon_sym_const] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(464), + [anon_sym_get] = ACTIONS(707), + [anon_sym_set] = ACTIONS(707), + [anon_sym_async] = ACTIONS(715), + [anon_sym_static] = ACTIONS(707), + [anon_sym_yield] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(637), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(717), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [120] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(684), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1386), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_sequence_expression] = STATE(1409), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_LBRACE] = ACTIONS(318), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(314), - [anon_sym_set] = ACTIONS(314), - [anon_sym_async] = ACTIONS(328), - [anon_sym_static] = ACTIONS(314), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(334), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(362), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(701), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1637), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_sequence_expression] = STATE(1545), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_RPAREN] = ACTIONS(719), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(340), + [anon_sym_set] = ACTIONS(340), + [anon_sym_async] = ACTIONS(354), + [anon_sym_static] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(390), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [121] = { - [sym_import] = STATE(595), - [sym_parenthesized_expression] = STATE(375), - [sym_expression] = STATE(726), - [sym_primary_expression] = STATE(502), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(595), - [sym_function] = STATE(595), - [sym_generator_function] = STATE(595), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(375), - [sym_subscript_expression] = STATE(375), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(833), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1383), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1358), - [aux_sym_export_statement_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(735), - [anon_sym_export] = ACTIONS(735), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_import] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(432), - [anon_sym_get] = ACTIONS(735), - [anon_sym_set] = ACTIONS(735), - [anon_sym_async] = ACTIONS(737), - [anon_sym_static] = ACTIONS(735), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(390), - [anon_sym_DOT] = ACTIONS(727), - [anon_sym_class] = ACTIONS(376), - [anon_sym_function] = ACTIONS(378), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_BANG] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(442), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(444), - [anon_sym_DASH_DASH] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(729), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(682), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1637), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_sequence_expression] = STATE(1607), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_RPAREN] = ACTIONS(721), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(340), + [anon_sym_set] = ACTIONS(340), + [anon_sym_async] = ACTIONS(354), + [anon_sym_static] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(390), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [122] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(642), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1386), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_sequence_expression] = STATE(1404), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_LBRACE] = ACTIONS(318), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(314), - [anon_sym_set] = ACTIONS(314), - [anon_sym_async] = ACTIONS(328), - [anon_sym_static] = ACTIONS(314), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(334), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(362), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1156), + [sym_statement_block] = STATE(634), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(638), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_function_expression] = STATE(609), + [sym_generator_function] = STATE(609), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(426), + [anon_sym_export] = ACTIONS(426), + [anon_sym_LBRACE] = ACTIONS(723), + [anon_sym_import] = ACTIONS(398), + [anon_sym_let] = ACTIONS(426), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(426), + [anon_sym_set] = ACTIONS(426), + [anon_sym_async] = ACTIONS(430), + [anon_sym_static] = ACTIONS(426), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(408), + [anon_sym_function] = ACTIONS(410), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [123] = { - [sym_import] = STATE(595), - [sym_statement_block] = STATE(633), - [sym_parenthesized_expression] = STATE(394), - [sym_expression] = STATE(528), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_function] = STATE(595), - [sym_generator_function] = STATE(595), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(394), - [sym_subscript_expression] = STATE(394), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(834), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1357), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1358), - [aux_sym_export_statement_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(380), - [anon_sym_export] = ACTIONS(380), - [anon_sym_LBRACE] = ACTIONS(721), - [anon_sym_import] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(384), - [anon_sym_get] = ACTIONS(380), - [anon_sym_set] = ACTIONS(380), - [anon_sym_async] = ACTIONS(386), - [anon_sym_static] = ACTIONS(380), - [anon_sym_yield] = ACTIONS(388), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(390), - [anon_sym_class] = ACTIONS(376), - [anon_sym_function] = ACTIONS(378), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_TILDE] = ACTIONS(396), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(398), - [anon_sym_DASH_DASH] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(400), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(671), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_function_expression] = STATE(609), + [sym_generator_function] = STATE(609), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_sequence_expression] = STATE(1296), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(426), + [anon_sym_export] = ACTIONS(426), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_import] = ACTIONS(398), + [anon_sym_let] = ACTIONS(426), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(426), + [anon_sym_set] = ACTIONS(426), + [anon_sym_async] = ACTIONS(430), + [anon_sym_static] = ACTIONS(426), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(408), + [anon_sym_function] = ACTIONS(410), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [124] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(647), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1386), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_sequence_expression] = STATE(1371), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_LBRACE] = ACTIONS(318), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(314), - [anon_sym_set] = ACTIONS(314), - [anon_sym_async] = ACTIONS(328), - [anon_sym_static] = ACTIONS(314), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(334), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(362), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1156), + [sym_statement_block] = STATE(602), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(603), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_function_expression] = STATE(609), + [sym_generator_function] = STATE(609), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(426), + [anon_sym_export] = ACTIONS(426), + [anon_sym_LBRACE] = ACTIONS(723), + [anon_sym_import] = ACTIONS(398), + [anon_sym_let] = ACTIONS(426), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(426), + [anon_sym_set] = ACTIONS(426), + [anon_sym_async] = ACTIONS(430), + [anon_sym_static] = ACTIONS(426), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(408), + [anon_sym_function] = ACTIONS(410), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [125] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(673), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1386), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_sequence_expression] = STATE(1347), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_LBRACE] = ACTIONS(318), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(314), - [anon_sym_set] = ACTIONS(314), - [anon_sym_async] = ACTIONS(328), - [anon_sym_static] = ACTIONS(314), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(334), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(362), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(418), + [sym_expression] = STATE(784), + [sym_primary_expression] = STATE(517), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(609), + [sym_function_expression] = STATE(609), + [sym_generator_function] = STATE(609), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(539), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(418), + [sym_subscript_expression] = STATE(418), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(939), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1572), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1550), + [aux_sym_export_statement_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_import] = ACTIONS(398), + [anon_sym_let] = ACTIONS(725), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(464), + [anon_sym_get] = ACTIONS(725), + [anon_sym_set] = ACTIONS(725), + [anon_sym_async] = ACTIONS(727), + [anon_sym_static] = ACTIONS(725), + [anon_sym_yield] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DOT] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(408), + [anon_sym_function] = ACTIONS(410), + [anon_sym_new] = ACTIONS(412), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(416), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(731), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [126] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(685), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1386), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_sequence_expression] = STATE(1375), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_LBRACE] = ACTIONS(318), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(314), - [anon_sym_set] = ACTIONS(314), - [anon_sym_async] = ACTIONS(328), - [anon_sym_static] = ACTIONS(314), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(334), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(362), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(680), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1637), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_sequence_expression] = STATE(1614), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(340), + [anon_sym_set] = ACTIONS(340), + [anon_sym_async] = ACTIONS(354), + [anon_sym_static] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(390), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [127] = { - [sym_import] = STATE(595), - [sym_statement_block] = STATE(581), - [sym_parenthesized_expression] = STATE(394), - [sym_expression] = STATE(542), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_function] = STATE(595), - [sym_generator_function] = STATE(595), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(394), - [sym_subscript_expression] = STATE(394), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(834), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1357), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1358), - [aux_sym_export_statement_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(380), - [anon_sym_export] = ACTIONS(380), - [anon_sym_LBRACE] = ACTIONS(721), - [anon_sym_import] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(384), - [anon_sym_get] = ACTIONS(380), - [anon_sym_set] = ACTIONS(380), - [anon_sym_async] = ACTIONS(386), - [anon_sym_static] = ACTIONS(380), - [anon_sym_yield] = ACTIONS(388), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(390), - [anon_sym_class] = ACTIONS(376), - [anon_sym_function] = ACTIONS(378), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_TILDE] = ACTIONS(396), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(398), - [anon_sym_DASH_DASH] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(400), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_statement_block] = STATE(495), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(766), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(935), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1641), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1625), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(432), + [anon_sym_export] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(733), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(432), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(438), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), + [anon_sym_async] = ACTIONS(440), + [anon_sym_static] = ACTIONS(432), + [anon_sym_yield] = ACTIONS(442), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(446), + [anon_sym_PLUS] = ACTIONS(448), + [anon_sym_DASH] = ACTIONS(448), + [anon_sym_SLASH] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_TILDE] = ACTIONS(452), + [anon_sym_typeof] = ACTIONS(448), + [anon_sym_void] = ACTIONS(448), + [anon_sym_delete] = ACTIONS(448), + [anon_sym_PLUS_PLUS] = ACTIONS(454), + [anon_sym_DASH_DASH] = ACTIONS(454), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(456), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(458), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [128] = { - [sym_import] = STATE(595), - [sym_statement_block] = STATE(586), - [sym_parenthesized_expression] = STATE(394), - [sym_expression] = STATE(543), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_function] = STATE(595), - [sym_generator_function] = STATE(595), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(394), - [sym_subscript_expression] = STATE(394), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(834), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1357), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1358), - [aux_sym_export_statement_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(380), - [anon_sym_export] = ACTIONS(380), - [anon_sym_LBRACE] = ACTIONS(721), - [anon_sym_import] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(384), - [anon_sym_get] = ACTIONS(380), - [anon_sym_set] = ACTIONS(380), - [anon_sym_async] = ACTIONS(386), - [anon_sym_static] = ACTIONS(380), - [anon_sym_yield] = ACTIONS(388), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(390), - [anon_sym_class] = ACTIONS(376), - [anon_sym_function] = ACTIONS(378), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_TILDE] = ACTIONS(396), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(398), - [anon_sym_DASH_DASH] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(400), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_statement_block] = STATE(495), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(520), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1637), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_LBRACE] = ACTIONS(735), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(340), + [anon_sym_set] = ACTIONS(340), + [anon_sym_async] = ACTIONS(354), + [anon_sym_static] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(390), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [129] = { - [sym_import] = STATE(595), - [sym_statement_block] = STATE(605), - [sym_parenthesized_expression] = STATE(394), - [sym_expression] = STATE(544), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_function] = STATE(595), - [sym_generator_function] = STATE(595), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(394), - [sym_subscript_expression] = STATE(394), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(834), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1357), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1358), - [aux_sym_export_statement_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(380), - [anon_sym_export] = ACTIONS(380), - [anon_sym_LBRACE] = ACTIONS(721), - [anon_sym_import] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(384), - [anon_sym_get] = ACTIONS(380), - [anon_sym_set] = ACTIONS(380), - [anon_sym_async] = ACTIONS(386), - [anon_sym_static] = ACTIONS(380), - [anon_sym_yield] = ACTIONS(388), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(390), - [anon_sym_class] = ACTIONS(376), - [anon_sym_function] = ACTIONS(378), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_TILDE] = ACTIONS(396), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(398), - [anon_sym_DASH_DASH] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(400), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_statement_block] = STATE(500), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(518), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1637), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_LBRACE] = ACTIONS(735), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(340), + [anon_sym_set] = ACTIONS(340), + [anon_sym_async] = ACTIONS(354), + [anon_sym_static] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(390), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [130] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(648), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1386), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_sequence_expression] = STATE(1424), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_LBRACE] = ACTIONS(318), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(314), - [anon_sym_set] = ACTIONS(314), - [anon_sym_async] = ACTIONS(328), - [anon_sym_static] = ACTIONS(314), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(334), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(362), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(721), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1637), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_sequence_expression] = STATE(1617), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(340), + [anon_sym_set] = ACTIONS(340), + [anon_sym_async] = ACTIONS(354), + [anon_sym_static] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(390), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [131] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(677), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1386), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_sequence_expression] = STATE(1366), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_LBRACE] = ACTIONS(318), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(314), - [anon_sym_set] = ACTIONS(314), - [anon_sym_async] = ACTIONS(328), - [anon_sym_static] = ACTIONS(314), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(334), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(362), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1156), + [sym_statement_block] = STATE(573), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(574), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_function_expression] = STATE(609), + [sym_generator_function] = STATE(609), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(426), + [anon_sym_export] = ACTIONS(426), + [anon_sym_LBRACE] = ACTIONS(723), + [anon_sym_import] = ACTIONS(398), + [anon_sym_let] = ACTIONS(426), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(426), + [anon_sym_set] = ACTIONS(426), + [anon_sym_async] = ACTIONS(430), + [anon_sym_static] = ACTIONS(426), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(408), + [anon_sym_function] = ACTIONS(410), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [132] = { - [sym_import] = STATE(431), - [sym_statement_block] = STATE(468), - [sym_parenthesized_expression] = STATE(364), - [sym_expression] = STATE(675), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(364), - [sym_subscript_expression] = STATE(364), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(833), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1383), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1388), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(428), - [anon_sym_export] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(715), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(432), - [anon_sym_get] = ACTIONS(428), - [anon_sym_set] = ACTIONS(428), - [anon_sym_async] = ACTIONS(434), - [anon_sym_static] = ACTIONS(428), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_BANG] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(442), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(444), - [anon_sym_DASH_DASH] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(446), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(739), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1637), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_sequence_expression] = STATE(1611), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(340), + [anon_sym_set] = ACTIONS(340), + [anon_sym_async] = ACTIONS(354), + [anon_sym_static] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(390), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [133] = { - [sym_import] = STATE(431), - [sym_statement_block] = STATE(472), - [sym_parenthesized_expression] = STATE(364), - [sym_expression] = STATE(676), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(364), - [sym_subscript_expression] = STATE(364), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(833), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1383), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1388), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(428), - [anon_sym_export] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(715), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(432), - [anon_sym_get] = ACTIONS(428), - [anon_sym_set] = ACTIONS(428), - [anon_sym_async] = ACTIONS(434), - [anon_sym_static] = ACTIONS(428), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_BANG] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(442), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(444), - [anon_sym_DASH_DASH] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(446), - [anon_sym_AT] = ACTIONS(85), + [sym_namespace_export] = STATE(1481), + [sym_export_clause] = STATE(1171), + [sym_declaration] = STATE(380), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_class_declaration] = STATE(346), + [sym_function_declaration] = STATE(346), + [sym_generator_function_declaration] = STATE(346), + [sym_decorator] = STATE(933), + [aux_sym_export_statement_repeat1] = STATE(1172), + [aux_sym_object_repeat1] = STATE(1239), + [aux_sym_object_pattern_repeat1] = STATE(1241), + [anon_sym_STAR] = ACTIONS(737), + [anon_sym_SEMI] = ACTIONS(739), + [anon_sym_default] = ACTIONS(741), + [anon_sym_LBRACE] = ACTIONS(743), + [anon_sym_COMMA] = ACTIONS(739), + [anon_sym_RBRACE] = ACTIONS(745), + [anon_sym_var] = ACTIONS(747), + [anon_sym_let] = ACTIONS(749), + [anon_sym_const] = ACTIONS(749), + [anon_sym_LPAREN] = ACTIONS(751), + [anon_sym_async] = ACTIONS(754), + [anon_sym_in] = ACTIONS(756), + [anon_sym_COLON] = ACTIONS(758), + [anon_sym_EQ] = ACTIONS(761), + [anon_sym_LBRACK] = ACTIONS(739), + [anon_sym_GT] = ACTIONS(756), + [anon_sym_LT] = ACTIONS(756), + [anon_sym_DOT] = ACTIONS(739), + [anon_sym_class] = ACTIONS(763), + [anon_sym_function] = ACTIONS(765), + [anon_sym_EQ_GT] = ACTIONS(767), + [sym_optional_chain] = ACTIONS(739), + [anon_sym_PLUS_EQ] = ACTIONS(769), + [anon_sym_DASH_EQ] = ACTIONS(769), + [anon_sym_STAR_EQ] = ACTIONS(769), + [anon_sym_SLASH_EQ] = ACTIONS(769), + [anon_sym_PERCENT_EQ] = ACTIONS(769), + [anon_sym_CARET_EQ] = ACTIONS(769), + [anon_sym_AMP_EQ] = ACTIONS(769), + [anon_sym_PIPE_EQ] = ACTIONS(769), + [anon_sym_GT_GT_EQ] = ACTIONS(769), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(769), + [anon_sym_LT_LT_EQ] = ACTIONS(769), + [anon_sym_STAR_STAR_EQ] = ACTIONS(769), + [anon_sym_AMP_AMP_EQ] = ACTIONS(769), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(769), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(769), + [anon_sym_AMP_AMP] = ACTIONS(756), + [anon_sym_PIPE_PIPE] = ACTIONS(756), + [anon_sym_GT_GT] = ACTIONS(756), + [anon_sym_GT_GT_GT] = ACTIONS(756), + [anon_sym_LT_LT] = ACTIONS(756), + [anon_sym_AMP] = ACTIONS(756), + [anon_sym_CARET] = ACTIONS(756), + [anon_sym_PIPE] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(756), + [anon_sym_PERCENT] = ACTIONS(756), + [anon_sym_STAR_STAR] = ACTIONS(756), + [anon_sym_LT_EQ] = ACTIONS(739), + [anon_sym_EQ_EQ] = ACTIONS(756), + [anon_sym_EQ_EQ_EQ] = ACTIONS(739), + [anon_sym_BANG_EQ] = ACTIONS(756), + [anon_sym_BANG_EQ_EQ] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(739), + [anon_sym_QMARK_QMARK] = ACTIONS(756), + [anon_sym_instanceof] = ACTIONS(739), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(739), + [anon_sym_AT] = ACTIONS(91), + [sym_automatic_semicolon] = ACTIONS(739), + [sym_ternary_qmark] = ACTIONS(739), + [sym_html_comment] = ACTIONS(5), }, [134] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(678), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1386), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_sequence_expression] = STATE(1396), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_LBRACE] = ACTIONS(318), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(314), - [anon_sym_set] = ACTIONS(314), - [anon_sym_async] = ACTIONS(328), - [anon_sym_static] = ACTIONS(314), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(334), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(362), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1156), + [sym_statement_block] = STATE(579), + [sym_parenthesized_expression] = STATE(436), + [sym_expression] = STATE(620), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_function_expression] = STATE(609), + [sym_generator_function] = STATE(609), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(436), + [sym_subscript_expression] = STATE(436), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(940), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1551), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1550), + [aux_sym_export_statement_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(392), + [anon_sym_export] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(723), + [anon_sym_import] = ACTIONS(398), + [anon_sym_let] = ACTIONS(392), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(400), + [anon_sym_get] = ACTIONS(392), + [anon_sym_set] = ACTIONS(392), + [anon_sym_async] = ACTIONS(402), + [anon_sym_static] = ACTIONS(392), + [anon_sym_yield] = ACTIONS(404), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(408), + [anon_sym_function] = ACTIONS(410), + [anon_sym_new] = ACTIONS(412), + [anon_sym_PLUS] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(414), + [anon_sym_SLASH] = ACTIONS(416), + [anon_sym_BANG] = ACTIONS(418), + [anon_sym_TILDE] = ACTIONS(418), + [anon_sym_typeof] = ACTIONS(414), + [anon_sym_void] = ACTIONS(414), + [anon_sym_delete] = ACTIONS(414), + [anon_sym_PLUS_PLUS] = ACTIONS(420), + [anon_sym_DASH_DASH] = ACTIONS(420), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(422), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(424), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [135] = { - [sym_import] = STATE(431), - [sym_statement_block] = STATE(441), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(442), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1386), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_LBRACE] = ACTIONS(717), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(314), - [anon_sym_set] = ACTIONS(314), - [anon_sym_async] = ACTIONS(328), - [anon_sym_static] = ACTIONS(314), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(334), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(362), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(708), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1637), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_sequence_expression] = STATE(1595), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(340), + [anon_sym_set] = ACTIONS(340), + [anon_sym_async] = ACTIONS(354), + [anon_sym_static] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(390), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [136] = { - [sym_import] = STATE(431), - [sym_statement_block] = STATE(441), - [sym_parenthesized_expression] = STATE(405), - [sym_expression] = STATE(688), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(405), - [sym_subscript_expression] = STATE(405), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(832), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1440), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1418), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(402), - [anon_sym_export] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(715), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(408), - [anon_sym_get] = ACTIONS(402), - [anon_sym_set] = ACTIONS(402), - [anon_sym_async] = ACTIONS(410), - [anon_sym_static] = ACTIONS(402), - [anon_sym_yield] = ACTIONS(412), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(416), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(420), - [anon_sym_DASH] = ACTIONS(420), - [anon_sym_BANG] = ACTIONS(422), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_typeof] = ACTIONS(420), - [anon_sym_void] = ACTIONS(420), - [anon_sym_delete] = ACTIONS(420), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(426), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(418), + [sym_expression] = STATE(784), + [sym_primary_expression] = STATE(517), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(609), + [sym_function_expression] = STATE(609), + [sym_generator_function] = STATE(609), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(539), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(418), + [sym_subscript_expression] = STATE(418), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(939), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1572), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(771), + [anon_sym_export] = ACTIONS(771), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_import] = ACTIONS(398), + [anon_sym_let] = ACTIONS(771), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(464), + [anon_sym_get] = ACTIONS(771), + [anon_sym_set] = ACTIONS(771), + [anon_sym_async] = ACTIONS(773), + [anon_sym_static] = ACTIONS(771), + [anon_sym_yield] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DOT] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(408), + [anon_sym_function] = ACTIONS(410), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(731), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [137] = { - [sym_import] = STATE(431), - [sym_statement_block] = STATE(468), - [sym_parenthesized_expression] = STATE(405), - [sym_expression] = STATE(703), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(405), - [sym_subscript_expression] = STATE(405), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(832), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1440), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1418), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(402), - [anon_sym_export] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(715), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(408), - [anon_sym_get] = ACTIONS(402), - [anon_sym_set] = ACTIONS(402), - [anon_sym_async] = ACTIONS(410), - [anon_sym_static] = ACTIONS(402), - [anon_sym_yield] = ACTIONS(412), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(582), + [sym_import] = STATE(1156), + [sym_statement_block] = STATE(573), + [sym_parenthesized_expression] = STATE(436), + [sym_expression] = STATE(621), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_function_expression] = STATE(609), + [sym_generator_function] = STATE(609), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(436), + [sym_subscript_expression] = STATE(436), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(940), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1551), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1550), + [aux_sym_export_statement_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(392), + [anon_sym_export] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(723), + [anon_sym_import] = ACTIONS(398), + [anon_sym_let] = ACTIONS(392), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(400), + [anon_sym_get] = ACTIONS(392), + [anon_sym_set] = ACTIONS(392), + [anon_sym_async] = ACTIONS(402), + [anon_sym_static] = ACTIONS(392), + [anon_sym_yield] = ACTIONS(404), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(408), + [anon_sym_function] = ACTIONS(410), + [anon_sym_new] = ACTIONS(412), + [anon_sym_PLUS] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(414), [anon_sym_SLASH] = ACTIONS(416), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(420), - [anon_sym_DASH] = ACTIONS(420), - [anon_sym_BANG] = ACTIONS(422), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_typeof] = ACTIONS(420), - [anon_sym_void] = ACTIONS(420), - [anon_sym_delete] = ACTIONS(420), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(426), - [anon_sym_AT] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(418), + [anon_sym_TILDE] = ACTIONS(418), + [anon_sym_typeof] = ACTIONS(414), + [anon_sym_void] = ACTIONS(414), + [anon_sym_delete] = ACTIONS(414), + [anon_sym_PLUS_PLUS] = ACTIONS(420), + [anon_sym_DASH_DASH] = ACTIONS(420), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(422), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(424), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [138] = { - [sym_import] = STATE(431), - [sym_statement_block] = STATE(472), - [sym_parenthesized_expression] = STATE(405), - [sym_expression] = STATE(704), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(405), - [sym_subscript_expression] = STATE(405), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(832), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1440), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1418), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(402), - [anon_sym_export] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(715), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(408), - [anon_sym_get] = ACTIONS(402), - [anon_sym_set] = ACTIONS(402), - [anon_sym_async] = ACTIONS(410), - [anon_sym_static] = ACTIONS(402), - [anon_sym_yield] = ACTIONS(412), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(416), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(420), - [anon_sym_DASH] = ACTIONS(420), - [anon_sym_BANG] = ACTIONS(422), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_typeof] = ACTIONS(420), - [anon_sym_void] = ACTIONS(420), - [anon_sym_delete] = ACTIONS(420), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(426), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(723), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1637), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_sequence_expression] = STATE(1616), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(340), + [anon_sym_set] = ACTIONS(340), + [anon_sym_async] = ACTIONS(354), + [anon_sym_static] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(390), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [139] = { - [sym_import] = STATE(431), - [sym_statement_block] = STATE(475), - [sym_parenthesized_expression] = STATE(405), - [sym_expression] = STATE(705), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(405), - [sym_subscript_expression] = STATE(405), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(832), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1440), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1418), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(402), - [anon_sym_export] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(715), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(408), - [anon_sym_get] = ACTIONS(402), - [anon_sym_set] = ACTIONS(402), - [anon_sym_async] = ACTIONS(410), - [anon_sym_static] = ACTIONS(402), - [anon_sym_yield] = ACTIONS(412), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(416), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(420), - [anon_sym_DASH] = ACTIONS(420), - [anon_sym_BANG] = ACTIONS(422), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_typeof] = ACTIONS(420), - [anon_sym_void] = ACTIONS(420), - [anon_sym_delete] = ACTIONS(420), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(426), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1156), + [sym_statement_block] = STATE(579), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(580), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_function_expression] = STATE(609), + [sym_generator_function] = STATE(609), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(426), + [anon_sym_export] = ACTIONS(426), + [anon_sym_LBRACE] = ACTIONS(723), + [anon_sym_import] = ACTIONS(398), + [anon_sym_let] = ACTIONS(426), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(426), + [anon_sym_set] = ACTIONS(426), + [anon_sym_async] = ACTIONS(430), + [anon_sym_static] = ACTIONS(426), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(408), + [anon_sym_function] = ACTIONS(410), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [140] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(364), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), [sym_expression] = STATE(722), - [sym_primary_expression] = STATE(415), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(412), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(364), - [sym_subscript_expression] = STATE(364), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(833), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1383), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1418), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(739), - [anon_sym_export] = ACTIONS(739), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(432), - [anon_sym_get] = ACTIONS(739), - [anon_sym_set] = ACTIONS(739), - [anon_sym_async] = ACTIONS(741), - [anon_sym_static] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(416), - [anon_sym_DOT] = ACTIONS(719), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_BANG] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(442), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(444), - [anon_sym_DASH_DASH] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(446), - [anon_sym_AT] = ACTIONS(85), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1637), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_sequence_expression] = STATE(1578), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(340), + [anon_sym_set] = ACTIONS(340), + [anon_sym_async] = ACTIONS(354), + [anon_sym_static] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(390), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [141] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(453), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1386), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_sequence_expression] = STATE(1055), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_LBRACE] = ACTIONS(318), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(314), - [anon_sym_set] = ACTIONS(314), - [anon_sym_async] = ACTIONS(328), - [anon_sym_static] = ACTIONS(314), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(334), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(362), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1156), + [sym_statement_block] = STATE(634), + [sym_parenthesized_expression] = STATE(436), + [sym_expression] = STATE(660), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_function_expression] = STATE(609), + [sym_generator_function] = STATE(609), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(436), + [sym_subscript_expression] = STATE(436), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(940), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1551), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1550), + [aux_sym_export_statement_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(392), + [anon_sym_export] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(723), + [anon_sym_import] = ACTIONS(398), + [anon_sym_let] = ACTIONS(392), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(400), + [anon_sym_get] = ACTIONS(392), + [anon_sym_set] = ACTIONS(392), + [anon_sym_async] = ACTIONS(402), + [anon_sym_static] = ACTIONS(392), + [anon_sym_yield] = ACTIONS(404), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(408), + [anon_sym_function] = ACTIONS(410), + [anon_sym_new] = ACTIONS(412), + [anon_sym_PLUS] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(414), + [anon_sym_SLASH] = ACTIONS(416), + [anon_sym_BANG] = ACTIONS(418), + [anon_sym_TILDE] = ACTIONS(418), + [anon_sym_typeof] = ACTIONS(414), + [anon_sym_void] = ACTIONS(414), + [anon_sym_delete] = ACTIONS(414), + [anon_sym_PLUS_PLUS] = ACTIONS(420), + [anon_sym_DASH_DASH] = ACTIONS(420), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(422), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(424), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [142] = { - [sym_import] = STATE(595), - [sym_parenthesized_expression] = STATE(388), - [sym_expression] = STATE(629), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_function] = STATE(595), - [sym_generator_function] = STATE(595), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_sequence_expression] = STATE(1303), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_export_statement_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(364), - [anon_sym_export] = ACTIONS(364), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_import] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(364), - [anon_sym_set] = ACTIONS(364), - [anon_sym_async] = ACTIONS(372), - [anon_sym_static] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(376), - [anon_sym_function] = ACTIONS(378), - [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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(696), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1637), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_sequence_expression] = STATE(1569), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(340), + [anon_sym_set] = ACTIONS(340), + [anon_sym_async] = ACTIONS(354), + [anon_sym_static] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(390), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [143] = { - [sym_import] = STATE(595), - [sym_parenthesized_expression] = STATE(388), - [sym_expression] = STATE(507), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_function] = STATE(595), - [sym_generator_function] = STATE(595), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_export_statement_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(364), - [anon_sym_export] = ACTIONS(364), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_import] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(364), - [anon_sym_set] = ACTIONS(364), - [anon_sym_async] = ACTIONS(372), - [anon_sym_static] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(376), - [anon_sym_function] = ACTIONS(378), - [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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_namespace_export] = STATE(1481), + [sym_export_clause] = STATE(1171), + [sym_declaration] = STATE(380), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_class_declaration] = STATE(346), + [sym_function_declaration] = STATE(346), + [sym_generator_function_declaration] = STATE(346), + [sym_decorator] = STATE(933), + [aux_sym_export_statement_repeat1] = STATE(1172), + [aux_sym_object_repeat1] = STATE(1275), + [aux_sym_object_pattern_repeat1] = STATE(1241), + [anon_sym_STAR] = ACTIONS(737), + [anon_sym_SEMI] = ACTIONS(739), + [anon_sym_default] = ACTIONS(741), + [anon_sym_LBRACE] = ACTIONS(743), + [anon_sym_COMMA] = ACTIONS(739), + [anon_sym_RBRACE] = ACTIONS(775), + [anon_sym_var] = ACTIONS(747), + [anon_sym_let] = ACTIONS(749), + [anon_sym_const] = ACTIONS(749), + [anon_sym_LPAREN] = ACTIONS(751), + [anon_sym_async] = ACTIONS(754), + [anon_sym_in] = ACTIONS(756), + [anon_sym_COLON] = ACTIONS(758), + [anon_sym_EQ] = ACTIONS(761), + [anon_sym_LBRACK] = ACTIONS(739), + [anon_sym_GT] = ACTIONS(756), + [anon_sym_LT] = ACTIONS(756), + [anon_sym_DOT] = ACTIONS(739), + [anon_sym_class] = ACTIONS(763), + [anon_sym_function] = ACTIONS(765), + [anon_sym_EQ_GT] = ACTIONS(767), + [sym_optional_chain] = ACTIONS(739), + [anon_sym_PLUS_EQ] = ACTIONS(769), + [anon_sym_DASH_EQ] = ACTIONS(769), + [anon_sym_STAR_EQ] = ACTIONS(769), + [anon_sym_SLASH_EQ] = ACTIONS(769), + [anon_sym_PERCENT_EQ] = ACTIONS(769), + [anon_sym_CARET_EQ] = ACTIONS(769), + [anon_sym_AMP_EQ] = ACTIONS(769), + [anon_sym_PIPE_EQ] = ACTIONS(769), + [anon_sym_GT_GT_EQ] = ACTIONS(769), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(769), + [anon_sym_LT_LT_EQ] = ACTIONS(769), + [anon_sym_STAR_STAR_EQ] = ACTIONS(769), + [anon_sym_AMP_AMP_EQ] = ACTIONS(769), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(769), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(769), + [anon_sym_AMP_AMP] = ACTIONS(756), + [anon_sym_PIPE_PIPE] = ACTIONS(756), + [anon_sym_GT_GT] = ACTIONS(756), + [anon_sym_GT_GT_GT] = ACTIONS(756), + [anon_sym_LT_LT] = ACTIONS(756), + [anon_sym_AMP] = ACTIONS(756), + [anon_sym_CARET] = ACTIONS(756), + [anon_sym_PIPE] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(756), + [anon_sym_PERCENT] = ACTIONS(756), + [anon_sym_STAR_STAR] = ACTIONS(756), + [anon_sym_LT_EQ] = ACTIONS(739), + [anon_sym_EQ_EQ] = ACTIONS(756), + [anon_sym_EQ_EQ_EQ] = ACTIONS(739), + [anon_sym_BANG_EQ] = ACTIONS(756), + [anon_sym_BANG_EQ_EQ] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(739), + [anon_sym_QMARK_QMARK] = ACTIONS(756), + [anon_sym_instanceof] = ACTIONS(739), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(739), + [anon_sym_AT] = ACTIONS(91), + [sym_automatic_semicolon] = ACTIONS(739), + [sym_ternary_qmark] = ACTIONS(739), + [sym_html_comment] = ACTIONS(5), }, [144] = { - [sym_import] = STATE(595), - [sym_parenthesized_expression] = STATE(388), - [sym_expression] = STATE(525), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_function] = STATE(595), - [sym_generator_function] = STATE(595), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_export_statement_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(364), - [anon_sym_export] = ACTIONS(364), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_import] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(364), - [anon_sym_set] = ACTIONS(364), - [anon_sym_async] = ACTIONS(372), - [anon_sym_static] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(376), - [anon_sym_function] = ACTIONS(378), - [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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_statement_block] = STATE(500), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(750), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(935), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1641), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1625), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(432), + [anon_sym_export] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(733), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(432), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(438), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), + [anon_sym_async] = ACTIONS(440), + [anon_sym_static] = ACTIONS(432), + [anon_sym_yield] = ACTIONS(442), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(446), + [anon_sym_PLUS] = ACTIONS(448), + [anon_sym_DASH] = ACTIONS(448), + [anon_sym_SLASH] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_TILDE] = ACTIONS(452), + [anon_sym_typeof] = ACTIONS(448), + [anon_sym_void] = ACTIONS(448), + [anon_sym_delete] = ACTIONS(448), + [anon_sym_PLUS_PLUS] = ACTIONS(454), + [anon_sym_DASH_DASH] = ACTIONS(454), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(456), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(458), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [145] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(364), - [sym_expression] = STATE(714), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(364), - [sym_subscript_expression] = STATE(364), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(833), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1383), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1388), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(428), - [anon_sym_export] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(432), - [anon_sym_get] = ACTIONS(428), - [anon_sym_set] = ACTIONS(428), - [anon_sym_async] = ACTIONS(434), - [anon_sym_static] = ACTIONS(428), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_BANG] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(442), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(444), - [anon_sym_DASH_DASH] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(446), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_statement_block] = STATE(504), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(749), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(935), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1641), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1625), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(432), + [anon_sym_export] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(733), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(432), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(438), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), + [anon_sym_async] = ACTIONS(440), + [anon_sym_static] = ACTIONS(432), + [anon_sym_yield] = ACTIONS(442), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(446), + [anon_sym_PLUS] = ACTIONS(448), + [anon_sym_DASH] = ACTIONS(448), + [anon_sym_SLASH] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_TILDE] = ACTIONS(452), + [anon_sym_typeof] = ACTIONS(448), + [anon_sym_void] = ACTIONS(448), + [anon_sym_delete] = ACTIONS(448), + [anon_sym_PLUS_PLUS] = ACTIONS(454), + [anon_sym_DASH_DASH] = ACTIONS(454), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(456), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(458), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [146] = { - [sym_import] = STATE(595), - [sym_parenthesized_expression] = STATE(388), - [sym_expression] = STATE(508), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_function] = STATE(595), - [sym_generator_function] = STATE(595), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_export_statement_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(364), - [anon_sym_export] = ACTIONS(364), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_import] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(364), - [anon_sym_set] = ACTIONS(364), - [anon_sym_async] = ACTIONS(372), - [anon_sym_static] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(376), - [anon_sym_function] = ACTIONS(378), - [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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_statement_block] = STATE(508), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(768), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(935), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1641), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1625), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(432), + [anon_sym_export] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(733), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(432), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(438), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), + [anon_sym_async] = ACTIONS(440), + [anon_sym_static] = ACTIONS(432), + [anon_sym_yield] = ACTIONS(442), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(446), + [anon_sym_PLUS] = ACTIONS(448), + [anon_sym_DASH] = ACTIONS(448), + [anon_sym_SLASH] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_TILDE] = ACTIONS(452), + [anon_sym_typeof] = ACTIONS(448), + [anon_sym_void] = ACTIONS(448), + [anon_sym_delete] = ACTIONS(448), + [anon_sym_PLUS_PLUS] = ACTIONS(454), + [anon_sym_DASH_DASH] = ACTIONS(454), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(456), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(458), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [147] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(645), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1386), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_LBRACE] = ACTIONS(318), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(314), - [anon_sym_set] = ACTIONS(314), - [anon_sym_async] = ACTIONS(328), - [anon_sym_static] = ACTIONS(314), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(334), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(362), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(709), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1637), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_sequence_expression] = STATE(1629), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(340), + [anon_sym_set] = ACTIONS(340), + [anon_sym_async] = ACTIONS(354), + [anon_sym_static] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(390), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [148] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(364), - [sym_expression] = STATE(709), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(364), - [sym_subscript_expression] = STATE(364), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(833), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1383), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1388), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(428), - [anon_sym_export] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(432), - [anon_sym_get] = ACTIONS(428), - [anon_sym_set] = ACTIONS(428), - [anon_sym_async] = ACTIONS(434), - [anon_sym_static] = ACTIONS(428), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_BANG] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(442), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(444), - [anon_sym_DASH_DASH] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(446), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1156), + [sym_statement_block] = STATE(602), + [sym_parenthesized_expression] = STATE(436), + [sym_expression] = STATE(622), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_function_expression] = STATE(609), + [sym_generator_function] = STATE(609), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(436), + [sym_subscript_expression] = STATE(436), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(940), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1551), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1550), + [aux_sym_export_statement_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(392), + [anon_sym_export] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(723), + [anon_sym_import] = ACTIONS(398), + [anon_sym_let] = ACTIONS(392), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(400), + [anon_sym_get] = ACTIONS(392), + [anon_sym_set] = ACTIONS(392), + [anon_sym_async] = ACTIONS(402), + [anon_sym_static] = ACTIONS(392), + [anon_sym_yield] = ACTIONS(404), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(408), + [anon_sym_function] = ACTIONS(410), + [anon_sym_new] = ACTIONS(412), + [anon_sym_PLUS] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(414), + [anon_sym_SLASH] = ACTIONS(416), + [anon_sym_BANG] = ACTIONS(418), + [anon_sym_TILDE] = ACTIONS(418), + [anon_sym_typeof] = ACTIONS(414), + [anon_sym_void] = ACTIONS(414), + [anon_sym_delete] = ACTIONS(414), + [anon_sym_PLUS_PLUS] = ACTIONS(420), + [anon_sym_DASH_DASH] = ACTIONS(420), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(422), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(424), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [149] = { - [sym_import] = STATE(595), - [sym_parenthesized_expression] = STATE(388), - [sym_expression] = STATE(548), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_function] = STATE(595), - [sym_generator_function] = STATE(595), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_export_statement_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(364), - [anon_sym_export] = ACTIONS(364), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_import] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(364), - [anon_sym_set] = ACTIONS(364), - [anon_sym_async] = ACTIONS(372), - [anon_sym_static] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(376), - [anon_sym_function] = ACTIONS(378), - [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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(724), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1637), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_sequence_expression] = STATE(1606), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(340), + [anon_sym_set] = ACTIONS(340), + [anon_sym_async] = ACTIONS(354), + [anon_sym_static] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(390), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [150] = { - [sym_import] = STATE(595), - [sym_parenthesized_expression] = STATE(388), - [sym_expression] = STATE(549), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_function] = STATE(595), - [sym_generator_function] = STATE(595), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_export_statement_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(364), - [anon_sym_export] = ACTIONS(364), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_import] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(364), - [anon_sym_set] = ACTIONS(364), - [anon_sym_async] = ACTIONS(372), - [anon_sym_static] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(376), - [anon_sym_function] = ACTIONS(378), - [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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_namespace_export] = STATE(1481), + [sym_export_clause] = STATE(1171), + [sym_declaration] = STATE(380), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_class_declaration] = STATE(346), + [sym_function_declaration] = STATE(346), + [sym_generator_function_declaration] = STATE(346), + [sym_decorator] = STATE(933), + [aux_sym_export_statement_repeat1] = STATE(1172), + [aux_sym_object_repeat1] = STATE(1275), + [aux_sym_object_pattern_repeat1] = STATE(1241), + [anon_sym_STAR] = ACTIONS(737), + [anon_sym_SEMI] = ACTIONS(739), + [anon_sym_default] = ACTIONS(741), + [anon_sym_LBRACE] = ACTIONS(743), + [anon_sym_COMMA] = ACTIONS(739), + [anon_sym_RBRACE] = ACTIONS(777), + [anon_sym_var] = ACTIONS(747), + [anon_sym_let] = ACTIONS(749), + [anon_sym_const] = ACTIONS(749), + [anon_sym_LPAREN] = ACTIONS(751), + [anon_sym_async] = ACTIONS(754), + [anon_sym_in] = ACTIONS(756), + [anon_sym_COLON] = ACTIONS(758), + [anon_sym_EQ] = ACTIONS(761), + [anon_sym_LBRACK] = ACTIONS(739), + [anon_sym_GT] = ACTIONS(756), + [anon_sym_LT] = ACTIONS(756), + [anon_sym_DOT] = ACTIONS(739), + [anon_sym_class] = ACTIONS(763), + [anon_sym_function] = ACTIONS(765), + [anon_sym_EQ_GT] = ACTIONS(767), + [sym_optional_chain] = ACTIONS(739), + [anon_sym_PLUS_EQ] = ACTIONS(769), + [anon_sym_DASH_EQ] = ACTIONS(769), + [anon_sym_STAR_EQ] = ACTIONS(769), + [anon_sym_SLASH_EQ] = ACTIONS(769), + [anon_sym_PERCENT_EQ] = ACTIONS(769), + [anon_sym_CARET_EQ] = ACTIONS(769), + [anon_sym_AMP_EQ] = ACTIONS(769), + [anon_sym_PIPE_EQ] = ACTIONS(769), + [anon_sym_GT_GT_EQ] = ACTIONS(769), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(769), + [anon_sym_LT_LT_EQ] = ACTIONS(769), + [anon_sym_STAR_STAR_EQ] = ACTIONS(769), + [anon_sym_AMP_AMP_EQ] = ACTIONS(769), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(769), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(769), + [anon_sym_AMP_AMP] = ACTIONS(756), + [anon_sym_PIPE_PIPE] = ACTIONS(756), + [anon_sym_GT_GT] = ACTIONS(756), + [anon_sym_GT_GT_GT] = ACTIONS(756), + [anon_sym_LT_LT] = ACTIONS(756), + [anon_sym_AMP] = ACTIONS(756), + [anon_sym_CARET] = ACTIONS(756), + [anon_sym_PIPE] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(756), + [anon_sym_PERCENT] = ACTIONS(756), + [anon_sym_STAR_STAR] = ACTIONS(756), + [anon_sym_LT_EQ] = ACTIONS(739), + [anon_sym_EQ_EQ] = ACTIONS(756), + [anon_sym_EQ_EQ_EQ] = ACTIONS(739), + [anon_sym_BANG_EQ] = ACTIONS(756), + [anon_sym_BANG_EQ_EQ] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(739), + [anon_sym_QMARK_QMARK] = ACTIONS(756), + [anon_sym_instanceof] = ACTIONS(739), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(739), + [anon_sym_AT] = ACTIONS(91), + [sym_automatic_semicolon] = ACTIONS(739), + [sym_ternary_qmark] = ACTIONS(739), + [sym_html_comment] = ACTIONS(5), }, [151] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(517), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(397), - [sym_subscript_expression] = STATE(397), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1026), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(743), - [anon_sym_export] = ACTIONS(743), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(743), - [anon_sym_set] = ACTIONS(743), - [anon_sym_async] = ACTIONS(745), - [anon_sym_static] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(747), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(403), + [sym_expression] = STATE(786), + [sym_primary_expression] = STATE(448), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(449), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(403), + [sym_subscript_expression] = STATE(403), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(939), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1572), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1635), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(460), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(464), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), + [anon_sym_async] = ACTIONS(466), + [anon_sym_static] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [152] = { - [sym_import] = STATE(595), - [sym_parenthesized_expression] = STATE(388), - [sym_expression] = STATE(550), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_function] = STATE(595), - [sym_generator_function] = STATE(595), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_export_statement_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(364), - [anon_sym_export] = ACTIONS(364), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_import] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(364), - [anon_sym_set] = ACTIONS(364), - [anon_sym_async] = ACTIONS(372), - [anon_sym_static] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(376), - [anon_sym_function] = ACTIONS(378), - [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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(403), + [sym_expression] = STATE(786), + [sym_primary_expression] = STATE(448), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(449), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(403), + [sym_subscript_expression] = STATE(403), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(939), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1572), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(781), + [anon_sym_export] = ACTIONS(781), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(781), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(464), + [anon_sym_get] = ACTIONS(781), + [anon_sym_set] = ACTIONS(781), + [anon_sym_async] = ACTIONS(783), + [anon_sym_static] = ACTIONS(781), + [anon_sym_yield] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [153] = { - [sym_import] = STATE(595), - [sym_parenthesized_expression] = STATE(388), - [sym_expression] = STATE(551), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_function] = STATE(595), - [sym_generator_function] = STATE(595), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_export_statement_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(364), - [anon_sym_export] = ACTIONS(364), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_import] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(364), - [anon_sym_set] = ACTIONS(364), - [anon_sym_async] = ACTIONS(372), - [anon_sym_static] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(376), - [anon_sym_function] = ACTIONS(378), - [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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_statement_block] = STATE(508), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(538), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1637), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_LBRACE] = ACTIONS(735), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(340), + [anon_sym_set] = ACTIONS(340), + [anon_sym_async] = ACTIONS(354), + [anon_sym_static] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(390), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [154] = { - [sym_import] = STATE(595), - [sym_parenthesized_expression] = STATE(388), - [sym_expression] = STATE(552), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_function] = STATE(595), - [sym_generator_function] = STATE(595), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_export_statement_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(364), - [anon_sym_export] = ACTIONS(364), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_import] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(364), - [anon_sym_set] = ACTIONS(364), - [anon_sym_async] = ACTIONS(372), - [anon_sym_static] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(376), - [anon_sym_function] = ACTIONS(378), - [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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(695), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1637), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_sequence_expression] = STATE(1548), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(340), + [anon_sym_set] = ACTIONS(340), + [anon_sym_async] = ACTIONS(354), + [anon_sym_static] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(390), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [155] = { - [sym_import] = STATE(595), - [sym_parenthesized_expression] = STATE(388), - [sym_expression] = STATE(553), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_function] = STATE(595), - [sym_generator_function] = STATE(595), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_export_statement_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(364), - [anon_sym_export] = ACTIONS(364), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_import] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(364), - [anon_sym_set] = ACTIONS(364), - [anon_sym_async] = ACTIONS(372), - [anon_sym_static] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(376), - [anon_sym_function] = ACTIONS(378), - [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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(403), + [sym_expression] = STATE(786), + [sym_primary_expression] = STATE(448), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(449), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(403), + [sym_subscript_expression] = STATE(403), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(939), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1572), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1625), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(785), + [anon_sym_export] = ACTIONS(785), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(785), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(464), + [anon_sym_get] = ACTIONS(785), + [anon_sym_set] = ACTIONS(785), + [anon_sym_async] = ACTIONS(787), + [anon_sym_static] = ACTIONS(785), + [anon_sym_yield] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(446), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [156] = { - [sym_import] = STATE(595), - [sym_parenthesized_expression] = STATE(388), - [sym_expression] = STATE(554), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_function] = STATE(595), - [sym_generator_function] = STATE(595), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_export_statement_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(364), - [anon_sym_export] = ACTIONS(364), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_import] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(364), - [anon_sym_set] = ACTIONS(364), - [anon_sym_async] = ACTIONS(372), - [anon_sym_static] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(376), - [anon_sym_function] = ACTIONS(378), - [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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(693), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1637), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_sequence_expression] = STATE(1549), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(340), + [anon_sym_set] = ACTIONS(340), + [anon_sym_async] = ACTIONS(354), + [anon_sym_static] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(390), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [157] = { - [sym_import] = STATE(595), - [sym_parenthesized_expression] = STATE(388), - [sym_expression] = STATE(555), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_function] = STATE(595), - [sym_generator_function] = STATE(595), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_export_statement_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(364), - [anon_sym_export] = ACTIONS(364), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_import] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(364), - [anon_sym_set] = ACTIONS(364), - [anon_sym_async] = ACTIONS(372), - [anon_sym_static] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(376), - [anon_sym_function] = ACTIONS(378), - [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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_statement_block] = STATE(508), + [sym_parenthesized_expression] = STATE(403), + [sym_expression] = STATE(714), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(403), + [sym_subscript_expression] = STATE(403), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(939), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1572), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1635), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(460), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(733), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(464), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), + [anon_sym_async] = ACTIONS(466), + [anon_sym_static] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [158] = { - [sym_import] = STATE(595), - [sym_parenthesized_expression] = STATE(388), - [sym_expression] = STATE(556), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_function] = STATE(595), - [sym_generator_function] = STATE(595), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_export_statement_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(364), - [anon_sym_export] = ACTIONS(364), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_import] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(364), - [anon_sym_set] = ACTIONS(364), - [anon_sym_async] = ACTIONS(372), - [anon_sym_static] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(376), - [anon_sym_function] = ACTIONS(378), - [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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_statement_block] = STATE(504), + [sym_parenthesized_expression] = STATE(403), + [sym_expression] = STATE(697), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(403), + [sym_subscript_expression] = STATE(403), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(939), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1572), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1635), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(460), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(733), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(464), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), + [anon_sym_async] = ACTIONS(466), + [anon_sym_static] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [159] = { - [sym_import] = STATE(595), - [sym_parenthesized_expression] = STATE(388), - [sym_expression] = STATE(464), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_function] = STATE(595), - [sym_generator_function] = STATE(595), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_export_statement_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(364), - [anon_sym_export] = ACTIONS(364), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_import] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(364), - [anon_sym_set] = ACTIONS(364), - [anon_sym_async] = ACTIONS(372), - [anon_sym_static] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(376), - [anon_sym_function] = ACTIONS(378), - [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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_statement_block] = STATE(500), + [sym_parenthesized_expression] = STATE(403), + [sym_expression] = STATE(690), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(403), + [sym_subscript_expression] = STATE(403), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(939), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1572), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1635), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(460), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(733), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(464), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), + [anon_sym_async] = ACTIONS(466), + [anon_sym_static] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [160] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(411), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1386), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_LBRACE] = ACTIONS(318), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(314), - [anon_sym_set] = ACTIONS(314), - [anon_sym_async] = ACTIONS(328), - [anon_sym_static] = ACTIONS(314), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(334), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(362), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_statement_block] = STATE(495), + [sym_parenthesized_expression] = STATE(403), + [sym_expression] = STATE(731), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(403), + [sym_subscript_expression] = STATE(403), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(939), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1572), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1635), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(460), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(733), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(464), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), + [anon_sym_async] = ACTIONS(466), + [anon_sym_static] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [161] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(410), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1386), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_LBRACE] = ACTIONS(318), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(314), - [anon_sym_set] = ACTIONS(314), - [anon_sym_async] = ACTIONS(328), - [anon_sym_static] = ACTIONS(314), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(334), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(362), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_statement_block] = STATE(504), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(536), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1637), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_LBRACE] = ACTIONS(735), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(340), + [anon_sym_set] = ACTIONS(340), + [anon_sym_async] = ACTIONS(354), + [anon_sym_static] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(390), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [162] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(440), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1386), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_LBRACE] = ACTIONS(318), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(314), - [anon_sym_set] = ACTIONS(314), - [anon_sym_async] = ACTIONS(328), - [anon_sym_static] = ACTIONS(314), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(334), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(362), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(575), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_function_expression] = STATE(609), + [sym_generator_function] = STATE(609), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(426), + [anon_sym_export] = ACTIONS(426), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_import] = ACTIONS(398), + [anon_sym_let] = ACTIONS(426), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(426), + [anon_sym_set] = ACTIONS(426), + [anon_sym_async] = ACTIONS(430), + [anon_sym_static] = ACTIONS(426), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(408), + [anon_sym_function] = ACTIONS(410), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [163] = { - [sym_import] = STATE(595), - [sym_parenthesized_expression] = STATE(388), - [sym_expression] = STATE(547), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_function] = STATE(595), - [sym_generator_function] = STATE(595), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_export_statement_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(364), - [anon_sym_export] = ACTIONS(364), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_import] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(364), - [anon_sym_set] = ACTIONS(364), - [anon_sym_async] = ACTIONS(372), - [anon_sym_static] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(376), - [anon_sym_function] = ACTIONS(378), - [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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(436), + [sym_expression] = STATE(647), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_function_expression] = STATE(609), + [sym_generator_function] = STATE(609), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(436), + [sym_subscript_expression] = STATE(436), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(940), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1551), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1550), + [aux_sym_export_statement_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(392), + [anon_sym_export] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_import] = ACTIONS(398), + [anon_sym_let] = ACTIONS(392), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(400), + [anon_sym_get] = ACTIONS(392), + [anon_sym_set] = ACTIONS(392), + [anon_sym_async] = ACTIONS(402), + [anon_sym_static] = ACTIONS(392), + [anon_sym_yield] = ACTIONS(404), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(408), + [anon_sym_function] = ACTIONS(410), + [anon_sym_new] = ACTIONS(412), + [anon_sym_PLUS] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(414), + [anon_sym_SLASH] = ACTIONS(416), + [anon_sym_BANG] = ACTIONS(418), + [anon_sym_TILDE] = ACTIONS(418), + [anon_sym_typeof] = ACTIONS(414), + [anon_sym_void] = ACTIONS(414), + [anon_sym_delete] = ACTIONS(414), + [anon_sym_PLUS_PLUS] = ACTIONS(420), + [anon_sym_DASH_DASH] = ACTIONS(420), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(422), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(424), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [164] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(420), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1386), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_LBRACE] = ACTIONS(318), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(314), - [anon_sym_set] = ACTIONS(314), - [anon_sym_async] = ACTIONS(328), - [anon_sym_static] = ACTIONS(314), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(334), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(362), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(403), + [sym_expression] = STATE(687), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(403), + [sym_subscript_expression] = STATE(403), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(939), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1572), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1635), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(460), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(464), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), + [anon_sym_async] = ACTIONS(466), + [anon_sym_static] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [165] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(452), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1386), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_LBRACE] = ACTIONS(318), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(314), - [anon_sym_set] = ACTIONS(314), - [anon_sym_async] = ACTIONS(328), - [anon_sym_static] = ACTIONS(314), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(334), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(362), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(403), + [sym_expression] = STATE(730), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(403), + [sym_subscript_expression] = STATE(403), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(939), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1572), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1635), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(460), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(464), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), + [anon_sym_async] = ACTIONS(466), + [anon_sym_static] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [166] = { - [sym_import] = STATE(595), - [sym_parenthesized_expression] = STATE(388), - [sym_expression] = STATE(529), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_function] = STATE(595), - [sym_generator_function] = STATE(595), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_export_statement_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(364), - [anon_sym_export] = ACTIONS(364), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_import] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(364), - [anon_sym_set] = ACTIONS(364), - [anon_sym_async] = ACTIONS(372), - [anon_sym_static] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(376), - [anon_sym_function] = ACTIONS(378), - [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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(403), + [sym_expression] = STATE(683), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(403), + [sym_subscript_expression] = STATE(403), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(939), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1572), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1635), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(460), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(464), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), + [anon_sym_async] = ACTIONS(466), + [anon_sym_static] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [167] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(455), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1386), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_LBRACE] = ACTIONS(318), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(314), - [anon_sym_set] = ACTIONS(314), - [anon_sym_async] = ACTIONS(328), - [anon_sym_static] = ACTIONS(314), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(334), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(362), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(403), + [sym_expression] = STATE(691), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(403), + [sym_subscript_expression] = STATE(403), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(939), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1572), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1635), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(460), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(464), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), + [anon_sym_async] = ACTIONS(466), + [anon_sym_static] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [168] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(456), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1386), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_LBRACE] = ACTIONS(318), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(314), - [anon_sym_set] = ACTIONS(314), - [anon_sym_async] = ACTIONS(328), - [anon_sym_static] = ACTIONS(314), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(334), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(362), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(403), + [sym_expression] = STATE(692), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(403), + [sym_subscript_expression] = STATE(403), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(939), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1572), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1635), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(460), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(464), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), + [anon_sym_async] = ACTIONS(466), + [anon_sym_static] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [169] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(457), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1386), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_LBRACE] = ACTIONS(318), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(314), - [anon_sym_set] = ACTIONS(314), - [anon_sym_async] = ACTIONS(328), - [anon_sym_static] = ACTIONS(314), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(334), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(362), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(403), + [sym_expression] = STATE(706), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(403), + [sym_subscript_expression] = STATE(403), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(939), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1572), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1635), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(460), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(464), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), + [anon_sym_async] = ACTIONS(466), + [anon_sym_static] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [170] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(458), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1386), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_LBRACE] = ACTIONS(318), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(314), - [anon_sym_set] = ACTIONS(314), - [anon_sym_async] = ACTIONS(328), - [anon_sym_static] = ACTIONS(314), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(334), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(362), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(403), + [sym_expression] = STATE(715), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(403), + [sym_subscript_expression] = STATE(403), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(939), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1572), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1635), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(460), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(464), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), + [anon_sym_async] = ACTIONS(466), + [anon_sym_static] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [171] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(459), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1386), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_LBRACE] = ACTIONS(318), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(314), - [anon_sym_set] = ACTIONS(314), - [anon_sym_async] = ACTIONS(328), - [anon_sym_static] = ACTIONS(314), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(334), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(362), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(403), + [sym_expression] = STATE(716), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(403), + [sym_subscript_expression] = STATE(403), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(939), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1572), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1635), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(460), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(464), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), + [anon_sym_async] = ACTIONS(466), + [anon_sym_static] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [172] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(460), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1386), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_LBRACE] = ACTIONS(318), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(314), - [anon_sym_set] = ACTIONS(314), - [anon_sym_async] = ACTIONS(328), - [anon_sym_static] = ACTIONS(314), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(334), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(362), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(403), + [sym_expression] = STATE(717), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(403), + [sym_subscript_expression] = STATE(403), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(939), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1572), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1635), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(460), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(464), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), + [anon_sym_async] = ACTIONS(466), + [anon_sym_static] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [173] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(461), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1386), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_LBRACE] = ACTIONS(318), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(314), - [anon_sym_set] = ACTIONS(314), - [anon_sym_async] = ACTIONS(328), - [anon_sym_static] = ACTIONS(314), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(334), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(362), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(403), + [sym_expression] = STATE(783), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(403), + [sym_subscript_expression] = STATE(403), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(939), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1572), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1635), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(460), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(464), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), + [anon_sym_async] = ACTIONS(466), + [anon_sym_static] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [174] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(462), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1386), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_LBRACE] = ACTIONS(318), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(314), - [anon_sym_set] = ACTIONS(314), - [anon_sym_async] = ACTIONS(328), - [anon_sym_static] = ACTIONS(314), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(334), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(362), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(403), + [sym_expression] = STATE(718), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(403), + [sym_subscript_expression] = STATE(403), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(939), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1572), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1635), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(460), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(464), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), + [anon_sym_async] = ACTIONS(466), + [anon_sym_static] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [175] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(407), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1386), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_LBRACE] = ACTIONS(318), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(314), - [anon_sym_set] = ACTIONS(314), - [anon_sym_async] = ACTIONS(328), - [anon_sym_static] = ACTIONS(314), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(334), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(362), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(403), + [sym_expression] = STATE(720), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(403), + [sym_subscript_expression] = STATE(403), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(939), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1572), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1635), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(460), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(464), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), + [anon_sym_async] = ACTIONS(466), + [anon_sym_static] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [176] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(463), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1386), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_LBRACE] = ACTIONS(318), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(314), - [anon_sym_set] = ACTIONS(314), - [anon_sym_async] = ACTIONS(328), - [anon_sym_static] = ACTIONS(314), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(334), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(362), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(403), + [sym_expression] = STATE(726), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(403), + [sym_subscript_expression] = STATE(403), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(939), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1572), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1635), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(460), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(464), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), + [anon_sym_async] = ACTIONS(466), + [anon_sym_static] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [177] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(500), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1386), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_LBRACE] = ACTIONS(318), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(314), - [anon_sym_set] = ACTIONS(314), - [anon_sym_async] = ACTIONS(328), - [anon_sym_static] = ACTIONS(314), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(334), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(362), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(403), + [sym_expression] = STATE(729), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(403), + [sym_subscript_expression] = STATE(403), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(939), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1572), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1635), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(460), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(464), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), + [anon_sym_async] = ACTIONS(466), + [anon_sym_static] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [178] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(467), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1386), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_LBRACE] = ACTIONS(318), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(314), - [anon_sym_set] = ACTIONS(314), - [anon_sym_async] = ACTIONS(328), - [anon_sym_static] = ACTIONS(314), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(334), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(362), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(452), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1637), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(340), + [anon_sym_set] = ACTIONS(340), + [anon_sym_async] = ACTIONS(354), + [anon_sym_static] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(390), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [179] = { - [sym_import] = STATE(595), - [sym_parenthesized_expression] = STATE(388), - [sym_expression] = STATE(505), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_function] = STATE(595), - [sym_generator_function] = STATE(595), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_export_statement_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(364), - [anon_sym_export] = ACTIONS(364), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_import] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(364), - [anon_sym_set] = ACTIONS(364), - [anon_sym_async] = ACTIONS(372), - [anon_sym_static] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(376), - [anon_sym_function] = ACTIONS(378), - [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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(403), + [sym_expression] = STATE(732), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(403), + [sym_subscript_expression] = STATE(403), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(939), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1572), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1635), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(460), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(464), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), + [anon_sym_async] = ACTIONS(466), + [anon_sym_static] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [180] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(405), - [sym_expression] = STATE(712), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(405), - [sym_subscript_expression] = STATE(405), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(832), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1440), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1418), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(402), - [anon_sym_export] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(408), - [anon_sym_get] = ACTIONS(402), - [anon_sym_set] = ACTIONS(402), - [anon_sym_async] = ACTIONS(410), - [anon_sym_static] = ACTIONS(402), - [anon_sym_yield] = ACTIONS(412), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(416), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(420), - [anon_sym_DASH] = ACTIONS(420), - [anon_sym_BANG] = ACTIONS(422), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_typeof] = ACTIONS(420), - [anon_sym_void] = ACTIONS(420), - [anon_sym_delete] = ACTIONS(420), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(426), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(403), + [sym_expression] = STATE(452), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(403), + [sym_subscript_expression] = STATE(403), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(939), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1572), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1635), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(460), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(464), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), + [anon_sym_async] = ACTIONS(466), + [anon_sym_static] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [181] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(490), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1386), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_LBRACE] = ACTIONS(318), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(314), - [anon_sym_set] = ACTIONS(314), - [anon_sym_async] = ACTIONS(328), - [anon_sym_static] = ACTIONS(314), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(334), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(362), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(403), + [sym_expression] = STATE(451), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(403), + [sym_subscript_expression] = STATE(403), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(939), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1572), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1635), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(460), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(464), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), + [anon_sym_async] = ACTIONS(466), + [anon_sym_static] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [182] = { - [sym_import] = STATE(595), - [sym_parenthesized_expression] = STATE(388), - [sym_expression] = STATE(519), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_function] = STATE(595), - [sym_generator_function] = STATE(595), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_export_statement_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(364), - [anon_sym_export] = ACTIONS(364), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_import] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(364), - [anon_sym_set] = ACTIONS(364), - [anon_sym_async] = ACTIONS(372), - [anon_sym_static] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(376), - [anon_sym_function] = ACTIONS(378), - [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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(403), + [sym_expression] = STATE(778), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(403), + [sym_subscript_expression] = STATE(403), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(939), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1572), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1635), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(460), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(464), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), + [anon_sym_async] = ACTIONS(466), + [anon_sym_static] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [183] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(409), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1386), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_LBRACE] = ACTIONS(318), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(314), - [anon_sym_set] = ACTIONS(314), - [anon_sym_async] = ACTIONS(328), - [anon_sym_static] = ACTIONS(314), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(334), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(362), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(403), + [sym_expression] = STATE(678), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(403), + [sym_subscript_expression] = STATE(403), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(939), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1572), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1635), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(460), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(464), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), + [anon_sym_async] = ACTIONS(466), + [anon_sym_static] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [184] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(711), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1386), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_LBRACE] = ACTIONS(318), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(314), - [anon_sym_set] = ACTIONS(314), - [anon_sym_async] = ACTIONS(328), - [anon_sym_static] = ACTIONS(314), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(334), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(362), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(757), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1637), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(340), + [anon_sym_set] = ACTIONS(340), + [anon_sym_async] = ACTIONS(354), + [anon_sym_static] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(390), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [185] = { - [sym_import] = STATE(595), - [sym_parenthesized_expression] = STATE(388), - [sym_expression] = STATE(499), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_function] = STATE(595), - [sym_generator_function] = STATE(595), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_export_statement_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(364), - [anon_sym_export] = ACTIONS(364), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_import] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(364), - [anon_sym_set] = ACTIONS(364), - [anon_sym_async] = ACTIONS(372), - [anon_sym_static] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(376), - [anon_sym_function] = ACTIONS(378), - [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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(650), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_function_expression] = STATE(609), + [sym_generator_function] = STATE(609), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(426), + [anon_sym_export] = ACTIONS(426), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_import] = ACTIONS(398), + [anon_sym_let] = ACTIONS(426), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(426), + [anon_sym_set] = ACTIONS(426), + [anon_sym_async] = ACTIONS(430), + [anon_sym_static] = ACTIONS(426), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(408), + [anon_sym_function] = ACTIONS(410), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [186] = { - [sym_import] = STATE(595), - [sym_parenthesized_expression] = STATE(388), - [sym_expression] = STATE(637), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_function] = STATE(595), - [sym_generator_function] = STATE(595), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_export_statement_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(364), - [anon_sym_export] = ACTIONS(364), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_import] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(364), - [anon_sym_set] = ACTIONS(364), - [anon_sym_async] = ACTIONS(372), - [anon_sym_static] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(376), - [anon_sym_function] = ACTIONS(378), - [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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(403), + [sym_expression] = STATE(453), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(403), + [sym_subscript_expression] = STATE(403), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(939), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1572), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1635), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(460), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(464), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), + [anon_sym_async] = ACTIONS(466), + [anon_sym_static] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [187] = { - [sym_import] = STATE(595), - [sym_parenthesized_expression] = STATE(394), - [sym_expression] = STATE(510), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_function] = STATE(595), - [sym_generator_function] = STATE(595), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(394), - [sym_subscript_expression] = STATE(394), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(834), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1357), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1358), - [aux_sym_export_statement_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(380), - [anon_sym_export] = ACTIONS(380), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_import] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(384), - [anon_sym_get] = ACTIONS(380), - [anon_sym_set] = ACTIONS(380), - [anon_sym_async] = ACTIONS(386), - [anon_sym_static] = ACTIONS(380), - [anon_sym_yield] = ACTIONS(388), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(390), - [anon_sym_class] = ACTIONS(376), - [anon_sym_function] = ACTIONS(378), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_TILDE] = ACTIONS(396), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(398), - [anon_sym_DASH_DASH] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(400), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(403), + [sym_expression] = STATE(779), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(403), + [sym_subscript_expression] = STATE(403), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(939), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1572), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1635), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(460), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(464), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), + [anon_sym_async] = ACTIONS(466), + [anon_sym_static] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [188] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(364), - [sym_expression] = STATE(411), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(364), - [sym_subscript_expression] = STATE(364), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(833), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1383), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1388), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(428), - [anon_sym_export] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(432), - [anon_sym_get] = ACTIONS(428), - [anon_sym_set] = ACTIONS(428), - [anon_sym_async] = ACTIONS(434), - [anon_sym_static] = ACTIONS(428), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_BANG] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(442), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(444), - [anon_sym_DASH_DASH] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(446), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(453), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(935), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1641), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1625), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(432), + [anon_sym_export] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(432), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(438), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), + [anon_sym_async] = ACTIONS(440), + [anon_sym_static] = ACTIONS(432), + [anon_sym_yield] = ACTIONS(442), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(446), + [anon_sym_PLUS] = ACTIONS(448), + [anon_sym_DASH] = ACTIONS(448), + [anon_sym_SLASH] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_TILDE] = ACTIONS(452), + [anon_sym_typeof] = ACTIONS(448), + [anon_sym_void] = ACTIONS(448), + [anon_sym_delete] = ACTIONS(448), + [anon_sym_PLUS_PLUS] = ACTIONS(454), + [anon_sym_DASH_DASH] = ACTIONS(454), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(456), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(458), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [189] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(364), - [sym_expression] = STATE(410), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(364), - [sym_subscript_expression] = STATE(364), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(833), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1383), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1388), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(428), - [anon_sym_export] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(432), - [anon_sym_get] = ACTIONS(428), - [anon_sym_set] = ACTIONS(428), - [anon_sym_async] = ACTIONS(434), - [anon_sym_static] = ACTIONS(428), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_BANG] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(442), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(444), - [anon_sym_DASH_DASH] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(446), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(546), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_function_expression] = STATE(609), + [sym_generator_function] = STATE(609), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(426), + [anon_sym_export] = ACTIONS(426), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_import] = ACTIONS(398), + [anon_sym_let] = ACTIONS(426), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(426), + [anon_sym_set] = ACTIONS(426), + [anon_sym_async] = ACTIONS(430), + [anon_sym_static] = ACTIONS(426), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(408), + [anon_sym_function] = ACTIONS(410), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [190] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(364), - [sym_expression] = STATE(650), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(364), - [sym_subscript_expression] = STATE(364), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(833), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1383), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1388), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(428), - [anon_sym_export] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(432), - [anon_sym_get] = ACTIONS(428), - [anon_sym_set] = ACTIONS(428), - [anon_sym_async] = ACTIONS(434), - [anon_sym_static] = ACTIONS(428), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_BANG] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(442), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(444), - [anon_sym_DASH_DASH] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(446), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(565), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_function_expression] = STATE(609), + [sym_generator_function] = STATE(609), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(426), + [anon_sym_export] = ACTIONS(426), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_import] = ACTIONS(398), + [anon_sym_let] = ACTIONS(426), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(426), + [anon_sym_set] = ACTIONS(426), + [anon_sym_async] = ACTIONS(430), + [anon_sym_static] = ACTIONS(426), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(408), + [anon_sym_function] = ACTIONS(410), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [191] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(364), - [sym_expression] = STATE(654), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(364), - [sym_subscript_expression] = STATE(364), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(833), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1383), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1388), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(428), - [anon_sym_export] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(432), - [anon_sym_get] = ACTIONS(428), - [anon_sym_set] = ACTIONS(428), - [anon_sym_async] = ACTIONS(434), - [anon_sym_static] = ACTIONS(428), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_BANG] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(442), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(444), - [anon_sym_DASH_DASH] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(446), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(769), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(935), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1641), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1625), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(432), + [anon_sym_export] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(432), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(438), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), + [anon_sym_async] = ACTIONS(440), + [anon_sym_static] = ACTIONS(432), + [anon_sym_yield] = ACTIONS(442), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(446), + [anon_sym_PLUS] = ACTIONS(448), + [anon_sym_DASH] = ACTIONS(448), + [anon_sym_SLASH] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_TILDE] = ACTIONS(452), + [anon_sym_typeof] = ACTIONS(448), + [anon_sym_void] = ACTIONS(448), + [anon_sym_delete] = ACTIONS(448), + [anon_sym_PLUS_PLUS] = ACTIONS(454), + [anon_sym_DASH_DASH] = ACTIONS(454), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(456), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(458), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [192] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(364), - [sym_expression] = STATE(655), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(364), - [sym_subscript_expression] = STATE(364), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(833), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1383), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1388), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(428), - [anon_sym_export] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(432), - [anon_sym_get] = ACTIONS(428), - [anon_sym_set] = ACTIONS(428), - [anon_sym_async] = ACTIONS(434), - [anon_sym_static] = ACTIONS(428), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_BANG] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(442), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(444), - [anon_sym_DASH_DASH] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(446), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(451), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1637), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(340), + [anon_sym_set] = ACTIONS(340), + [anon_sym_async] = ACTIONS(354), + [anon_sym_static] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(390), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [193] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(364), - [sym_expression] = STATE(656), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(364), - [sym_subscript_expression] = STATE(364), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(833), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1383), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1388), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(428), - [anon_sym_export] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(432), - [anon_sym_get] = ACTIONS(428), - [anon_sym_set] = ACTIONS(428), - [anon_sym_async] = ACTIONS(434), - [anon_sym_static] = ACTIONS(428), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_BANG] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(442), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(444), - [anon_sym_DASH_DASH] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(446), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(742), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(935), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1641), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1625), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(432), + [anon_sym_export] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(432), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(438), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), + [anon_sym_async] = ACTIONS(440), + [anon_sym_static] = ACTIONS(432), + [anon_sym_yield] = ACTIONS(442), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(446), + [anon_sym_PLUS] = ACTIONS(448), + [anon_sym_DASH] = ACTIONS(448), + [anon_sym_SLASH] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_TILDE] = ACTIONS(452), + [anon_sym_typeof] = ACTIONS(448), + [anon_sym_void] = ACTIONS(448), + [anon_sym_delete] = ACTIONS(448), + [anon_sym_PLUS_PLUS] = ACTIONS(454), + [anon_sym_DASH_DASH] = ACTIONS(454), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(456), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(458), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [194] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(364), - [sym_expression] = STATE(657), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(364), - [sym_subscript_expression] = STATE(364), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(833), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1383), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1388), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(428), - [anon_sym_export] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(432), - [anon_sym_get] = ACTIONS(428), - [anon_sym_set] = ACTIONS(428), - [anon_sym_async] = ACTIONS(434), - [anon_sym_static] = ACTIONS(428), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_BANG] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(442), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(444), - [anon_sym_DASH_DASH] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(446), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(743), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(935), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1641), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1625), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(432), + [anon_sym_export] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(432), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(438), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), + [anon_sym_async] = ACTIONS(440), + [anon_sym_static] = ACTIONS(432), + [anon_sym_yield] = ACTIONS(442), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(446), + [anon_sym_PLUS] = ACTIONS(448), + [anon_sym_DASH] = ACTIONS(448), + [anon_sym_SLASH] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_TILDE] = ACTIONS(452), + [anon_sym_typeof] = ACTIONS(448), + [anon_sym_void] = ACTIONS(448), + [anon_sym_delete] = ACTIONS(448), + [anon_sym_PLUS_PLUS] = ACTIONS(454), + [anon_sym_DASH_DASH] = ACTIONS(454), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(456), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(458), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [195] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(364), - [sym_expression] = STATE(660), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(364), - [sym_subscript_expression] = STATE(364), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(833), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1383), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1388), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(428), - [anon_sym_export] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(432), - [anon_sym_get] = ACTIONS(428), - [anon_sym_set] = ACTIONS(428), - [anon_sym_async] = ACTIONS(434), - [anon_sym_static] = ACTIONS(428), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_BANG] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(442), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(444), - [anon_sym_DASH_DASH] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(446), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(521), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1637), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(340), + [anon_sym_set] = ACTIONS(340), + [anon_sym_async] = ACTIONS(354), + [anon_sym_static] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(390), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [196] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(364), - [sym_expression] = STATE(664), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(364), - [sym_subscript_expression] = STATE(364), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(833), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1383), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1388), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(428), - [anon_sym_export] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(432), - [anon_sym_get] = ACTIONS(428), - [anon_sym_set] = ACTIONS(428), - [anon_sym_async] = ACTIONS(434), - [anon_sym_static] = ACTIONS(428), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_BANG] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(442), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(444), - [anon_sym_DASH_DASH] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(446), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(436), + [sym_expression] = STATE(675), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_function_expression] = STATE(609), + [sym_generator_function] = STATE(609), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(436), + [sym_subscript_expression] = STATE(436), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(940), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1551), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1550), + [aux_sym_export_statement_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(392), + [anon_sym_export] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_import] = ACTIONS(398), + [anon_sym_let] = ACTIONS(392), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(400), + [anon_sym_get] = ACTIONS(392), + [anon_sym_set] = ACTIONS(392), + [anon_sym_async] = ACTIONS(402), + [anon_sym_static] = ACTIONS(392), + [anon_sym_yield] = ACTIONS(404), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(408), + [anon_sym_function] = ACTIONS(410), + [anon_sym_new] = ACTIONS(412), + [anon_sym_PLUS] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(414), + [anon_sym_SLASH] = ACTIONS(416), + [anon_sym_BANG] = ACTIONS(418), + [anon_sym_TILDE] = ACTIONS(418), + [anon_sym_typeof] = ACTIONS(414), + [anon_sym_void] = ACTIONS(414), + [anon_sym_delete] = ACTIONS(414), + [anon_sym_PLUS_PLUS] = ACTIONS(420), + [anon_sym_DASH_DASH] = ACTIONS(420), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(422), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(424), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [197] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(364), - [sym_expression] = STATE(665), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(364), - [sym_subscript_expression] = STATE(364), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(833), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1383), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1388), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(428), - [anon_sym_export] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(432), - [anon_sym_get] = ACTIONS(428), - [anon_sym_set] = ACTIONS(428), - [anon_sym_async] = ACTIONS(434), - [anon_sym_static] = ACTIONS(428), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_BANG] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(442), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(444), - [anon_sym_DASH_DASH] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(446), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(762), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(935), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1641), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1625), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(432), + [anon_sym_export] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(432), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(438), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), + [anon_sym_async] = ACTIONS(440), + [anon_sym_static] = ACTIONS(432), + [anon_sym_yield] = ACTIONS(442), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(446), + [anon_sym_PLUS] = ACTIONS(448), + [anon_sym_DASH] = ACTIONS(448), + [anon_sym_SLASH] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_TILDE] = ACTIONS(452), + [anon_sym_typeof] = ACTIONS(448), + [anon_sym_void] = ACTIONS(448), + [anon_sym_delete] = ACTIONS(448), + [anon_sym_PLUS_PLUS] = ACTIONS(454), + [anon_sym_DASH_DASH] = ACTIONS(454), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(456), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(458), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [198] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(364), - [sym_expression] = STATE(667), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(364), - [sym_subscript_expression] = STATE(364), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(833), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1383), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1388), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(428), - [anon_sym_export] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(432), - [anon_sym_get] = ACTIONS(428), - [anon_sym_set] = ACTIONS(428), - [anon_sym_async] = ACTIONS(434), - [anon_sym_static] = ACTIONS(428), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_BANG] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(442), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(444), - [anon_sym_DASH_DASH] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(446), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(403), + [sym_expression] = STATE(777), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(403), + [sym_subscript_expression] = STATE(403), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(939), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1572), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1635), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(460), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(464), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), + [anon_sym_async] = ACTIONS(466), + [anon_sym_static] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [199] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(364), - [sym_expression] = STATE(668), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(364), - [sym_subscript_expression] = STATE(364), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(833), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1383), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1388), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(428), - [anon_sym_export] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(432), - [anon_sym_get] = ACTIONS(428), - [anon_sym_set] = ACTIONS(428), - [anon_sym_async] = ACTIONS(434), - [anon_sym_static] = ACTIONS(428), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_BANG] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(442), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(444), - [anon_sym_DASH_DASH] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(446), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(568), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_function_expression] = STATE(609), + [sym_generator_function] = STATE(609), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(426), + [anon_sym_export] = ACTIONS(426), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_import] = ACTIONS(398), + [anon_sym_let] = ACTIONS(426), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(426), + [anon_sym_set] = ACTIONS(426), + [anon_sym_async] = ACTIONS(430), + [anon_sym_static] = ACTIONS(426), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(408), + [anon_sym_function] = ACTIONS(410), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [200] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(364), - [sym_expression] = STATE(716), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(364), - [sym_subscript_expression] = STATE(364), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(833), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1383), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1388), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(428), - [anon_sym_export] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(432), - [anon_sym_get] = ACTIONS(428), - [anon_sym_set] = ACTIONS(428), - [anon_sym_async] = ACTIONS(434), - [anon_sym_static] = ACTIONS(428), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_BANG] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(442), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(444), - [anon_sym_DASH_DASH] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(446), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(679), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_function_expression] = STATE(609), + [sym_generator_function] = STATE(609), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(426), + [anon_sym_export] = ACTIONS(426), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_import] = ACTIONS(398), + [anon_sym_let] = ACTIONS(426), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(426), + [anon_sym_set] = ACTIONS(426), + [anon_sym_async] = ACTIONS(430), + [anon_sym_static] = ACTIONS(426), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(408), + [anon_sym_function] = ACTIONS(410), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [201] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(364), - [sym_expression] = STATE(407), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(364), - [sym_subscript_expression] = STATE(364), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(833), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1383), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1388), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(428), - [anon_sym_export] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(432), - [anon_sym_get] = ACTIONS(428), - [anon_sym_set] = ACTIONS(428), - [anon_sym_async] = ACTIONS(434), - [anon_sym_static] = ACTIONS(428), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_BANG] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(442), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(444), - [anon_sym_DASH_DASH] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(446), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(527), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1637), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(340), + [anon_sym_set] = ACTIONS(340), + [anon_sym_async] = ACTIONS(354), + [anon_sym_static] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(390), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [202] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(364), - [sym_expression] = STATE(670), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(364), - [sym_subscript_expression] = STATE(364), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(833), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1383), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1388), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(428), - [anon_sym_export] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(432), - [anon_sym_get] = ACTIONS(428), - [anon_sym_set] = ACTIONS(428), - [anon_sym_async] = ACTIONS(434), - [anon_sym_static] = ACTIONS(428), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_BANG] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(442), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(444), - [anon_sym_DASH_DASH] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(446), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(744), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(935), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1641), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1625), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(432), + [anon_sym_export] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(432), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(438), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), + [anon_sym_async] = ACTIONS(440), + [anon_sym_static] = ACTIONS(432), + [anon_sym_yield] = ACTIONS(442), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(446), + [anon_sym_PLUS] = ACTIONS(448), + [anon_sym_DASH] = ACTIONS(448), + [anon_sym_SLASH] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_TILDE] = ACTIONS(452), + [anon_sym_typeof] = ACTIONS(448), + [anon_sym_void] = ACTIONS(448), + [anon_sym_delete] = ACTIONS(448), + [anon_sym_PLUS_PLUS] = ACTIONS(454), + [anon_sym_DASH_DASH] = ACTIONS(454), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(456), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(458), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [203] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(364), - [sym_expression] = STATE(672), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(364), - [sym_subscript_expression] = STATE(364), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(833), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1383), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1388), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(428), - [anon_sym_export] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(432), - [anon_sym_get] = ACTIONS(428), - [anon_sym_set] = ACTIONS(428), - [anon_sym_async] = ACTIONS(434), - [anon_sym_static] = ACTIONS(428), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_BANG] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(442), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(444), - [anon_sym_DASH_DASH] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(446), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(569), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_function_expression] = STATE(609), + [sym_generator_function] = STATE(609), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(426), + [anon_sym_export] = ACTIONS(426), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_import] = ACTIONS(398), + [anon_sym_let] = ACTIONS(426), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(426), + [anon_sym_set] = ACTIONS(426), + [anon_sym_async] = ACTIONS(430), + [anon_sym_static] = ACTIONS(426), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(408), + [anon_sym_function] = ACTIONS(410), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [204] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(364), - [sym_expression] = STATE(674), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(364), - [sym_subscript_expression] = STATE(364), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(833), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1383), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1388), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(428), - [anon_sym_export] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(432), - [anon_sym_get] = ACTIONS(428), - [anon_sym_set] = ACTIONS(428), - [anon_sym_async] = ACTIONS(434), - [anon_sym_static] = ACTIONS(428), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_BANG] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(442), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(444), - [anon_sym_DASH_DASH] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(446), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(570), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_function_expression] = STATE(609), + [sym_generator_function] = STATE(609), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(426), + [anon_sym_export] = ACTIONS(426), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_import] = ACTIONS(398), + [anon_sym_let] = ACTIONS(426), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(426), + [anon_sym_set] = ACTIONS(426), + [anon_sym_async] = ACTIONS(430), + [anon_sym_static] = ACTIONS(426), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(408), + [anon_sym_function] = ACTIONS(410), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [205] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(364), - [sym_expression] = STATE(680), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(364), - [sym_subscript_expression] = STATE(364), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(833), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1383), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1388), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(428), - [anon_sym_export] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(432), - [anon_sym_get] = ACTIONS(428), - [anon_sym_set] = ACTIONS(428), - [anon_sym_async] = ACTIONS(434), - [anon_sym_static] = ACTIONS(428), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_BANG] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(442), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(444), - [anon_sym_DASH_DASH] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(446), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(571), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_function_expression] = STATE(609), + [sym_generator_function] = STATE(609), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(426), + [anon_sym_export] = ACTIONS(426), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_import] = ACTIONS(398), + [anon_sym_let] = ACTIONS(426), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(426), + [anon_sym_set] = ACTIONS(426), + [anon_sym_async] = ACTIONS(430), + [anon_sym_static] = ACTIONS(426), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(408), + [anon_sym_function] = ACTIONS(410), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [206] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(364), - [sym_expression] = STATE(409), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(364), - [sym_subscript_expression] = STATE(364), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(833), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1383), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1388), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(428), - [anon_sym_export] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(432), - [anon_sym_get] = ACTIONS(428), - [anon_sym_set] = ACTIONS(428), - [anon_sym_async] = ACTIONS(434), - [anon_sym_static] = ACTIONS(428), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_BANG] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(442), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(444), - [anon_sym_DASH_DASH] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(446), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(668), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1637), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(340), + [anon_sym_set] = ACTIONS(340), + [anon_sym_async] = ACTIONS(354), + [anon_sym_static] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(390), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [207] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(364), - [sym_expression] = STATE(722), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(396), - [sym_subscript_expression] = STATE(396), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(833), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(979), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1388), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(749), - [anon_sym_export] = ACTIONS(749), - [anon_sym_LBRACE] = ACTIONS(620), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(432), - [anon_sym_get] = ACTIONS(749), - [anon_sym_set] = ACTIONS(749), - [anon_sym_async] = ACTIONS(751), - [anon_sym_static] = ACTIONS(749), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(624), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_BANG] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(442), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(444), - [anon_sym_DASH_DASH] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(576), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_function_expression] = STATE(609), + [sym_generator_function] = STATE(609), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(426), + [anon_sym_export] = ACTIONS(426), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_import] = ACTIONS(398), + [anon_sym_let] = ACTIONS(426), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(426), + [anon_sym_set] = ACTIONS(426), + [anon_sym_async] = ACTIONS(430), + [anon_sym_static] = ACTIONS(426), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(408), + [anon_sym_function] = ACTIONS(410), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [208] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(511), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1386), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_LBRACE] = ACTIONS(318), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(314), - [anon_sym_set] = ACTIONS(314), - [anon_sym_async] = ACTIONS(328), - [anon_sym_static] = ACTIONS(314), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(334), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(362), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(577), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_function_expression] = STATE(609), + [sym_generator_function] = STATE(609), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(426), + [anon_sym_export] = ACTIONS(426), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_import] = ACTIONS(398), + [anon_sym_let] = ACTIONS(426), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(426), + [anon_sym_set] = ACTIONS(426), + [anon_sym_async] = ACTIONS(430), + [anon_sym_static] = ACTIONS(426), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(408), + [anon_sym_function] = ACTIONS(410), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [209] = { - [sym_import] = STATE(595), - [sym_parenthesized_expression] = STATE(394), - [sym_expression] = STATE(425), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_function] = STATE(595), - [sym_generator_function] = STATE(595), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(394), - [sym_subscript_expression] = STATE(394), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(834), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1357), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1358), - [aux_sym_export_statement_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(380), - [anon_sym_export] = ACTIONS(380), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_import] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(384), - [anon_sym_get] = ACTIONS(380), - [anon_sym_set] = ACTIONS(380), - [anon_sym_async] = ACTIONS(386), - [anon_sym_static] = ACTIONS(380), - [anon_sym_yield] = ACTIONS(388), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(390), - [anon_sym_class] = ACTIONS(376), - [anon_sym_function] = ACTIONS(378), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_TILDE] = ACTIONS(396), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(398), - [anon_sym_DASH_DASH] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(400), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(583), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_function_expression] = STATE(609), + [sym_generator_function] = STATE(609), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(426), + [anon_sym_export] = ACTIONS(426), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_import] = ACTIONS(398), + [anon_sym_let] = ACTIONS(426), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(426), + [anon_sym_set] = ACTIONS(426), + [anon_sym_async] = ACTIONS(430), + [anon_sym_static] = ACTIONS(426), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(408), + [anon_sym_function] = ACTIONS(410), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [210] = { - [sym_import] = STATE(595), - [sym_parenthesized_expression] = STATE(394), - [sym_expression] = STATE(426), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_function] = STATE(595), - [sym_generator_function] = STATE(595), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(394), - [sym_subscript_expression] = STATE(394), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(834), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1357), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1358), - [aux_sym_export_statement_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(380), - [anon_sym_export] = ACTIONS(380), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_import] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(384), - [anon_sym_get] = ACTIONS(380), - [anon_sym_set] = ACTIONS(380), - [anon_sym_async] = ACTIONS(386), - [anon_sym_static] = ACTIONS(380), - [anon_sym_yield] = ACTIONS(388), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(390), - [anon_sym_class] = ACTIONS(376), - [anon_sym_function] = ACTIONS(378), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_TILDE] = ACTIONS(396), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(398), - [anon_sym_DASH_DASH] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(400), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(584), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_function_expression] = STATE(609), + [sym_generator_function] = STATE(609), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(426), + [anon_sym_export] = ACTIONS(426), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_import] = ACTIONS(398), + [anon_sym_let] = ACTIONS(426), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(426), + [anon_sym_set] = ACTIONS(426), + [anon_sym_async] = ACTIONS(430), + [anon_sym_static] = ACTIONS(426), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(408), + [anon_sym_function] = ACTIONS(410), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [211] = { - [sym_import] = STATE(595), - [sym_parenthesized_expression] = STATE(394), - [sym_expression] = STATE(527), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_function] = STATE(595), - [sym_generator_function] = STATE(595), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(394), - [sym_subscript_expression] = STATE(394), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(834), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1357), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1358), - [aux_sym_export_statement_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(380), - [anon_sym_export] = ACTIONS(380), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_import] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(384), - [anon_sym_get] = ACTIONS(380), - [anon_sym_set] = ACTIONS(380), - [anon_sym_async] = ACTIONS(386), - [anon_sym_static] = ACTIONS(380), - [anon_sym_yield] = ACTIONS(388), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(390), - [anon_sym_class] = ACTIONS(376), - [anon_sym_function] = ACTIONS(378), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_TILDE] = ACTIONS(396), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(398), - [anon_sym_DASH_DASH] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(400), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(587), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_function_expression] = STATE(609), + [sym_generator_function] = STATE(609), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(426), + [anon_sym_export] = ACTIONS(426), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_import] = ACTIONS(398), + [anon_sym_let] = ACTIONS(426), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(426), + [anon_sym_set] = ACTIONS(426), + [anon_sym_async] = ACTIONS(430), + [anon_sym_static] = ACTIONS(426), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(408), + [anon_sym_function] = ACTIONS(410), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [212] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(517), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1386), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_LBRACE] = ACTIONS(318), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(314), - [anon_sym_set] = ACTIONS(314), - [anon_sym_async] = ACTIONS(328), - [anon_sym_static] = ACTIONS(314), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(334), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(362), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(588), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_function_expression] = STATE(609), + [sym_generator_function] = STATE(609), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(426), + [anon_sym_export] = ACTIONS(426), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_import] = ACTIONS(398), + [anon_sym_let] = ACTIONS(426), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(426), + [anon_sym_set] = ACTIONS(426), + [anon_sym_async] = ACTIONS(430), + [anon_sym_static] = ACTIONS(426), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(408), + [anon_sym_function] = ACTIONS(410), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [213] = { - [sym_import] = STATE(595), - [sym_parenthesized_expression] = STATE(394), - [sym_expression] = STATE(558), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_function] = STATE(595), - [sym_generator_function] = STATE(595), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(394), - [sym_subscript_expression] = STATE(394), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(834), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1357), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1358), - [aux_sym_export_statement_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(380), - [anon_sym_export] = ACTIONS(380), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_import] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(384), - [anon_sym_get] = ACTIONS(380), - [anon_sym_set] = ACTIONS(380), - [anon_sym_async] = ACTIONS(386), - [anon_sym_static] = ACTIONS(380), - [anon_sym_yield] = ACTIONS(388), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(390), - [anon_sym_class] = ACTIONS(376), - [anon_sym_function] = ACTIONS(378), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_TILDE] = ACTIONS(396), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(398), - [anon_sym_DASH_DASH] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(400), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(596), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_function_expression] = STATE(609), + [sym_generator_function] = STATE(609), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(426), + [anon_sym_export] = ACTIONS(426), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_import] = ACTIONS(398), + [anon_sym_let] = ACTIONS(426), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(426), + [anon_sym_set] = ACTIONS(426), + [anon_sym_async] = ACTIONS(430), + [anon_sym_static] = ACTIONS(426), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(408), + [anon_sym_function] = ACTIONS(410), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [214] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(364), - [sym_expression] = STATE(707), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(364), - [sym_subscript_expression] = STATE(364), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(833), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1383), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1388), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(428), - [anon_sym_export] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(432), - [anon_sym_get] = ACTIONS(428), - [anon_sym_set] = ACTIONS(428), - [anon_sym_async] = ACTIONS(434), - [anon_sym_static] = ACTIONS(428), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_BANG] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(442), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(444), - [anon_sym_DASH_DASH] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(446), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(745), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(935), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1641), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1625), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(432), + [anon_sym_export] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(432), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(438), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), + [anon_sym_async] = ACTIONS(440), + [anon_sym_static] = ACTIONS(432), + [anon_sym_yield] = ACTIONS(442), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(446), + [anon_sym_PLUS] = ACTIONS(448), + [anon_sym_DASH] = ACTIONS(448), + [anon_sym_SLASH] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_TILDE] = ACTIONS(452), + [anon_sym_typeof] = ACTIONS(448), + [anon_sym_void] = ACTIONS(448), + [anon_sym_delete] = ACTIONS(448), + [anon_sym_PLUS_PLUS] = ACTIONS(454), + [anon_sym_DASH_DASH] = ACTIONS(454), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(456), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(458), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [215] = { - [sym_import] = STATE(595), - [sym_parenthesized_expression] = STATE(394), - [sym_expression] = STATE(530), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_function] = STATE(595), - [sym_generator_function] = STATE(595), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(394), - [sym_subscript_expression] = STATE(394), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(834), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1357), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1358), - [aux_sym_export_statement_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(380), - [anon_sym_export] = ACTIONS(380), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_import] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(384), - [anon_sym_get] = ACTIONS(380), - [anon_sym_set] = ACTIONS(380), - [anon_sym_async] = ACTIONS(386), - [anon_sym_static] = ACTIONS(380), - [anon_sym_yield] = ACTIONS(388), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(390), - [anon_sym_class] = ACTIONS(376), - [anon_sym_function] = ACTIONS(378), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_TILDE] = ACTIONS(396), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(398), - [anon_sym_DASH_DASH] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(400), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(436), + [sym_expression] = STATE(626), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_function_expression] = STATE(609), + [sym_generator_function] = STATE(609), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(436), + [sym_subscript_expression] = STATE(436), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(940), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1551), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1550), + [aux_sym_export_statement_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(392), + [anon_sym_export] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_import] = ACTIONS(398), + [anon_sym_let] = ACTIONS(392), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(400), + [anon_sym_get] = ACTIONS(392), + [anon_sym_set] = ACTIONS(392), + [anon_sym_async] = ACTIONS(402), + [anon_sym_static] = ACTIONS(392), + [anon_sym_yield] = ACTIONS(404), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(408), + [anon_sym_function] = ACTIONS(410), + [anon_sym_new] = ACTIONS(412), + [anon_sym_PLUS] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(414), + [anon_sym_SLASH] = ACTIONS(416), + [anon_sym_BANG] = ACTIONS(418), + [anon_sym_TILDE] = ACTIONS(418), + [anon_sym_typeof] = ACTIONS(414), + [anon_sym_void] = ACTIONS(414), + [anon_sym_delete] = ACTIONS(414), + [anon_sym_PLUS_PLUS] = ACTIONS(420), + [anon_sym_DASH_DASH] = ACTIONS(420), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(422), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(424), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [216] = { - [sym_import] = STATE(595), - [sym_parenthesized_expression] = STATE(394), - [sym_expression] = STATE(531), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_function] = STATE(595), - [sym_generator_function] = STATE(595), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(394), - [sym_subscript_expression] = STATE(394), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(834), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1357), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1358), - [aux_sym_export_statement_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(380), - [anon_sym_export] = ACTIONS(380), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_import] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(384), - [anon_sym_get] = ACTIONS(380), - [anon_sym_set] = ACTIONS(380), - [anon_sym_async] = ACTIONS(386), - [anon_sym_static] = ACTIONS(380), - [anon_sym_yield] = ACTIONS(388), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(390), - [anon_sym_class] = ACTIONS(376), - [anon_sym_function] = ACTIONS(378), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_TILDE] = ACTIONS(396), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(398), - [anon_sym_DASH_DASH] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(400), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(403), + [sym_expression] = STATE(786), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(431), + [sym_subscript_expression] = STATE(431), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(939), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1086), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1635), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(789), + [anon_sym_export] = ACTIONS(789), + [anon_sym_LBRACE] = ACTIONS(643), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(789), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(464), + [anon_sym_get] = ACTIONS(789), + [anon_sym_set] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_static] = ACTIONS(789), + [anon_sym_yield] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(793), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [217] = { - [sym_import] = STATE(595), - [sym_parenthesized_expression] = STATE(388), - [sym_expression] = STATE(425), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_function] = STATE(595), - [sym_generator_function] = STATE(595), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_export_statement_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(364), - [anon_sym_export] = ACTIONS(364), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_import] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(364), - [anon_sym_set] = ACTIONS(364), - [anon_sym_async] = ACTIONS(372), - [anon_sym_static] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(376), - [anon_sym_function] = ACTIONS(378), - [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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(528), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1637), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(340), + [anon_sym_set] = ACTIONS(340), + [anon_sym_async] = ACTIONS(354), + [anon_sym_static] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(390), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [218] = { - [sym_import] = STATE(595), - [sym_parenthesized_expression] = STATE(394), - [sym_expression] = STATE(532), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_function] = STATE(595), - [sym_generator_function] = STATE(595), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(394), - [sym_subscript_expression] = STATE(394), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(834), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1357), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1358), - [aux_sym_export_statement_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(380), - [anon_sym_export] = ACTIONS(380), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_import] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(384), - [anon_sym_get] = ACTIONS(380), - [anon_sym_set] = ACTIONS(380), - [anon_sym_async] = ACTIONS(386), - [anon_sym_static] = ACTIONS(380), - [anon_sym_yield] = ACTIONS(388), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(390), - [anon_sym_class] = ACTIONS(376), - [anon_sym_function] = ACTIONS(378), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_TILDE] = ACTIONS(396), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(398), - [anon_sym_DASH_DASH] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(400), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(746), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(935), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1641), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1625), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(432), + [anon_sym_export] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(432), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(438), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), + [anon_sym_async] = ACTIONS(440), + [anon_sym_static] = ACTIONS(432), + [anon_sym_yield] = ACTIONS(442), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(446), + [anon_sym_PLUS] = ACTIONS(448), + [anon_sym_DASH] = ACTIONS(448), + [anon_sym_SLASH] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_TILDE] = ACTIONS(452), + [anon_sym_typeof] = ACTIONS(448), + [anon_sym_void] = ACTIONS(448), + [anon_sym_delete] = ACTIONS(448), + [anon_sym_PLUS_PLUS] = ACTIONS(454), + [anon_sym_DASH_DASH] = ACTIONS(454), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(456), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(458), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [219] = { - [sym_import] = STATE(595), - [sym_parenthesized_expression] = STATE(394), - [sym_expression] = STATE(533), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_function] = STATE(595), - [sym_generator_function] = STATE(595), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(394), - [sym_subscript_expression] = STATE(394), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(834), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1357), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1358), - [aux_sym_export_statement_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(380), - [anon_sym_export] = ACTIONS(380), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_import] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(384), - [anon_sym_get] = ACTIONS(380), - [anon_sym_set] = ACTIONS(380), - [anon_sym_async] = ACTIONS(386), - [anon_sym_static] = ACTIONS(380), - [anon_sym_yield] = ACTIONS(388), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(390), - [anon_sym_class] = ACTIONS(376), - [anon_sym_function] = ACTIONS(378), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_TILDE] = ACTIONS(396), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(398), - [anon_sym_DASH_DASH] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(400), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(774), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1637), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(340), + [anon_sym_set] = ACTIONS(340), + [anon_sym_async] = ACTIONS(354), + [anon_sym_static] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(390), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [220] = { - [sym_import] = STATE(595), - [sym_parenthesized_expression] = STATE(394), - [sym_expression] = STATE(534), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_function] = STATE(595), - [sym_generator_function] = STATE(595), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(394), - [sym_subscript_expression] = STATE(394), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(834), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1357), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1358), - [aux_sym_export_statement_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(380), - [anon_sym_export] = ACTIONS(380), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_import] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(384), - [anon_sym_get] = ACTIONS(380), - [anon_sym_set] = ACTIONS(380), - [anon_sym_async] = ACTIONS(386), - [anon_sym_static] = ACTIONS(380), - [anon_sym_yield] = ACTIONS(388), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(390), - [anon_sym_class] = ACTIONS(376), - [anon_sym_function] = ACTIONS(378), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_TILDE] = ACTIONS(396), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(398), - [anon_sym_DASH_DASH] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(400), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(770), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(935), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1641), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1625), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(432), + [anon_sym_export] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(432), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(438), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), + [anon_sym_async] = ACTIONS(440), + [anon_sym_static] = ACTIONS(432), + [anon_sym_yield] = ACTIONS(442), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(446), + [anon_sym_PLUS] = ACTIONS(448), + [anon_sym_DASH] = ACTIONS(448), + [anon_sym_SLASH] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_TILDE] = ACTIONS(452), + [anon_sym_typeof] = ACTIONS(448), + [anon_sym_void] = ACTIONS(448), + [anon_sym_delete] = ACTIONS(448), + [anon_sym_PLUS_PLUS] = ACTIONS(454), + [anon_sym_DASH_DASH] = ACTIONS(454), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(456), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(458), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [221] = { - [sym_import] = STATE(595), - [sym_parenthesized_expression] = STATE(394), - [sym_expression] = STATE(535), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_function] = STATE(595), - [sym_generator_function] = STATE(595), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(394), - [sym_subscript_expression] = STATE(394), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(834), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1357), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1358), - [aux_sym_export_statement_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(380), - [anon_sym_export] = ACTIONS(380), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_import] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(384), - [anon_sym_get] = ACTIONS(380), - [anon_sym_set] = ACTIONS(380), - [anon_sym_async] = ACTIONS(386), - [anon_sym_static] = ACTIONS(380), - [anon_sym_yield] = ACTIONS(388), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(390), - [anon_sym_class] = ACTIONS(376), - [anon_sym_function] = ACTIONS(378), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_TILDE] = ACTIONS(396), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(398), - [anon_sym_DASH_DASH] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(400), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(598), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_function_expression] = STATE(609), + [sym_generator_function] = STATE(609), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(426), + [anon_sym_export] = ACTIONS(426), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_import] = ACTIONS(398), + [anon_sym_let] = ACTIONS(426), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(426), + [anon_sym_set] = ACTIONS(426), + [anon_sym_async] = ACTIONS(430), + [anon_sym_static] = ACTIONS(426), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(408), + [anon_sym_function] = ACTIONS(410), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [222] = { - [sym_import] = STATE(595), - [sym_parenthesized_expression] = STATE(394), - [sym_expression] = STATE(536), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_function] = STATE(595), - [sym_generator_function] = STATE(595), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(394), - [sym_subscript_expression] = STATE(394), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(834), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1357), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1358), - [aux_sym_export_statement_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(380), - [anon_sym_export] = ACTIONS(380), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_import] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(384), - [anon_sym_get] = ACTIONS(380), - [anon_sym_set] = ACTIONS(380), - [anon_sym_async] = ACTIONS(386), - [anon_sym_static] = ACTIONS(380), - [anon_sym_yield] = ACTIONS(388), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(390), - [anon_sym_class] = ACTIONS(376), - [anon_sym_function] = ACTIONS(378), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_TILDE] = ACTIONS(396), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(398), - [anon_sym_DASH_DASH] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(400), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(436), + [sym_expression] = STATE(550), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_function_expression] = STATE(609), + [sym_generator_function] = STATE(609), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(436), + [sym_subscript_expression] = STATE(436), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(940), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1551), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1550), + [aux_sym_export_statement_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(392), + [anon_sym_export] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_import] = ACTIONS(398), + [anon_sym_let] = ACTIONS(392), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(400), + [anon_sym_get] = ACTIONS(392), + [anon_sym_set] = ACTIONS(392), + [anon_sym_async] = ACTIONS(402), + [anon_sym_static] = ACTIONS(392), + [anon_sym_yield] = ACTIONS(404), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(408), + [anon_sym_function] = ACTIONS(410), + [anon_sym_new] = ACTIONS(412), + [anon_sym_PLUS] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(414), + [anon_sym_SLASH] = ACTIONS(416), + [anon_sym_BANG] = ACTIONS(418), + [anon_sym_TILDE] = ACTIONS(418), + [anon_sym_typeof] = ACTIONS(414), + [anon_sym_void] = ACTIONS(414), + [anon_sym_delete] = ACTIONS(414), + [anon_sym_PLUS_PLUS] = ACTIONS(420), + [anon_sym_DASH_DASH] = ACTIONS(420), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(422), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(424), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [223] = { - [sym_import] = STATE(595), - [sym_parenthesized_expression] = STATE(394), - [sym_expression] = STATE(537), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_function] = STATE(595), - [sym_generator_function] = STATE(595), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(394), - [sym_subscript_expression] = STATE(394), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(834), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1357), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1358), - [aux_sym_export_statement_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(380), - [anon_sym_export] = ACTIONS(380), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_import] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(384), - [anon_sym_get] = ACTIONS(380), - [anon_sym_set] = ACTIONS(380), - [anon_sym_async] = ACTIONS(386), - [anon_sym_static] = ACTIONS(380), - [anon_sym_yield] = ACTIONS(388), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(390), - [anon_sym_class] = ACTIONS(376), - [anon_sym_function] = ACTIONS(378), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_TILDE] = ACTIONS(396), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(398), - [anon_sym_DASH_DASH] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(400), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(436), + [sym_expression] = STATE(661), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_function_expression] = STATE(609), + [sym_generator_function] = STATE(609), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(436), + [sym_subscript_expression] = STATE(436), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(940), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1551), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1550), + [aux_sym_export_statement_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(392), + [anon_sym_export] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_import] = ACTIONS(398), + [anon_sym_let] = ACTIONS(392), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(400), + [anon_sym_get] = ACTIONS(392), + [anon_sym_set] = ACTIONS(392), + [anon_sym_async] = ACTIONS(402), + [anon_sym_static] = ACTIONS(392), + [anon_sym_yield] = ACTIONS(404), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(408), + [anon_sym_function] = ACTIONS(410), + [anon_sym_new] = ACTIONS(412), + [anon_sym_PLUS] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(414), + [anon_sym_SLASH] = ACTIONS(416), + [anon_sym_BANG] = ACTIONS(418), + [anon_sym_TILDE] = ACTIONS(418), + [anon_sym_typeof] = ACTIONS(414), + [anon_sym_void] = ACTIONS(414), + [anon_sym_delete] = ACTIONS(414), + [anon_sym_PLUS_PLUS] = ACTIONS(420), + [anon_sym_DASH_DASH] = ACTIONS(420), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(422), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(424), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [224] = { - [sym_import] = STATE(595), - [sym_parenthesized_expression] = STATE(394), - [sym_expression] = STATE(538), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_function] = STATE(595), - [sym_generator_function] = STATE(595), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(394), - [sym_subscript_expression] = STATE(394), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(834), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1357), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1358), - [aux_sym_export_statement_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(380), - [anon_sym_export] = ACTIONS(380), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_import] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(384), - [anon_sym_get] = ACTIONS(380), - [anon_sym_set] = ACTIONS(380), - [anon_sym_async] = ACTIONS(386), - [anon_sym_static] = ACTIONS(380), - [anon_sym_yield] = ACTIONS(388), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(390), - [anon_sym_class] = ACTIONS(376), - [anon_sym_function] = ACTIONS(378), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_TILDE] = ACTIONS(396), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(398), - [anon_sym_DASH_DASH] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(400), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(403), + [sym_expression] = STATE(688), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(403), + [sym_subscript_expression] = STATE(403), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(939), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1572), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1635), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(460), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(464), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), + [anon_sym_async] = ACTIONS(466), + [anon_sym_static] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [225] = { - [sym_import] = STATE(595), - [sym_parenthesized_expression] = STATE(394), - [sym_expression] = STATE(464), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_function] = STATE(595), - [sym_generator_function] = STATE(595), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(394), - [sym_subscript_expression] = STATE(394), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(834), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1357), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1358), - [aux_sym_export_statement_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(380), - [anon_sym_export] = ACTIONS(380), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_import] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(384), - [anon_sym_get] = ACTIONS(380), - [anon_sym_set] = ACTIONS(380), - [anon_sym_async] = ACTIONS(386), - [anon_sym_static] = ACTIONS(380), - [anon_sym_yield] = ACTIONS(388), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(390), - [anon_sym_class] = ACTIONS(376), - [anon_sym_function] = ACTIONS(378), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_TILDE] = ACTIONS(396), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(398), - [anon_sym_DASH_DASH] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(400), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(782), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1637), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(340), + [anon_sym_set] = ACTIONS(340), + [anon_sym_async] = ACTIONS(354), + [anon_sym_static] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(390), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [226] = { - [sym_import] = STATE(595), - [sym_parenthesized_expression] = STATE(394), - [sym_expression] = STATE(539), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_function] = STATE(595), - [sym_generator_function] = STATE(595), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(394), - [sym_subscript_expression] = STATE(394), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(834), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1357), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1358), - [aux_sym_export_statement_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(380), - [anon_sym_export] = ACTIONS(380), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_import] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(384), - [anon_sym_get] = ACTIONS(380), - [anon_sym_set] = ACTIONS(380), - [anon_sym_async] = ACTIONS(386), - [anon_sym_static] = ACTIONS(380), - [anon_sym_yield] = ACTIONS(388), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(390), - [anon_sym_class] = ACTIONS(376), - [anon_sym_function] = ACTIONS(378), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_TILDE] = ACTIONS(396), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(398), - [anon_sym_DASH_DASH] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(400), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(549), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_function_expression] = STATE(609), + [sym_generator_function] = STATE(609), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(426), + [anon_sym_export] = ACTIONS(426), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_import] = ACTIONS(398), + [anon_sym_let] = ACTIONS(426), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(426), + [anon_sym_set] = ACTIONS(426), + [anon_sym_async] = ACTIONS(430), + [anon_sym_static] = ACTIONS(426), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(408), + [anon_sym_function] = ACTIONS(410), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [227] = { - [sym_import] = STATE(595), - [sym_parenthesized_expression] = STATE(394), - [sym_expression] = STATE(540), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_function] = STATE(595), - [sym_generator_function] = STATE(595), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(394), - [sym_subscript_expression] = STATE(394), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(834), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1357), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1358), - [aux_sym_export_statement_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(380), - [anon_sym_export] = ACTIONS(380), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_import] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(384), - [anon_sym_get] = ACTIONS(380), - [anon_sym_set] = ACTIONS(380), - [anon_sym_async] = ACTIONS(386), - [anon_sym_static] = ACTIONS(380), - [anon_sym_yield] = ACTIONS(388), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(390), - [anon_sym_class] = ACTIONS(376), - [anon_sym_function] = ACTIONS(378), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_TILDE] = ACTIONS(396), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(398), - [anon_sym_DASH_DASH] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(400), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(532), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1637), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(340), + [anon_sym_set] = ACTIONS(340), + [anon_sym_async] = ACTIONS(354), + [anon_sym_static] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(390), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [228] = { - [sym_import] = STATE(595), - [sym_parenthesized_expression] = STATE(394), - [sym_expression] = STATE(541), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_function] = STATE(595), - [sym_generator_function] = STATE(595), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(394), - [sym_subscript_expression] = STATE(394), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(834), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1357), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1358), - [aux_sym_export_statement_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(380), - [anon_sym_export] = ACTIONS(380), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_import] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(384), - [anon_sym_get] = ACTIONS(380), - [anon_sym_set] = ACTIONS(380), - [anon_sym_async] = ACTIONS(386), - [anon_sym_static] = ACTIONS(380), - [anon_sym_yield] = ACTIONS(388), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(390), - [anon_sym_class] = ACTIONS(376), - [anon_sym_function] = ACTIONS(378), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_TILDE] = ACTIONS(396), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(398), - [anon_sym_DASH_DASH] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(400), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(544), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1637), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(340), + [anon_sym_set] = ACTIONS(340), + [anon_sym_async] = ACTIONS(354), + [anon_sym_static] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(390), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [229] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(689), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1386), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_LBRACE] = ACTIONS(318), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(314), - [anon_sym_set] = ACTIONS(314), - [anon_sym_async] = ACTIONS(328), - [anon_sym_static] = ACTIONS(314), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(334), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(362), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(541), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1637), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(340), + [anon_sym_set] = ACTIONS(340), + [anon_sym_async] = ACTIONS(354), + [anon_sym_static] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(390), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [230] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(371), - [sym_expression] = STATE(666), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(828), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1386), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1389), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_LBRACE] = ACTIONS(318), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(326), - [anon_sym_get] = ACTIONS(314), - [anon_sym_set] = ACTIONS(314), - [anon_sym_async] = ACTIONS(328), - [anon_sym_static] = ACTIONS(314), - [anon_sym_yield] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(334), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(344), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(348), - [anon_sym_typeof] = ACTIONS(346), - [anon_sym_void] = ACTIONS(346), - [anon_sym_delete] = ACTIONS(346), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(362), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(773), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(935), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1641), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1625), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(432), + [anon_sym_export] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(432), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(438), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), + [anon_sym_async] = ACTIONS(440), + [anon_sym_static] = ACTIONS(432), + [anon_sym_yield] = ACTIONS(442), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(446), + [anon_sym_PLUS] = ACTIONS(448), + [anon_sym_DASH] = ACTIONS(448), + [anon_sym_SLASH] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_TILDE] = ACTIONS(452), + [anon_sym_typeof] = ACTIONS(448), + [anon_sym_void] = ACTIONS(448), + [anon_sym_delete] = ACTIONS(448), + [anon_sym_PLUS_PLUS] = ACTIONS(454), + [anon_sym_DASH_DASH] = ACTIONS(454), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(456), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(458), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [231] = { - [sym_import] = STATE(595), - [sym_parenthesized_expression] = STATE(394), - [sym_expression] = STATE(545), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_function] = STATE(595), - [sym_generator_function] = STATE(595), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(394), - [sym_subscript_expression] = STATE(394), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(834), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1357), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1358), - [aux_sym_export_statement_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(380), - [anon_sym_export] = ACTIONS(380), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_import] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(384), - [anon_sym_get] = ACTIONS(380), - [anon_sym_set] = ACTIONS(380), - [anon_sym_async] = ACTIONS(386), - [anon_sym_static] = ACTIONS(380), - [anon_sym_yield] = ACTIONS(388), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(390), - [anon_sym_class] = ACTIONS(376), - [anon_sym_function] = ACTIONS(378), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_TILDE] = ACTIONS(396), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(398), - [anon_sym_DASH_DASH] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(400), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(550), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_function_expression] = STATE(609), + [sym_generator_function] = STATE(609), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(426), + [anon_sym_export] = ACTIONS(426), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_import] = ACTIONS(398), + [anon_sym_let] = ACTIONS(426), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(426), + [anon_sym_set] = ACTIONS(426), + [anon_sym_async] = ACTIONS(430), + [anon_sym_static] = ACTIONS(426), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(408), + [anon_sym_function] = ACTIONS(410), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [232] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(364), - [sym_expression] = STATE(715), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(364), - [sym_subscript_expression] = STATE(364), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(833), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1383), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1388), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(428), - [anon_sym_export] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(432), - [anon_sym_get] = ACTIONS(428), - [anon_sym_set] = ACTIONS(428), - [anon_sym_async] = ACTIONS(434), - [anon_sym_static] = ACTIONS(428), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_BANG] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(442), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(444), - [anon_sym_DASH_DASH] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(446), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(756), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(935), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1641), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1625), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(432), + [anon_sym_export] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(432), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(438), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), + [anon_sym_async] = ACTIONS(440), + [anon_sym_static] = ACTIONS(432), + [anon_sym_yield] = ACTIONS(442), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(446), + [anon_sym_PLUS] = ACTIONS(448), + [anon_sym_DASH] = ACTIONS(448), + [anon_sym_SLASH] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_TILDE] = ACTIONS(452), + [anon_sym_typeof] = ACTIONS(448), + [anon_sym_void] = ACTIONS(448), + [anon_sym_delete] = ACTIONS(448), + [anon_sym_PLUS_PLUS] = ACTIONS(454), + [anon_sym_DASH_DASH] = ACTIONS(454), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(456), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(458), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [233] = { - [sym_import] = STATE(595), - [sym_parenthesized_expression] = STATE(394), - [sym_expression] = STATE(499), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_function] = STATE(595), - [sym_generator_function] = STATE(595), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(394), - [sym_subscript_expression] = STATE(394), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(834), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1357), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1358), - [aux_sym_export_statement_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(380), - [anon_sym_export] = ACTIONS(380), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_import] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(384), - [anon_sym_get] = ACTIONS(380), - [anon_sym_set] = ACTIONS(380), - [anon_sym_async] = ACTIONS(386), - [anon_sym_static] = ACTIONS(380), - [anon_sym_yield] = ACTIONS(388), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(390), - [anon_sym_class] = ACTIONS(376), - [anon_sym_function] = ACTIONS(378), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_TILDE] = ACTIONS(396), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(398), - [anon_sym_DASH_DASH] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(400), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(666), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1637), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(340), + [anon_sym_set] = ACTIONS(340), + [anon_sym_async] = ACTIONS(354), + [anon_sym_static] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(390), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [234] = { - [sym_import] = STATE(595), - [sym_parenthesized_expression] = STATE(388), - [sym_expression] = STATE(426), - [sym_primary_expression] = STATE(601), - [sym_yield_expression] = STATE(604), - [sym_object] = STATE(595), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(595), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(604), - [sym_jsx_fragment] = STATE(604), - [sym_jsx_opening_element] = STATE(856), - [sym_jsx_self_closing_element] = STATE(604), - [sym_class] = STATE(595), - [sym_function] = STATE(595), - [sym_generator_function] = STATE(595), - [sym_arrow_function] = STATE(595), - [sym_call_expression] = STATE(595), - [sym_new_expression] = STATE(604), - [sym_await_expression] = STATE(604), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(604), - [sym_augmented_assignment_lhs] = STATE(825), - [sym_augmented_assignment_expression] = STATE(604), - [sym_destructuring_pattern] = STATE(1427), - [sym_ternary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_unary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_string] = STATE(595), - [sym_template_string] = STATE(595), - [sym_regex] = STATE(595), - [sym_meta_property] = STATE(595), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1425), - [aux_sym_export_statement_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(364), - [anon_sym_export] = ACTIONS(364), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_import] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_await] = ACTIONS(31), - [anon_sym_get] = ACTIONS(364), - [anon_sym_set] = ACTIONS(364), - [anon_sym_async] = ACTIONS(372), - [anon_sym_static] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(376), - [anon_sym_function] = ACTIONS(378), - [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(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(81), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(436), + [sym_expression] = STATE(645), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_function_expression] = STATE(609), + [sym_generator_function] = STATE(609), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(436), + [sym_subscript_expression] = STATE(436), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(940), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1551), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1550), + [aux_sym_export_statement_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(392), + [anon_sym_export] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_import] = ACTIONS(398), + [anon_sym_let] = ACTIONS(392), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(400), + [anon_sym_get] = ACTIONS(392), + [anon_sym_set] = ACTIONS(392), + [anon_sym_async] = ACTIONS(402), + [anon_sym_static] = ACTIONS(392), + [anon_sym_yield] = ACTIONS(404), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(408), + [anon_sym_function] = ACTIONS(410), + [anon_sym_new] = ACTIONS(412), + [anon_sym_PLUS] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(414), + [anon_sym_SLASH] = ACTIONS(416), + [anon_sym_BANG] = ACTIONS(418), + [anon_sym_TILDE] = ACTIONS(418), + [anon_sym_typeof] = ACTIONS(414), + [anon_sym_void] = ACTIONS(414), + [anon_sym_delete] = ACTIONS(414), + [anon_sym_PLUS_PLUS] = ACTIONS(420), + [anon_sym_DASH_DASH] = ACTIONS(420), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(422), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(424), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [235] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(405), - [sym_expression] = STATE(411), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(405), - [sym_subscript_expression] = STATE(405), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(832), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1440), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1418), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(402), - [anon_sym_export] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(408), - [anon_sym_get] = ACTIONS(402), - [anon_sym_set] = ACTIONS(402), - [anon_sym_async] = ACTIONS(410), - [anon_sym_static] = ACTIONS(402), - [anon_sym_yield] = ACTIONS(412), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(416), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(420), - [anon_sym_DASH] = ACTIONS(420), - [anon_sym_BANG] = ACTIONS(422), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_typeof] = ACTIONS(420), - [anon_sym_void] = ACTIONS(420), - [anon_sym_delete] = ACTIONS(420), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(426), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(403), + [sym_expression] = STATE(775), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(403), + [sym_subscript_expression] = STATE(403), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(939), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1572), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1635), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(460), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(464), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), + [anon_sym_async] = ACTIONS(466), + [anon_sym_static] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [236] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(405), - [sym_expression] = STATE(410), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(405), - [sym_subscript_expression] = STATE(405), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(832), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1440), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1418), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(402), - [anon_sym_export] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(408), - [anon_sym_get] = ACTIONS(402), - [anon_sym_set] = ACTIONS(402), - [anon_sym_async] = ACTIONS(410), - [anon_sym_static] = ACTIONS(402), - [anon_sym_yield] = ACTIONS(412), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(582), + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(436), + [sym_expression] = STATE(643), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_function_expression] = STATE(609), + [sym_generator_function] = STATE(609), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(436), + [sym_subscript_expression] = STATE(436), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(940), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1551), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1550), + [aux_sym_export_statement_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(392), + [anon_sym_export] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_import] = ACTIONS(398), + [anon_sym_let] = ACTIONS(392), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(400), + [anon_sym_get] = ACTIONS(392), + [anon_sym_set] = ACTIONS(392), + [anon_sym_async] = ACTIONS(402), + [anon_sym_static] = ACTIONS(392), + [anon_sym_yield] = ACTIONS(404), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(408), + [anon_sym_function] = ACTIONS(410), + [anon_sym_new] = ACTIONS(412), + [anon_sym_PLUS] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(414), [anon_sym_SLASH] = ACTIONS(416), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(420), - [anon_sym_DASH] = ACTIONS(420), - [anon_sym_BANG] = ACTIONS(422), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_typeof] = ACTIONS(420), - [anon_sym_void] = ACTIONS(420), - [anon_sym_delete] = ACTIONS(420), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(426), - [anon_sym_AT] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(418), + [anon_sym_TILDE] = ACTIONS(418), + [anon_sym_typeof] = ACTIONS(414), + [anon_sym_void] = ACTIONS(414), + [anon_sym_delete] = ACTIONS(414), + [anon_sym_PLUS_PLUS] = ACTIONS(420), + [anon_sym_DASH_DASH] = ACTIONS(420), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(422), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(424), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [237] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(405), - [sym_expression] = STATE(687), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(405), - [sym_subscript_expression] = STATE(405), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(832), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1440), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1418), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(402), - [anon_sym_export] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(408), - [anon_sym_get] = ACTIONS(402), - [anon_sym_set] = ACTIONS(402), - [anon_sym_async] = ACTIONS(410), - [anon_sym_static] = ACTIONS(402), - [anon_sym_yield] = ACTIONS(412), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(582), + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(436), + [sym_expression] = STATE(642), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_function_expression] = STATE(609), + [sym_generator_function] = STATE(609), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(436), + [sym_subscript_expression] = STATE(436), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(940), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1551), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1550), + [aux_sym_export_statement_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(392), + [anon_sym_export] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_import] = ACTIONS(398), + [anon_sym_let] = ACTIONS(392), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(400), + [anon_sym_get] = ACTIONS(392), + [anon_sym_set] = ACTIONS(392), + [anon_sym_async] = ACTIONS(402), + [anon_sym_static] = ACTIONS(392), + [anon_sym_yield] = ACTIONS(404), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(408), + [anon_sym_function] = ACTIONS(410), + [anon_sym_new] = ACTIONS(412), + [anon_sym_PLUS] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(414), [anon_sym_SLASH] = ACTIONS(416), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(420), - [anon_sym_DASH] = ACTIONS(420), - [anon_sym_BANG] = ACTIONS(422), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_typeof] = ACTIONS(420), - [anon_sym_void] = ACTIONS(420), - [anon_sym_delete] = ACTIONS(420), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(426), - [anon_sym_AT] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(418), + [anon_sym_TILDE] = ACTIONS(418), + [anon_sym_typeof] = ACTIONS(414), + [anon_sym_void] = ACTIONS(414), + [anon_sym_delete] = ACTIONS(414), + [anon_sym_PLUS_PLUS] = ACTIONS(420), + [anon_sym_DASH_DASH] = ACTIONS(420), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(422), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(424), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [238] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(405), - [sym_expression] = STATE(690), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(405), - [sym_subscript_expression] = STATE(405), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(832), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1440), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1418), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(402), - [anon_sym_export] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(408), - [anon_sym_get] = ACTIONS(402), - [anon_sym_set] = ACTIONS(402), - [anon_sym_async] = ACTIONS(410), - [anon_sym_static] = ACTIONS(402), - [anon_sym_yield] = ACTIONS(412), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(416), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(420), - [anon_sym_DASH] = ACTIONS(420), - [anon_sym_BANG] = ACTIONS(422), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_typeof] = ACTIONS(420), - [anon_sym_void] = ACTIONS(420), - [anon_sym_delete] = ACTIONS(420), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(426), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(453), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1637), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(340), + [anon_sym_set] = ACTIONS(340), + [anon_sym_async] = ACTIONS(354), + [anon_sym_static] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(390), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [239] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(405), - [sym_expression] = STATE(691), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(405), - [sym_subscript_expression] = STATE(405), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(832), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1440), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1418), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(402), - [anon_sym_export] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(408), - [anon_sym_get] = ACTIONS(402), - [anon_sym_set] = ACTIONS(402), - [anon_sym_async] = ACTIONS(410), - [anon_sym_static] = ACTIONS(402), - [anon_sym_yield] = ACTIONS(412), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(582), + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(436), + [sym_expression] = STATE(641), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_function_expression] = STATE(609), + [sym_generator_function] = STATE(609), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(436), + [sym_subscript_expression] = STATE(436), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(940), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1551), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1550), + [aux_sym_export_statement_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(392), + [anon_sym_export] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_import] = ACTIONS(398), + [anon_sym_let] = ACTIONS(392), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(400), + [anon_sym_get] = ACTIONS(392), + [anon_sym_set] = ACTIONS(392), + [anon_sym_async] = ACTIONS(402), + [anon_sym_static] = ACTIONS(392), + [anon_sym_yield] = ACTIONS(404), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(408), + [anon_sym_function] = ACTIONS(410), + [anon_sym_new] = ACTIONS(412), + [anon_sym_PLUS] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(414), [anon_sym_SLASH] = ACTIONS(416), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(420), - [anon_sym_DASH] = ACTIONS(420), - [anon_sym_BANG] = ACTIONS(422), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_typeof] = ACTIONS(420), - [anon_sym_void] = ACTIONS(420), - [anon_sym_delete] = ACTIONS(420), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(426), - [anon_sym_AT] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(418), + [anon_sym_TILDE] = ACTIONS(418), + [anon_sym_typeof] = ACTIONS(414), + [anon_sym_void] = ACTIONS(414), + [anon_sym_delete] = ACTIONS(414), + [anon_sym_PLUS_PLUS] = ACTIONS(420), + [anon_sym_DASH_DASH] = ACTIONS(420), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(422), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(424), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [240] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(405), - [sym_expression] = STATE(692), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(405), - [sym_subscript_expression] = STATE(405), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(832), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1440), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1418), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(402), - [anon_sym_export] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(408), - [anon_sym_get] = ACTIONS(402), - [anon_sym_set] = ACTIONS(402), - [anon_sym_async] = ACTIONS(410), - [anon_sym_static] = ACTIONS(402), - [anon_sym_yield] = ACTIONS(412), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(416), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(420), - [anon_sym_DASH] = ACTIONS(420), - [anon_sym_BANG] = ACTIONS(422), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_typeof] = ACTIONS(420), - [anon_sym_void] = ACTIONS(420), - [anon_sym_delete] = ACTIONS(420), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(426), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(752), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(935), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1641), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1625), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(432), + [anon_sym_export] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(432), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(438), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), + [anon_sym_async] = ACTIONS(440), + [anon_sym_static] = ACTIONS(432), + [anon_sym_yield] = ACTIONS(442), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(446), + [anon_sym_PLUS] = ACTIONS(448), + [anon_sym_DASH] = ACTIONS(448), + [anon_sym_SLASH] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_TILDE] = ACTIONS(452), + [anon_sym_typeof] = ACTIONS(448), + [anon_sym_void] = ACTIONS(448), + [anon_sym_delete] = ACTIONS(448), + [anon_sym_PLUS_PLUS] = ACTIONS(454), + [anon_sym_DASH_DASH] = ACTIONS(454), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(456), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(458), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [241] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(405), - [sym_expression] = STATE(693), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(405), - [sym_subscript_expression] = STATE(405), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(832), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1440), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1418), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(402), - [anon_sym_export] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(408), - [anon_sym_get] = ACTIONS(402), - [anon_sym_set] = ACTIONS(402), - [anon_sym_async] = ACTIONS(410), - [anon_sym_static] = ACTIONS(402), - [anon_sym_yield] = ACTIONS(412), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(416), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(420), - [anon_sym_DASH] = ACTIONS(420), - [anon_sym_BANG] = ACTIONS(422), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_typeof] = ACTIONS(420), - [anon_sym_void] = ACTIONS(420), - [anon_sym_delete] = ACTIONS(420), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(426), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(759), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(935), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1641), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1625), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(432), + [anon_sym_export] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(432), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(438), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), + [anon_sym_async] = ACTIONS(440), + [anon_sym_static] = ACTIONS(432), + [anon_sym_yield] = ACTIONS(442), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(446), + [anon_sym_PLUS] = ACTIONS(448), + [anon_sym_DASH] = ACTIONS(448), + [anon_sym_SLASH] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_TILDE] = ACTIONS(452), + [anon_sym_typeof] = ACTIONS(448), + [anon_sym_void] = ACTIONS(448), + [anon_sym_delete] = ACTIONS(448), + [anon_sym_PLUS_PLUS] = ACTIONS(454), + [anon_sym_DASH_DASH] = ACTIONS(454), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(456), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(458), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [242] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(405), - [sym_expression] = STATE(694), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(405), - [sym_subscript_expression] = STATE(405), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(832), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1440), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1418), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(402), - [anon_sym_export] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(408), - [anon_sym_get] = ACTIONS(402), - [anon_sym_set] = ACTIONS(402), - [anon_sym_async] = ACTIONS(410), - [anon_sym_static] = ACTIONS(402), - [anon_sym_yield] = ACTIONS(412), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(416), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(420), - [anon_sym_DASH] = ACTIONS(420), - [anon_sym_BANG] = ACTIONS(422), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_typeof] = ACTIONS(420), - [anon_sym_void] = ACTIONS(420), - [anon_sym_delete] = ACTIONS(420), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(426), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(760), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(935), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1641), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1625), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(432), + [anon_sym_export] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(432), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(438), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), + [anon_sym_async] = ACTIONS(440), + [anon_sym_static] = ACTIONS(432), + [anon_sym_yield] = ACTIONS(442), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(446), + [anon_sym_PLUS] = ACTIONS(448), + [anon_sym_DASH] = ACTIONS(448), + [anon_sym_SLASH] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_TILDE] = ACTIONS(452), + [anon_sym_typeof] = ACTIONS(448), + [anon_sym_void] = ACTIONS(448), + [anon_sym_delete] = ACTIONS(448), + [anon_sym_PLUS_PLUS] = ACTIONS(454), + [anon_sym_DASH_DASH] = ACTIONS(454), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(456), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(458), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [243] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(405), - [sym_expression] = STATE(695), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(405), - [sym_subscript_expression] = STATE(405), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(832), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1440), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1418), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(402), - [anon_sym_export] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(408), - [anon_sym_get] = ACTIONS(402), - [anon_sym_set] = ACTIONS(402), - [anon_sym_async] = ACTIONS(410), - [anon_sym_static] = ACTIONS(402), - [anon_sym_yield] = ACTIONS(412), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(416), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(420), - [anon_sym_DASH] = ACTIONS(420), - [anon_sym_BANG] = ACTIONS(422), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_typeof] = ACTIONS(420), - [anon_sym_void] = ACTIONS(420), - [anon_sym_delete] = ACTIONS(420), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(426), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(761), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(935), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1641), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1625), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(432), + [anon_sym_export] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(432), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(438), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), + [anon_sym_async] = ACTIONS(440), + [anon_sym_static] = ACTIONS(432), + [anon_sym_yield] = ACTIONS(442), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(446), + [anon_sym_PLUS] = ACTIONS(448), + [anon_sym_DASH] = ACTIONS(448), + [anon_sym_SLASH] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_TILDE] = ACTIONS(452), + [anon_sym_typeof] = ACTIONS(448), + [anon_sym_void] = ACTIONS(448), + [anon_sym_delete] = ACTIONS(448), + [anon_sym_PLUS_PLUS] = ACTIONS(454), + [anon_sym_DASH_DASH] = ACTIONS(454), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(456), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(458), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [244] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(405), - [sym_expression] = STATE(696), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(405), - [sym_subscript_expression] = STATE(405), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(832), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1440), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1418), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(402), - [anon_sym_export] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(408), - [anon_sym_get] = ACTIONS(402), - [anon_sym_set] = ACTIONS(402), - [anon_sym_async] = ACTIONS(410), - [anon_sym_static] = ACTIONS(402), - [anon_sym_yield] = ACTIONS(412), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(416), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(420), - [anon_sym_DASH] = ACTIONS(420), - [anon_sym_BANG] = ACTIONS(422), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_typeof] = ACTIONS(420), - [anon_sym_void] = ACTIONS(420), - [anon_sym_delete] = ACTIONS(420), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(426), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(772), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(935), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1641), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1625), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(432), + [anon_sym_export] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(432), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(438), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), + [anon_sym_async] = ACTIONS(440), + [anon_sym_static] = ACTIONS(432), + [anon_sym_yield] = ACTIONS(442), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(446), + [anon_sym_PLUS] = ACTIONS(448), + [anon_sym_DASH] = ACTIONS(448), + [anon_sym_SLASH] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_TILDE] = ACTIONS(452), + [anon_sym_typeof] = ACTIONS(448), + [anon_sym_void] = ACTIONS(448), + [anon_sym_delete] = ACTIONS(448), + [anon_sym_PLUS_PLUS] = ACTIONS(454), + [anon_sym_DASH_DASH] = ACTIONS(454), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(456), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(458), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [245] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(405), - [sym_expression] = STATE(697), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(405), - [sym_subscript_expression] = STATE(405), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(832), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1440), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1418), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(402), - [anon_sym_export] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(408), - [anon_sym_get] = ACTIONS(402), - [anon_sym_set] = ACTIONS(402), - [anon_sym_async] = ACTIONS(410), - [anon_sym_static] = ACTIONS(402), - [anon_sym_yield] = ACTIONS(412), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(416), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(420), - [anon_sym_DASH] = ACTIONS(420), - [anon_sym_BANG] = ACTIONS(422), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_typeof] = ACTIONS(420), - [anon_sym_void] = ACTIONS(420), - [anon_sym_delete] = ACTIONS(420), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(426), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(767), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(935), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1641), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1625), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(432), + [anon_sym_export] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(432), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(438), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), + [anon_sym_async] = ACTIONS(440), + [anon_sym_static] = ACTIONS(432), + [anon_sym_yield] = ACTIONS(442), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(446), + [anon_sym_PLUS] = ACTIONS(448), + [anon_sym_DASH] = ACTIONS(448), + [anon_sym_SLASH] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_TILDE] = ACTIONS(452), + [anon_sym_typeof] = ACTIONS(448), + [anon_sym_void] = ACTIONS(448), + [anon_sym_delete] = ACTIONS(448), + [anon_sym_PLUS_PLUS] = ACTIONS(454), + [anon_sym_DASH_DASH] = ACTIONS(454), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(456), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(458), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [246] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(405), - [sym_expression] = STATE(698), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(405), - [sym_subscript_expression] = STATE(405), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(832), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1440), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1418), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(402), - [anon_sym_export] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(408), - [anon_sym_get] = ACTIONS(402), - [anon_sym_set] = ACTIONS(402), - [anon_sym_async] = ACTIONS(410), - [anon_sym_static] = ACTIONS(402), - [anon_sym_yield] = ACTIONS(412), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(416), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(420), - [anon_sym_DASH] = ACTIONS(420), - [anon_sym_BANG] = ACTIONS(422), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_typeof] = ACTIONS(420), - [anon_sym_void] = ACTIONS(420), - [anon_sym_delete] = ACTIONS(420), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(426), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(452), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(935), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1641), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1625), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(432), + [anon_sym_export] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(432), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(438), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), + [anon_sym_async] = ACTIONS(440), + [anon_sym_static] = ACTIONS(432), + [anon_sym_yield] = ACTIONS(442), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(446), + [anon_sym_PLUS] = ACTIONS(448), + [anon_sym_DASH] = ACTIONS(448), + [anon_sym_SLASH] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_TILDE] = ACTIONS(452), + [anon_sym_typeof] = ACTIONS(448), + [anon_sym_void] = ACTIONS(448), + [anon_sym_delete] = ACTIONS(448), + [anon_sym_PLUS_PLUS] = ACTIONS(454), + [anon_sym_DASH_DASH] = ACTIONS(454), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(456), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(458), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [247] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(405), - [sym_expression] = STATE(699), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(405), - [sym_subscript_expression] = STATE(405), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(832), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1440), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1418), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(402), - [anon_sym_export] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(408), - [anon_sym_get] = ACTIONS(402), - [anon_sym_set] = ACTIONS(402), - [anon_sym_async] = ACTIONS(410), - [anon_sym_static] = ACTIONS(402), - [anon_sym_yield] = ACTIONS(412), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(416), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(420), - [anon_sym_DASH] = ACTIONS(420), - [anon_sym_BANG] = ACTIONS(422), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_typeof] = ACTIONS(420), - [anon_sym_void] = ACTIONS(420), - [anon_sym_delete] = ACTIONS(420), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(426), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(451), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(935), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1641), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1625), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(432), + [anon_sym_export] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(432), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(438), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), + [anon_sym_async] = ACTIONS(440), + [anon_sym_static] = ACTIONS(432), + [anon_sym_yield] = ACTIONS(442), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(446), + [anon_sym_PLUS] = ACTIONS(448), + [anon_sym_DASH] = ACTIONS(448), + [anon_sym_SLASH] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_TILDE] = ACTIONS(452), + [anon_sym_typeof] = ACTIONS(448), + [anon_sym_void] = ACTIONS(448), + [anon_sym_delete] = ACTIONS(448), + [anon_sym_PLUS_PLUS] = ACTIONS(454), + [anon_sym_DASH_DASH] = ACTIONS(454), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(456), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(458), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [248] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(405), - [sym_expression] = STATE(407), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(405), - [sym_subscript_expression] = STATE(405), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(832), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1440), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1418), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(402), - [anon_sym_export] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(408), - [anon_sym_get] = ACTIONS(402), - [anon_sym_set] = ACTIONS(402), - [anon_sym_async] = ACTIONS(410), - [anon_sym_static] = ACTIONS(402), - [anon_sym_yield] = ACTIONS(412), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(582), + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(436), + [sym_expression] = STATE(549), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_function_expression] = STATE(609), + [sym_generator_function] = STATE(609), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(436), + [sym_subscript_expression] = STATE(436), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(940), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1551), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1550), + [aux_sym_export_statement_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(392), + [anon_sym_export] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_import] = ACTIONS(398), + [anon_sym_let] = ACTIONS(392), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(400), + [anon_sym_get] = ACTIONS(392), + [anon_sym_set] = ACTIONS(392), + [anon_sym_async] = ACTIONS(402), + [anon_sym_static] = ACTIONS(392), + [anon_sym_yield] = ACTIONS(404), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(408), + [anon_sym_function] = ACTIONS(410), + [anon_sym_new] = ACTIONS(412), + [anon_sym_PLUS] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(414), [anon_sym_SLASH] = ACTIONS(416), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(420), - [anon_sym_DASH] = ACTIONS(420), - [anon_sym_BANG] = ACTIONS(422), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_typeof] = ACTIONS(420), - [anon_sym_void] = ACTIONS(420), - [anon_sym_delete] = ACTIONS(420), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(426), - [anon_sym_AT] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(418), + [anon_sym_TILDE] = ACTIONS(418), + [anon_sym_typeof] = ACTIONS(414), + [anon_sym_void] = ACTIONS(414), + [anon_sym_delete] = ACTIONS(414), + [anon_sym_PLUS_PLUS] = ACTIONS(420), + [anon_sym_DASH_DASH] = ACTIONS(420), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(422), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(424), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [249] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(405), - [sym_expression] = STATE(700), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(405), - [sym_subscript_expression] = STATE(405), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(832), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1440), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1418), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(402), - [anon_sym_export] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(408), - [anon_sym_get] = ACTIONS(402), - [anon_sym_set] = ACTIONS(402), - [anon_sym_async] = ACTIONS(410), - [anon_sym_static] = ACTIONS(402), - [anon_sym_yield] = ACTIONS(412), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(416), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(420), - [anon_sym_DASH] = ACTIONS(420), - [anon_sym_BANG] = ACTIONS(422), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_typeof] = ACTIONS(420), - [anon_sym_void] = ACTIONS(420), - [anon_sym_delete] = ACTIONS(420), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(426), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(535), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1637), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(340), + [anon_sym_set] = ACTIONS(340), + [anon_sym_async] = ACTIONS(354), + [anon_sym_static] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(390), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [250] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(405), - [sym_expression] = STATE(701), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(405), - [sym_subscript_expression] = STATE(405), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(832), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1440), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1418), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(402), - [anon_sym_export] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(408), - [anon_sym_get] = ACTIONS(402), - [anon_sym_set] = ACTIONS(402), - [anon_sym_async] = ACTIONS(410), - [anon_sym_static] = ACTIONS(402), - [anon_sym_yield] = ACTIONS(412), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(582), + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(436), + [sym_expression] = STATE(546), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_function_expression] = STATE(609), + [sym_generator_function] = STATE(609), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(436), + [sym_subscript_expression] = STATE(436), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(940), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1551), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1550), + [aux_sym_export_statement_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(392), + [anon_sym_export] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_import] = ACTIONS(398), + [anon_sym_let] = ACTIONS(392), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(400), + [anon_sym_get] = ACTIONS(392), + [anon_sym_set] = ACTIONS(392), + [anon_sym_async] = ACTIONS(402), + [anon_sym_static] = ACTIONS(392), + [anon_sym_yield] = ACTIONS(404), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(408), + [anon_sym_function] = ACTIONS(410), + [anon_sym_new] = ACTIONS(412), + [anon_sym_PLUS] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(414), [anon_sym_SLASH] = ACTIONS(416), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(420), - [anon_sym_DASH] = ACTIONS(420), - [anon_sym_BANG] = ACTIONS(422), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_typeof] = ACTIONS(420), - [anon_sym_void] = ACTIONS(420), - [anon_sym_delete] = ACTIONS(420), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(426), - [anon_sym_AT] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(418), + [anon_sym_TILDE] = ACTIONS(418), + [anon_sym_typeof] = ACTIONS(414), + [anon_sym_void] = ACTIONS(414), + [anon_sym_delete] = ACTIONS(414), + [anon_sym_PLUS_PLUS] = ACTIONS(420), + [anon_sym_DASH_DASH] = ACTIONS(420), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(422), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(424), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [251] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(405), - [sym_expression] = STATE(686), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(405), - [sym_subscript_expression] = STATE(405), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(832), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1440), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1418), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(402), - [anon_sym_export] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(408), - [anon_sym_get] = ACTIONS(402), - [anon_sym_set] = ACTIONS(402), - [anon_sym_async] = ACTIONS(410), - [anon_sym_static] = ACTIONS(402), - [anon_sym_yield] = ACTIONS(412), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(416), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(420), - [anon_sym_DASH] = ACTIONS(420), - [anon_sym_BANG] = ACTIONS(422), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_typeof] = ACTIONS(420), - [anon_sym_void] = ACTIONS(420), - [anon_sym_delete] = ACTIONS(420), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(426), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(672), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_function_expression] = STATE(609), + [sym_generator_function] = STATE(609), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(426), + [anon_sym_export] = ACTIONS(426), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_import] = ACTIONS(398), + [anon_sym_let] = ACTIONS(426), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(426), + [anon_sym_set] = ACTIONS(426), + [anon_sym_async] = ACTIONS(430), + [anon_sym_static] = ACTIONS(426), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(408), + [anon_sym_function] = ACTIONS(410), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [252] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(405), - [sym_expression] = STATE(706), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(405), - [sym_subscript_expression] = STATE(405), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(832), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1440), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1418), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(402), - [anon_sym_export] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(408), - [anon_sym_get] = ACTIONS(402), - [anon_sym_set] = ACTIONS(402), - [anon_sym_async] = ACTIONS(410), - [anon_sym_static] = ACTIONS(402), - [anon_sym_yield] = ACTIONS(412), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(416), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(420), - [anon_sym_DASH] = ACTIONS(420), - [anon_sym_BANG] = ACTIONS(422), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_typeof] = ACTIONS(420), - [anon_sym_void] = ACTIONS(420), - [anon_sym_delete] = ACTIONS(420), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(426), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(403), + [sym_expression] = STATE(781), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(403), + [sym_subscript_expression] = STATE(403), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(939), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1572), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1635), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(460), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(464), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), + [anon_sym_async] = ACTIONS(466), + [anon_sym_static] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [253] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(405), - [sym_expression] = STATE(409), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(405), - [sym_subscript_expression] = STATE(405), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(832), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1440), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1418), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(402), - [anon_sym_export] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(408), - [anon_sym_get] = ACTIONS(402), - [anon_sym_set] = ACTIONS(402), - [anon_sym_async] = ACTIONS(410), - [anon_sym_static] = ACTIONS(402), - [anon_sym_yield] = ACTIONS(412), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(416), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(420), - [anon_sym_DASH] = ACTIONS(420), - [anon_sym_BANG] = ACTIONS(422), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_typeof] = ACTIONS(420), - [anon_sym_void] = ACTIONS(420), - [anon_sym_delete] = ACTIONS(420), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(426), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(618), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_function_expression] = STATE(609), + [sym_generator_function] = STATE(609), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(426), + [anon_sym_export] = ACTIONS(426), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_import] = ACTIONS(398), + [anon_sym_let] = ACTIONS(426), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(426), + [anon_sym_set] = ACTIONS(426), + [anon_sym_async] = ACTIONS(430), + [anon_sym_static] = ACTIONS(426), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(408), + [anon_sym_function] = ACTIONS(410), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [254] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(364), - [sym_expression] = STATE(708), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(364), - [sym_subscript_expression] = STATE(364), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(833), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1383), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1388), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(428), - [anon_sym_export] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(432), - [anon_sym_get] = ACTIONS(428), - [anon_sym_set] = ACTIONS(428), - [anon_sym_async] = ACTIONS(434), - [anon_sym_static] = ACTIONS(428), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_BANG] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(442), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(444), - [anon_sym_DASH_DASH] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(446), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(776), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1637), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(340), + [anon_sym_set] = ACTIONS(340), + [anon_sym_async] = ACTIONS(354), + [anon_sym_static] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(390), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [255] = { - [sym_import] = STATE(431), - [sym_parenthesized_expression] = STATE(364), - [sym_expression] = STATE(669), - [sym_primary_expression] = STATE(432), - [sym_yield_expression] = STATE(433), - [sym_object] = STATE(431), - [sym_object_pattern] = STATE(912), - [sym_array] = STATE(431), - [sym_array_pattern] = STATE(912), - [sym_jsx_element] = STATE(433), - [sym_jsx_fragment] = STATE(433), - [sym_jsx_opening_element] = STATE(861), - [sym_jsx_self_closing_element] = STATE(433), - [sym_class] = STATE(431), - [sym_function] = STATE(431), - [sym_generator_function] = STATE(431), - [sym_arrow_function] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_new_expression] = STATE(433), - [sym_await_expression] = STATE(433), - [sym_member_expression] = STATE(364), - [sym_subscript_expression] = STATE(364), - [sym_assignment_expression] = STATE(433), - [sym_augmented_assignment_lhs] = STATE(833), - [sym_augmented_assignment_expression] = STATE(433), - [sym_destructuring_pattern] = STATE(1383), - [sym_ternary_expression] = STATE(433), - [sym_binary_expression] = STATE(433), - [sym_unary_expression] = STATE(433), - [sym_update_expression] = STATE(433), - [sym_string] = STATE(431), - [sym_template_string] = STATE(431), - [sym_regex] = STATE(431), - [sym_meta_property] = STATE(431), - [sym_decorator] = STATE(845), - [sym_formal_parameters] = STATE(1388), - [aux_sym_export_statement_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(428), - [anon_sym_export] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(324), - [anon_sym_await] = ACTIONS(432), - [anon_sym_get] = ACTIONS(428), - [anon_sym_set] = ACTIONS(428), - [anon_sym_async] = ACTIONS(434), - [anon_sym_static] = ACTIONS(428), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_class] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_new] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_BANG] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(442), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(444), - [anon_sym_DASH_DASH] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(352), - [anon_sym_SQUOTE] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(356), - [sym_number] = ACTIONS(358), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_null] = ACTIONS(360), - [sym_undefined] = ACTIONS(446), - [anon_sym_AT] = ACTIONS(85), + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(436), + [sym_expression] = STATE(619), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_function_expression] = STATE(609), + [sym_generator_function] = STATE(609), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(436), + [sym_subscript_expression] = STATE(436), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(940), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1551), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1550), + [aux_sym_export_statement_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(392), + [anon_sym_export] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_import] = ACTIONS(398), + [anon_sym_let] = ACTIONS(392), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(400), + [anon_sym_get] = ACTIONS(392), + [anon_sym_set] = ACTIONS(392), + [anon_sym_async] = ACTIONS(402), + [anon_sym_static] = ACTIONS(392), + [anon_sym_yield] = ACTIONS(404), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(408), + [anon_sym_function] = ACTIONS(410), + [anon_sym_new] = ACTIONS(412), + [anon_sym_PLUS] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(414), + [anon_sym_SLASH] = ACTIONS(416), + [anon_sym_BANG] = ACTIONS(418), + [anon_sym_TILDE] = ACTIONS(418), + [anon_sym_typeof] = ACTIONS(414), + [anon_sym_void] = ACTIONS(414), + [anon_sym_delete] = ACTIONS(414), + [anon_sym_PLUS_PLUS] = ACTIONS(420), + [anon_sym_DASH_DASH] = ACTIONS(420), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(422), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(424), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [256] = { - [sym_export_clause] = STATE(1060), - [sym_declaration] = STATE(332), - [sym_namespace_import_export] = STATE(1275), - [sym_variable_declaration] = STATE(341), - [sym_lexical_declaration] = STATE(341), - [sym_class_declaration] = STATE(341), - [sym_function_declaration] = STATE(341), - [sym_generator_function_declaration] = STATE(341), - [sym_decorator] = STATE(845), - [aux_sym_export_statement_repeat1] = STATE(1014), - [anon_sym_STAR] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_default] = ACTIONS(755), - [anon_sym_LBRACE] = ACTIONS(681), - [anon_sym_COMMA] = ACTIONS(677), - [anon_sym_var] = ACTIONS(685), - [anon_sym_let] = ACTIONS(687), - [anon_sym_const] = ACTIONS(687), - [anon_sym_LPAREN] = ACTIONS(677), - [anon_sym_async] = ACTIONS(692), - [anon_sym_in] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(757), - [anon_sym_EQ] = ACTIONS(759), - [anon_sym_LBRACK] = ACTIONS(677), - [anon_sym_LT] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(694), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_DOT] = ACTIONS(677), - [anon_sym_class] = ACTIONS(701), - [anon_sym_function] = ACTIONS(703), - [anon_sym_EQ_GT] = ACTIONS(705), - [anon_sym_QMARK_DOT] = ACTIONS(677), - [anon_sym_PLUS_EQ] = ACTIONS(707), - [anon_sym_DASH_EQ] = ACTIONS(707), - [anon_sym_STAR_EQ] = ACTIONS(707), - [anon_sym_SLASH_EQ] = ACTIONS(707), - [anon_sym_PERCENT_EQ] = ACTIONS(707), - [anon_sym_CARET_EQ] = ACTIONS(707), - [anon_sym_AMP_EQ] = ACTIONS(707), - [anon_sym_PIPE_EQ] = ACTIONS(707), - [anon_sym_GT_GT_EQ] = ACTIONS(707), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(707), - [anon_sym_LT_LT_EQ] = ACTIONS(707), - [anon_sym_STAR_STAR_EQ] = ACTIONS(707), - [anon_sym_AMP_AMP_EQ] = ACTIONS(707), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(707), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(707), - [anon_sym_AMP_AMP] = ACTIONS(694), - [anon_sym_PIPE_PIPE] = ACTIONS(694), - [anon_sym_GT_GT] = ACTIONS(694), - [anon_sym_GT_GT_GT] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(694), - [anon_sym_AMP] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_PIPE] = ACTIONS(694), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_PERCENT] = ACTIONS(694), - [anon_sym_STAR_STAR] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(677), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(677), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(677), - [anon_sym_GT_EQ] = ACTIONS(677), - [anon_sym_QMARK_QMARK] = ACTIONS(694), - [anon_sym_instanceof] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_DASH_DASH] = ACTIONS(677), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(677), - [anon_sym_AT] = ACTIONS(85), - [sym_automatic_semicolon] = ACTIONS(677), - [sym_ternary_qmark] = ACTIONS(677), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(525), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1637), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(340), + [anon_sym_set] = ACTIONS(340), + [anon_sym_async] = ACTIONS(354), + [anon_sym_static] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(390), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [257] = { - [sym_export_clause] = STATE(1060), - [sym_declaration] = STATE(332), - [sym_namespace_import_export] = STATE(1275), - [sym_variable_declaration] = STATE(341), - [sym_lexical_declaration] = STATE(341), - [sym_class_declaration] = STATE(341), - [sym_function_declaration] = STATE(341), - [sym_generator_function_declaration] = STATE(341), - [sym_decorator] = STATE(845), - [aux_sym_export_statement_repeat1] = STATE(1014), - [anon_sym_STAR] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_default] = ACTIONS(679), - [anon_sym_LBRACE] = ACTIONS(681), - [anon_sym_COMMA] = ACTIONS(677), - [anon_sym_var] = ACTIONS(685), - [anon_sym_let] = ACTIONS(687), - [anon_sym_const] = ACTIONS(687), - [anon_sym_LPAREN] = ACTIONS(677), - [anon_sym_async] = ACTIONS(692), - [anon_sym_in] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(761), - [anon_sym_EQ] = ACTIONS(759), - [anon_sym_LBRACK] = ACTIONS(677), - [anon_sym_LT] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(694), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_DOT] = ACTIONS(677), - [anon_sym_class] = ACTIONS(701), - [anon_sym_function] = ACTIONS(703), - [anon_sym_EQ_GT] = ACTIONS(705), - [anon_sym_QMARK_DOT] = ACTIONS(677), - [anon_sym_PLUS_EQ] = ACTIONS(707), - [anon_sym_DASH_EQ] = ACTIONS(707), - [anon_sym_STAR_EQ] = ACTIONS(707), - [anon_sym_SLASH_EQ] = ACTIONS(707), - [anon_sym_PERCENT_EQ] = ACTIONS(707), - [anon_sym_CARET_EQ] = ACTIONS(707), - [anon_sym_AMP_EQ] = ACTIONS(707), - [anon_sym_PIPE_EQ] = ACTIONS(707), - [anon_sym_GT_GT_EQ] = ACTIONS(707), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(707), - [anon_sym_LT_LT_EQ] = ACTIONS(707), - [anon_sym_STAR_STAR_EQ] = ACTIONS(707), - [anon_sym_AMP_AMP_EQ] = ACTIONS(707), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(707), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(707), - [anon_sym_AMP_AMP] = ACTIONS(694), - [anon_sym_PIPE_PIPE] = ACTIONS(694), - [anon_sym_GT_GT] = ACTIONS(694), - [anon_sym_GT_GT_GT] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(694), - [anon_sym_AMP] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_PIPE] = ACTIONS(694), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_PERCENT] = ACTIONS(694), - [anon_sym_STAR_STAR] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(677), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(677), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(677), - [anon_sym_GT_EQ] = ACTIONS(677), - [anon_sym_QMARK_QMARK] = ACTIONS(694), - [anon_sym_instanceof] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_DASH_DASH] = ACTIONS(677), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(677), - [anon_sym_AT] = ACTIONS(85), - [sym_automatic_semicolon] = ACTIONS(677), - [sym_ternary_qmark] = ACTIONS(677), + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(436), + [sym_expression] = STATE(640), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_function_expression] = STATE(609), + [sym_generator_function] = STATE(609), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(436), + [sym_subscript_expression] = STATE(436), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(940), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1551), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1550), + [aux_sym_export_statement_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(392), + [anon_sym_export] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_import] = ACTIONS(398), + [anon_sym_let] = ACTIONS(392), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(400), + [anon_sym_get] = ACTIONS(392), + [anon_sym_set] = ACTIONS(392), + [anon_sym_async] = ACTIONS(402), + [anon_sym_static] = ACTIONS(392), + [anon_sym_yield] = ACTIONS(404), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(408), + [anon_sym_function] = ACTIONS(410), + [anon_sym_new] = ACTIONS(412), + [anon_sym_PLUS] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(414), + [anon_sym_SLASH] = ACTIONS(416), + [anon_sym_BANG] = ACTIONS(418), + [anon_sym_TILDE] = ACTIONS(418), + [anon_sym_typeof] = ACTIONS(414), + [anon_sym_void] = ACTIONS(414), + [anon_sym_delete] = ACTIONS(414), + [anon_sym_PLUS_PLUS] = ACTIONS(420), + [anon_sym_DASH_DASH] = ACTIONS(420), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(422), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(424), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [258] = { - [sym_string] = STATE(1175), - [sym_formal_parameters] = STATE(1415), - [sym_property_name] = STATE(1265), - [sym_computed_property_name] = STATE(1175), - [aux_sym_object_repeat1] = STATE(1137), - [aux_sym_object_pattern_repeat1] = STATE(1142), - [sym_identifier] = ACTIONS(763), - [anon_sym_export] = ACTIONS(763), - [anon_sym_STAR] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_COMMA] = ACTIONS(677), - [anon_sym_RBRACE] = ACTIONS(683), - [anon_sym_LPAREN] = ACTIONS(768), - [anon_sym_get] = ACTIONS(772), - [anon_sym_set] = ACTIONS(772), - [anon_sym_async] = ACTIONS(763), - [anon_sym_static] = ACTIONS(763), - [anon_sym_in] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(696), - [anon_sym_EQ] = ACTIONS(699), - [anon_sym_LBRACK] = ACTIONS(774), - [anon_sym_LT] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(694), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_DOT] = ACTIONS(694), - [anon_sym_function] = ACTIONS(777), - [anon_sym_EQ_GT] = ACTIONS(705), - [anon_sym_QMARK_DOT] = ACTIONS(677), - [anon_sym_PLUS_EQ] = ACTIONS(707), - [anon_sym_DASH_EQ] = ACTIONS(707), - [anon_sym_STAR_EQ] = ACTIONS(707), - [anon_sym_SLASH_EQ] = ACTIONS(707), - [anon_sym_PERCENT_EQ] = ACTIONS(707), - [anon_sym_CARET_EQ] = ACTIONS(707), - [anon_sym_AMP_EQ] = ACTIONS(707), - [anon_sym_PIPE_EQ] = ACTIONS(707), - [anon_sym_GT_GT_EQ] = ACTIONS(707), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(707), - [anon_sym_LT_LT_EQ] = ACTIONS(707), - [anon_sym_STAR_STAR_EQ] = ACTIONS(707), - [anon_sym_AMP_AMP_EQ] = ACTIONS(707), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(707), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(707), - [anon_sym_AMP_AMP] = ACTIONS(694), - [anon_sym_PIPE_PIPE] = ACTIONS(694), - [anon_sym_GT_GT] = ACTIONS(694), - [anon_sym_GT_GT_GT] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(694), - [anon_sym_AMP] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_PIPE] = ACTIONS(694), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_PERCENT] = ACTIONS(694), - [anon_sym_STAR_STAR] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(677), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(677), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(677), - [anon_sym_GT_EQ] = ACTIONS(677), - [anon_sym_QMARK_QMARK] = ACTIONS(694), - [anon_sym_instanceof] = ACTIONS(694), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_DQUOTE] = ACTIONS(779), - [anon_sym_SQUOTE] = ACTIONS(781), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(677), - [sym_number] = ACTIONS(109), - [sym_private_property_identifier] = ACTIONS(109), - [sym_automatic_semicolon] = ACTIONS(677), - [sym_ternary_qmark] = ACTIONS(677), + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(437), + [sym_expression] = STATE(681), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_function_expression] = STATE(609), + [sym_generator_function] = STATE(609), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(954), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1553), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1555), + [aux_sym_export_statement_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(426), + [anon_sym_export] = ACTIONS(426), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_import] = ACTIONS(398), + [anon_sym_let] = ACTIONS(426), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_get] = ACTIONS(426), + [anon_sym_set] = ACTIONS(426), + [anon_sym_async] = ACTIONS(430), + [anon_sym_static] = ACTIONS(426), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(408), + [anon_sym_function] = ACTIONS(410), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [259] = { - [sym_string] = STATE(1175), - [sym_formal_parameters] = STATE(1415), - [sym_property_name] = STATE(1265), - [sym_computed_property_name] = STATE(1175), - [aux_sym_object_repeat1] = STATE(1146), - [aux_sym_object_pattern_repeat1] = STATE(1142), - [sym_identifier] = ACTIONS(763), - [anon_sym_export] = ACTIONS(763), - [anon_sym_STAR] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_COMMA] = ACTIONS(677), - [anon_sym_RBRACE] = ACTIONS(711), - [anon_sym_LPAREN] = ACTIONS(768), - [anon_sym_get] = ACTIONS(772), - [anon_sym_set] = ACTIONS(772), - [anon_sym_async] = ACTIONS(763), - [anon_sym_static] = ACTIONS(763), - [anon_sym_in] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(696), - [anon_sym_EQ] = ACTIONS(699), - [anon_sym_LBRACK] = ACTIONS(774), - [anon_sym_LT] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(694), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_DOT] = ACTIONS(694), - [anon_sym_function] = ACTIONS(777), - [anon_sym_EQ_GT] = ACTIONS(705), - [anon_sym_QMARK_DOT] = ACTIONS(677), - [anon_sym_PLUS_EQ] = ACTIONS(707), - [anon_sym_DASH_EQ] = ACTIONS(707), - [anon_sym_STAR_EQ] = ACTIONS(707), - [anon_sym_SLASH_EQ] = ACTIONS(707), - [anon_sym_PERCENT_EQ] = ACTIONS(707), - [anon_sym_CARET_EQ] = ACTIONS(707), - [anon_sym_AMP_EQ] = ACTIONS(707), - [anon_sym_PIPE_EQ] = ACTIONS(707), - [anon_sym_GT_GT_EQ] = ACTIONS(707), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(707), - [anon_sym_LT_LT_EQ] = ACTIONS(707), - [anon_sym_STAR_STAR_EQ] = ACTIONS(707), - [anon_sym_AMP_AMP_EQ] = ACTIONS(707), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(707), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(707), - [anon_sym_AMP_AMP] = ACTIONS(694), - [anon_sym_PIPE_PIPE] = ACTIONS(694), - [anon_sym_GT_GT] = ACTIONS(694), - [anon_sym_GT_GT_GT] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(694), - [anon_sym_AMP] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_PIPE] = ACTIONS(694), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_PERCENT] = ACTIONS(694), - [anon_sym_STAR_STAR] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(677), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(677), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(677), - [anon_sym_GT_EQ] = ACTIONS(677), - [anon_sym_QMARK_QMARK] = ACTIONS(694), - [anon_sym_instanceof] = ACTIONS(694), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_DQUOTE] = ACTIONS(779), - [anon_sym_SQUOTE] = ACTIONS(781), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(677), - [sym_number] = ACTIONS(109), - [sym_private_property_identifier] = ACTIONS(109), - [sym_automatic_semicolon] = ACTIONS(677), - [sym_ternary_qmark] = ACTIONS(677), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(533), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1637), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(340), + [anon_sym_set] = ACTIONS(340), + [anon_sym_async] = ACTIONS(354), + [anon_sym_static] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(390), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [260] = { - [sym_string] = STATE(1175), - [sym_formal_parameters] = STATE(1415), - [sym_property_name] = STATE(1265), - [sym_computed_property_name] = STATE(1175), - [aux_sym_object_repeat1] = STATE(1146), - [aux_sym_object_pattern_repeat1] = STATE(1142), - [sym_identifier] = ACTIONS(763), - [anon_sym_export] = ACTIONS(763), - [anon_sym_STAR] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_COMMA] = ACTIONS(677), - [anon_sym_RBRACE] = ACTIONS(709), - [anon_sym_LPAREN] = ACTIONS(768), - [anon_sym_get] = ACTIONS(772), - [anon_sym_set] = ACTIONS(772), - [anon_sym_async] = ACTIONS(763), - [anon_sym_static] = ACTIONS(763), - [anon_sym_in] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(696), - [anon_sym_EQ] = ACTIONS(699), - [anon_sym_LBRACK] = ACTIONS(774), - [anon_sym_LT] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(694), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_DOT] = ACTIONS(694), - [anon_sym_function] = ACTIONS(777), - [anon_sym_EQ_GT] = ACTIONS(705), - [anon_sym_QMARK_DOT] = ACTIONS(677), - [anon_sym_PLUS_EQ] = ACTIONS(707), - [anon_sym_DASH_EQ] = ACTIONS(707), - [anon_sym_STAR_EQ] = ACTIONS(707), - [anon_sym_SLASH_EQ] = ACTIONS(707), - [anon_sym_PERCENT_EQ] = ACTIONS(707), - [anon_sym_CARET_EQ] = ACTIONS(707), - [anon_sym_AMP_EQ] = ACTIONS(707), - [anon_sym_PIPE_EQ] = ACTIONS(707), - [anon_sym_GT_GT_EQ] = ACTIONS(707), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(707), - [anon_sym_LT_LT_EQ] = ACTIONS(707), - [anon_sym_STAR_STAR_EQ] = ACTIONS(707), - [anon_sym_AMP_AMP_EQ] = ACTIONS(707), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(707), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(707), - [anon_sym_AMP_AMP] = ACTIONS(694), - [anon_sym_PIPE_PIPE] = ACTIONS(694), - [anon_sym_GT_GT] = ACTIONS(694), - [anon_sym_GT_GT_GT] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(694), - [anon_sym_AMP] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_PIPE] = ACTIONS(694), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_PERCENT] = ACTIONS(694), - [anon_sym_STAR_STAR] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(677), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(677), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(677), - [anon_sym_GT_EQ] = ACTIONS(677), - [anon_sym_QMARK_QMARK] = ACTIONS(694), - [anon_sym_instanceof] = ACTIONS(694), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_DQUOTE] = ACTIONS(779), - [anon_sym_SQUOTE] = ACTIONS(781), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(677), - [sym_number] = ACTIONS(109), - [sym_private_property_identifier] = ACTIONS(109), - [sym_automatic_semicolon] = ACTIONS(677), - [sym_ternary_qmark] = ACTIONS(677), + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(436), + [sym_expression] = STATE(639), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_function_expression] = STATE(609), + [sym_generator_function] = STATE(609), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(436), + [sym_subscript_expression] = STATE(436), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(940), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1551), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1550), + [aux_sym_export_statement_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(392), + [anon_sym_export] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_import] = ACTIONS(398), + [anon_sym_let] = ACTIONS(392), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(400), + [anon_sym_get] = ACTIONS(392), + [anon_sym_set] = ACTIONS(392), + [anon_sym_async] = ACTIONS(402), + [anon_sym_static] = ACTIONS(392), + [anon_sym_yield] = ACTIONS(404), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(408), + [anon_sym_function] = ACTIONS(410), + [anon_sym_new] = ACTIONS(412), + [anon_sym_PLUS] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(414), + [anon_sym_SLASH] = ACTIONS(416), + [anon_sym_BANG] = ACTIONS(418), + [anon_sym_TILDE] = ACTIONS(418), + [anon_sym_typeof] = ACTIONS(414), + [anon_sym_void] = ACTIONS(414), + [anon_sym_delete] = ACTIONS(414), + [anon_sym_PLUS_PLUS] = ACTIONS(420), + [anon_sym_DASH_DASH] = ACTIONS(420), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(422), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(424), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [261] = { - [sym_string] = STATE(1175), - [sym_property_name] = STATE(1265), - [sym_computed_property_name] = STATE(1175), - [aux_sym_object_repeat1] = STATE(1146), - [aux_sym_object_pattern_repeat1] = STATE(1142), - [sym_identifier] = ACTIONS(783), - [anon_sym_export] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_COMMA] = ACTIONS(677), - [anon_sym_RBRACE] = ACTIONS(711), - [anon_sym_LPAREN] = ACTIONS(689), - [anon_sym_get] = ACTIONS(785), - [anon_sym_set] = ACTIONS(785), - [anon_sym_async] = ACTIONS(787), - [anon_sym_static] = ACTIONS(783), - [anon_sym_in] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(696), - [anon_sym_EQ] = ACTIONS(699), - [anon_sym_LBRACK] = ACTIONS(774), - [anon_sym_LT] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(694), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_DOT] = ACTIONS(694), - [anon_sym_EQ_GT] = ACTIONS(705), - [anon_sym_QMARK_DOT] = ACTIONS(677), - [anon_sym_PLUS_EQ] = ACTIONS(707), - [anon_sym_DASH_EQ] = ACTIONS(707), - [anon_sym_STAR_EQ] = ACTIONS(707), - [anon_sym_SLASH_EQ] = ACTIONS(707), - [anon_sym_PERCENT_EQ] = ACTIONS(707), - [anon_sym_CARET_EQ] = ACTIONS(707), - [anon_sym_AMP_EQ] = ACTIONS(707), - [anon_sym_PIPE_EQ] = ACTIONS(707), - [anon_sym_GT_GT_EQ] = ACTIONS(707), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(707), - [anon_sym_LT_LT_EQ] = ACTIONS(707), - [anon_sym_STAR_STAR_EQ] = ACTIONS(707), - [anon_sym_AMP_AMP_EQ] = ACTIONS(707), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(707), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(707), - [anon_sym_AMP_AMP] = ACTIONS(694), - [anon_sym_PIPE_PIPE] = ACTIONS(694), - [anon_sym_GT_GT] = ACTIONS(694), - [anon_sym_GT_GT_GT] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(694), - [anon_sym_AMP] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_PIPE] = ACTIONS(694), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_PERCENT] = ACTIONS(694), - [anon_sym_STAR_STAR] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(677), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(677), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(677), - [anon_sym_GT_EQ] = ACTIONS(677), - [anon_sym_QMARK_QMARK] = ACTIONS(694), - [anon_sym_instanceof] = ACTIONS(694), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_DQUOTE] = ACTIONS(779), - [anon_sym_SQUOTE] = ACTIONS(781), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(677), - [sym_number] = ACTIONS(109), - [sym_private_property_identifier] = ACTIONS(109), - [sym_automatic_semicolon] = ACTIONS(677), - [sym_ternary_qmark] = ACTIONS(677), + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(436), + [sym_expression] = STATE(636), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_function_expression] = STATE(609), + [sym_generator_function] = STATE(609), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(436), + [sym_subscript_expression] = STATE(436), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(940), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1551), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1550), + [aux_sym_export_statement_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(392), + [anon_sym_export] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_import] = ACTIONS(398), + [anon_sym_let] = ACTIONS(392), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(400), + [anon_sym_get] = ACTIONS(392), + [anon_sym_set] = ACTIONS(392), + [anon_sym_async] = ACTIONS(402), + [anon_sym_static] = ACTIONS(392), + [anon_sym_yield] = ACTIONS(404), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(408), + [anon_sym_function] = ACTIONS(410), + [anon_sym_new] = ACTIONS(412), + [anon_sym_PLUS] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(414), + [anon_sym_SLASH] = ACTIONS(416), + [anon_sym_BANG] = ACTIONS(418), + [anon_sym_TILDE] = ACTIONS(418), + [anon_sym_typeof] = ACTIONS(414), + [anon_sym_void] = ACTIONS(414), + [anon_sym_delete] = ACTIONS(414), + [anon_sym_PLUS_PLUS] = ACTIONS(420), + [anon_sym_DASH_DASH] = ACTIONS(420), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(422), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(424), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [262] = { - [sym_string] = STATE(1175), - [sym_property_name] = STATE(1265), - [sym_computed_property_name] = STATE(1175), - [aux_sym_object_repeat1] = STATE(1137), - [aux_sym_object_pattern_repeat1] = STATE(1142), - [sym_identifier] = ACTIONS(783), - [anon_sym_export] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_COMMA] = ACTIONS(677), - [anon_sym_RBRACE] = ACTIONS(683), - [anon_sym_LPAREN] = ACTIONS(689), - [anon_sym_get] = ACTIONS(785), - [anon_sym_set] = ACTIONS(785), - [anon_sym_async] = ACTIONS(787), - [anon_sym_static] = ACTIONS(783), - [anon_sym_in] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(696), - [anon_sym_EQ] = ACTIONS(699), - [anon_sym_LBRACK] = ACTIONS(774), - [anon_sym_LT] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(694), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_DOT] = ACTIONS(694), - [anon_sym_EQ_GT] = ACTIONS(705), - [anon_sym_QMARK_DOT] = ACTIONS(677), - [anon_sym_PLUS_EQ] = ACTIONS(707), - [anon_sym_DASH_EQ] = ACTIONS(707), - [anon_sym_STAR_EQ] = ACTIONS(707), - [anon_sym_SLASH_EQ] = ACTIONS(707), - [anon_sym_PERCENT_EQ] = ACTIONS(707), - [anon_sym_CARET_EQ] = ACTIONS(707), - [anon_sym_AMP_EQ] = ACTIONS(707), - [anon_sym_PIPE_EQ] = ACTIONS(707), - [anon_sym_GT_GT_EQ] = ACTIONS(707), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(707), - [anon_sym_LT_LT_EQ] = ACTIONS(707), - [anon_sym_STAR_STAR_EQ] = ACTIONS(707), - [anon_sym_AMP_AMP_EQ] = ACTIONS(707), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(707), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(707), - [anon_sym_AMP_AMP] = ACTIONS(694), - [anon_sym_PIPE_PIPE] = ACTIONS(694), - [anon_sym_GT_GT] = ACTIONS(694), - [anon_sym_GT_GT_GT] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(694), - [anon_sym_AMP] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_PIPE] = ACTIONS(694), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_PERCENT] = ACTIONS(694), - [anon_sym_STAR_STAR] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(677), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(677), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(677), - [anon_sym_GT_EQ] = ACTIONS(677), - [anon_sym_QMARK_QMARK] = ACTIONS(694), - [anon_sym_instanceof] = ACTIONS(694), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_DQUOTE] = ACTIONS(779), - [anon_sym_SQUOTE] = ACTIONS(781), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(677), - [sym_number] = ACTIONS(109), - [sym_private_property_identifier] = ACTIONS(109), - [sym_automatic_semicolon] = ACTIONS(677), - [sym_ternary_qmark] = ACTIONS(677), + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(436), + [sym_expression] = STATE(635), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_function_expression] = STATE(609), + [sym_generator_function] = STATE(609), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(436), + [sym_subscript_expression] = STATE(436), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(940), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1551), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1550), + [aux_sym_export_statement_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(392), + [anon_sym_export] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_import] = ACTIONS(398), + [anon_sym_let] = ACTIONS(392), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(400), + [anon_sym_get] = ACTIONS(392), + [anon_sym_set] = ACTIONS(392), + [anon_sym_async] = ACTIONS(402), + [anon_sym_static] = ACTIONS(392), + [anon_sym_yield] = ACTIONS(404), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(408), + [anon_sym_function] = ACTIONS(410), + [anon_sym_new] = ACTIONS(412), + [anon_sym_PLUS] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(414), + [anon_sym_SLASH] = ACTIONS(416), + [anon_sym_BANG] = ACTIONS(418), + [anon_sym_TILDE] = ACTIONS(418), + [anon_sym_typeof] = ACTIONS(414), + [anon_sym_void] = ACTIONS(414), + [anon_sym_delete] = ACTIONS(414), + [anon_sym_PLUS_PLUS] = ACTIONS(420), + [anon_sym_DASH_DASH] = ACTIONS(420), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(422), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(424), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [263] = { - [sym_string] = STATE(1175), - [sym_property_name] = STATE(1265), - [sym_computed_property_name] = STATE(1175), - [aux_sym_object_repeat1] = STATE(1146), - [aux_sym_object_pattern_repeat1] = STATE(1142), - [sym_identifier] = ACTIONS(783), - [anon_sym_export] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(694), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_COMMA] = ACTIONS(677), - [anon_sym_RBRACE] = ACTIONS(709), - [anon_sym_LPAREN] = ACTIONS(689), - [anon_sym_get] = ACTIONS(783), - [anon_sym_set] = ACTIONS(783), - [anon_sym_async] = ACTIONS(783), - [anon_sym_static] = ACTIONS(783), - [anon_sym_in] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(696), - [anon_sym_EQ] = ACTIONS(699), - [anon_sym_LBRACK] = ACTIONS(774), - [anon_sym_LT] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(694), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_DOT] = ACTIONS(694), - [anon_sym_EQ_GT] = ACTIONS(705), - [anon_sym_QMARK_DOT] = ACTIONS(677), - [anon_sym_PLUS_EQ] = ACTIONS(707), - [anon_sym_DASH_EQ] = ACTIONS(707), - [anon_sym_STAR_EQ] = ACTIONS(707), - [anon_sym_SLASH_EQ] = ACTIONS(707), - [anon_sym_PERCENT_EQ] = ACTIONS(707), - [anon_sym_CARET_EQ] = ACTIONS(707), - [anon_sym_AMP_EQ] = ACTIONS(707), - [anon_sym_PIPE_EQ] = ACTIONS(707), - [anon_sym_GT_GT_EQ] = ACTIONS(707), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(707), - [anon_sym_LT_LT_EQ] = ACTIONS(707), - [anon_sym_STAR_STAR_EQ] = ACTIONS(707), - [anon_sym_AMP_AMP_EQ] = ACTIONS(707), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(707), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(707), - [anon_sym_AMP_AMP] = ACTIONS(694), - [anon_sym_PIPE_PIPE] = ACTIONS(694), - [anon_sym_GT_GT] = ACTIONS(694), - [anon_sym_GT_GT_GT] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(694), - [anon_sym_AMP] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_PIPE] = ACTIONS(694), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_PERCENT] = ACTIONS(694), - [anon_sym_STAR_STAR] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(677), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(677), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(677), - [anon_sym_GT_EQ] = ACTIONS(677), - [anon_sym_QMARK_QMARK] = ACTIONS(694), - [anon_sym_instanceof] = ACTIONS(694), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_DQUOTE] = ACTIONS(779), - [anon_sym_SQUOTE] = ACTIONS(781), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(677), - [sym_number] = ACTIONS(109), - [sym_private_property_identifier] = ACTIONS(109), - [sym_automatic_semicolon] = ACTIONS(677), - [sym_ternary_qmark] = ACTIONS(677), + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(436), + [sym_expression] = STATE(633), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_function_expression] = STATE(609), + [sym_generator_function] = STATE(609), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(436), + [sym_subscript_expression] = STATE(436), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(940), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1551), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1550), + [aux_sym_export_statement_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(392), + [anon_sym_export] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_import] = ACTIONS(398), + [anon_sym_let] = ACTIONS(392), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(400), + [anon_sym_get] = ACTIONS(392), + [anon_sym_set] = ACTIONS(392), + [anon_sym_async] = ACTIONS(402), + [anon_sym_static] = ACTIONS(392), + [anon_sym_yield] = ACTIONS(404), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(408), + [anon_sym_function] = ACTIONS(410), + [anon_sym_new] = ACTIONS(412), + [anon_sym_PLUS] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(414), + [anon_sym_SLASH] = ACTIONS(416), + [anon_sym_BANG] = ACTIONS(418), + [anon_sym_TILDE] = ACTIONS(418), + [anon_sym_typeof] = ACTIONS(414), + [anon_sym_void] = ACTIONS(414), + [anon_sym_delete] = ACTIONS(414), + [anon_sym_PLUS_PLUS] = ACTIONS(420), + [anon_sym_DASH_DASH] = ACTIONS(420), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(422), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(424), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [264] = { - [sym_string] = STATE(1175), - [sym_property_name] = STATE(1265), - [sym_computed_property_name] = STATE(1175), - [aux_sym_object_repeat1] = STATE(1146), - [aux_sym_object_pattern_repeat1] = STATE(1142), - [sym_identifier] = ACTIONS(783), - [anon_sym_export] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_COMMA] = ACTIONS(677), - [anon_sym_RBRACE] = ACTIONS(709), - [anon_sym_LPAREN] = ACTIONS(689), - [anon_sym_get] = ACTIONS(785), - [anon_sym_set] = ACTIONS(785), - [anon_sym_async] = ACTIONS(787), - [anon_sym_static] = ACTIONS(783), - [anon_sym_in] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(696), - [anon_sym_EQ] = ACTIONS(699), - [anon_sym_LBRACK] = ACTIONS(774), - [anon_sym_LT] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(694), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_DOT] = ACTIONS(694), - [anon_sym_EQ_GT] = ACTIONS(705), - [anon_sym_QMARK_DOT] = ACTIONS(677), - [anon_sym_PLUS_EQ] = ACTIONS(707), - [anon_sym_DASH_EQ] = ACTIONS(707), - [anon_sym_STAR_EQ] = ACTIONS(707), - [anon_sym_SLASH_EQ] = ACTIONS(707), - [anon_sym_PERCENT_EQ] = ACTIONS(707), - [anon_sym_CARET_EQ] = ACTIONS(707), - [anon_sym_AMP_EQ] = ACTIONS(707), - [anon_sym_PIPE_EQ] = ACTIONS(707), - [anon_sym_GT_GT_EQ] = ACTIONS(707), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(707), - [anon_sym_LT_LT_EQ] = ACTIONS(707), - [anon_sym_STAR_STAR_EQ] = ACTIONS(707), - [anon_sym_AMP_AMP_EQ] = ACTIONS(707), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(707), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(707), - [anon_sym_AMP_AMP] = ACTIONS(694), - [anon_sym_PIPE_PIPE] = ACTIONS(694), - [anon_sym_GT_GT] = ACTIONS(694), - [anon_sym_GT_GT_GT] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(694), - [anon_sym_AMP] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_PIPE] = ACTIONS(694), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_PERCENT] = ACTIONS(694), - [anon_sym_STAR_STAR] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(677), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(677), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(677), - [anon_sym_GT_EQ] = ACTIONS(677), - [anon_sym_QMARK_QMARK] = ACTIONS(694), - [anon_sym_instanceof] = ACTIONS(694), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_DQUOTE] = ACTIONS(779), - [anon_sym_SQUOTE] = ACTIONS(781), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(677), - [sym_number] = ACTIONS(109), - [sym_private_property_identifier] = ACTIONS(109), - [sym_automatic_semicolon] = ACTIONS(677), - [sym_ternary_qmark] = ACTIONS(677), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(780), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(935), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1641), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1625), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(432), + [anon_sym_export] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(432), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(438), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), + [anon_sym_async] = ACTIONS(440), + [anon_sym_static] = ACTIONS(432), + [anon_sym_yield] = ACTIONS(442), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(446), + [anon_sym_PLUS] = ACTIONS(448), + [anon_sym_DASH] = ACTIONS(448), + [anon_sym_SLASH] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_TILDE] = ACTIONS(452), + [anon_sym_typeof] = ACTIONS(448), + [anon_sym_void] = ACTIONS(448), + [anon_sym_delete] = ACTIONS(448), + [anon_sym_PLUS_PLUS] = ACTIONS(454), + [anon_sym_DASH_DASH] = ACTIONS(454), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(456), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(458), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [265] = { - [sym_string] = STATE(1175), - [sym_property_name] = STATE(1265), - [sym_computed_property_name] = STATE(1175), - [aux_sym_object_repeat1] = STATE(1137), - [aux_sym_object_pattern_repeat1] = STATE(1142), - [sym_identifier] = ACTIONS(783), - [anon_sym_export] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(694), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_COMMA] = ACTIONS(677), - [anon_sym_RBRACE] = ACTIONS(683), - [anon_sym_LPAREN] = ACTIONS(689), - [anon_sym_get] = ACTIONS(783), - [anon_sym_set] = ACTIONS(783), - [anon_sym_async] = ACTIONS(783), - [anon_sym_static] = ACTIONS(783), - [anon_sym_in] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(696), - [anon_sym_EQ] = ACTIONS(699), - [anon_sym_LBRACK] = ACTIONS(774), - [anon_sym_LT] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(694), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_DOT] = ACTIONS(694), - [anon_sym_EQ_GT] = ACTIONS(705), - [anon_sym_QMARK_DOT] = ACTIONS(677), - [anon_sym_PLUS_EQ] = ACTIONS(707), - [anon_sym_DASH_EQ] = ACTIONS(707), - [anon_sym_STAR_EQ] = ACTIONS(707), - [anon_sym_SLASH_EQ] = ACTIONS(707), - [anon_sym_PERCENT_EQ] = ACTIONS(707), - [anon_sym_CARET_EQ] = ACTIONS(707), - [anon_sym_AMP_EQ] = ACTIONS(707), - [anon_sym_PIPE_EQ] = ACTIONS(707), - [anon_sym_GT_GT_EQ] = ACTIONS(707), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(707), - [anon_sym_LT_LT_EQ] = ACTIONS(707), - [anon_sym_STAR_STAR_EQ] = ACTIONS(707), - [anon_sym_AMP_AMP_EQ] = ACTIONS(707), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(707), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(707), - [anon_sym_AMP_AMP] = ACTIONS(694), - [anon_sym_PIPE_PIPE] = ACTIONS(694), - [anon_sym_GT_GT] = ACTIONS(694), - [anon_sym_GT_GT_GT] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(694), - [anon_sym_AMP] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_PIPE] = ACTIONS(694), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_PERCENT] = ACTIONS(694), - [anon_sym_STAR_STAR] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(677), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(677), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(677), - [anon_sym_GT_EQ] = ACTIONS(677), - [anon_sym_QMARK_QMARK] = ACTIONS(694), - [anon_sym_instanceof] = ACTIONS(694), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_DQUOTE] = ACTIONS(779), - [anon_sym_SQUOTE] = ACTIONS(781), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(677), - [sym_number] = ACTIONS(109), - [sym_private_property_identifier] = ACTIONS(109), - [sym_automatic_semicolon] = ACTIONS(677), - [sym_ternary_qmark] = ACTIONS(677), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(531), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1637), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(340), + [anon_sym_set] = ACTIONS(340), + [anon_sym_async] = ACTIONS(354), + [anon_sym_static] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(390), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [266] = { - [sym_string] = STATE(1175), - [sym_property_name] = STATE(1265), - [sym_computed_property_name] = STATE(1175), - [aux_sym_object_repeat1] = STATE(1146), - [aux_sym_object_pattern_repeat1] = STATE(1142), - [sym_identifier] = ACTIONS(783), - [anon_sym_export] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(694), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_COMMA] = ACTIONS(677), - [anon_sym_RBRACE] = ACTIONS(711), - [anon_sym_LPAREN] = ACTIONS(689), - [anon_sym_get] = ACTIONS(783), - [anon_sym_set] = ACTIONS(783), - [anon_sym_async] = ACTIONS(783), - [anon_sym_static] = ACTIONS(783), - [anon_sym_in] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(696), - [anon_sym_EQ] = ACTIONS(699), - [anon_sym_LBRACK] = ACTIONS(774), - [anon_sym_LT] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(694), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_DOT] = ACTIONS(694), - [anon_sym_EQ_GT] = ACTIONS(705), - [anon_sym_QMARK_DOT] = ACTIONS(677), - [anon_sym_PLUS_EQ] = ACTIONS(707), - [anon_sym_DASH_EQ] = ACTIONS(707), - [anon_sym_STAR_EQ] = ACTIONS(707), - [anon_sym_SLASH_EQ] = ACTIONS(707), - [anon_sym_PERCENT_EQ] = ACTIONS(707), - [anon_sym_CARET_EQ] = ACTIONS(707), - [anon_sym_AMP_EQ] = ACTIONS(707), - [anon_sym_PIPE_EQ] = ACTIONS(707), - [anon_sym_GT_GT_EQ] = ACTIONS(707), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(707), - [anon_sym_LT_LT_EQ] = ACTIONS(707), - [anon_sym_STAR_STAR_EQ] = ACTIONS(707), - [anon_sym_AMP_AMP_EQ] = ACTIONS(707), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(707), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(707), - [anon_sym_AMP_AMP] = ACTIONS(694), - [anon_sym_PIPE_PIPE] = ACTIONS(694), - [anon_sym_GT_GT] = ACTIONS(694), - [anon_sym_GT_GT_GT] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(694), - [anon_sym_AMP] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_PIPE] = ACTIONS(694), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_PERCENT] = ACTIONS(694), - [anon_sym_STAR_STAR] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(677), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(677), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(677), - [anon_sym_GT_EQ] = ACTIONS(677), - [anon_sym_QMARK_QMARK] = ACTIONS(694), - [anon_sym_instanceof] = ACTIONS(694), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_DQUOTE] = ACTIONS(779), - [anon_sym_SQUOTE] = ACTIONS(781), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(677), - [sym_number] = ACTIONS(109), - [sym_private_property_identifier] = ACTIONS(109), - [sym_automatic_semicolon] = ACTIONS(677), - [sym_ternary_qmark] = ACTIONS(677), + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(436), + [sym_expression] = STATE(628), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_function_expression] = STATE(609), + [sym_generator_function] = STATE(609), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(436), + [sym_subscript_expression] = STATE(436), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(940), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1551), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1550), + [aux_sym_export_statement_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(392), + [anon_sym_export] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_import] = ACTIONS(398), + [anon_sym_let] = ACTIONS(392), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(400), + [anon_sym_get] = ACTIONS(392), + [anon_sym_set] = ACTIONS(392), + [anon_sym_async] = ACTIONS(402), + [anon_sym_static] = ACTIONS(392), + [anon_sym_yield] = ACTIONS(404), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(408), + [anon_sym_function] = ACTIONS(410), + [anon_sym_new] = ACTIONS(412), + [anon_sym_PLUS] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(414), + [anon_sym_SLASH] = ACTIONS(416), + [anon_sym_BANG] = ACTIONS(418), + [anon_sym_TILDE] = ACTIONS(418), + [anon_sym_typeof] = ACTIONS(414), + [anon_sym_void] = ACTIONS(414), + [anon_sym_delete] = ACTIONS(414), + [anon_sym_PLUS_PLUS] = ACTIONS(420), + [anon_sym_DASH_DASH] = ACTIONS(420), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(422), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(424), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [267] = { - [ts_builtin_sym_end] = ACTIONS(448), - [sym_identifier] = ACTIONS(450), - [anon_sym_export] = ACTIONS(450), - [anon_sym_STAR] = ACTIONS(448), - [anon_sym_SEMI] = ACTIONS(448), - [anon_sym_default] = ACTIONS(450), - [anon_sym_LBRACE] = ACTIONS(448), - [anon_sym_COMMA] = ACTIONS(448), - [anon_sym_RBRACE] = ACTIONS(448), - [anon_sym_import] = ACTIONS(450), - [anon_sym_var] = ACTIONS(450), - [anon_sym_let] = ACTIONS(450), - [anon_sym_const] = ACTIONS(450), - [anon_sym_else] = ACTIONS(450), - [anon_sym_if] = ACTIONS(450), - [anon_sym_switch] = ACTIONS(450), - [anon_sym_for] = ACTIONS(450), - [anon_sym_LPAREN] = ACTIONS(448), - [anon_sym_await] = ACTIONS(450), - [anon_sym_get] = ACTIONS(450), - [anon_sym_set] = ACTIONS(450), - [anon_sym_async] = ACTIONS(450), - [anon_sym_static] = ACTIONS(450), - [anon_sym_while] = ACTIONS(450), - [anon_sym_do] = ACTIONS(450), - [anon_sym_try] = ACTIONS(450), - [anon_sym_with] = ACTIONS(450), - [anon_sym_break] = ACTIONS(450), - [anon_sym_continue] = ACTIONS(450), - [anon_sym_debugger] = ACTIONS(450), - [anon_sym_return] = ACTIONS(450), - [anon_sym_throw] = ACTIONS(450), - [anon_sym_case] = ACTIONS(450), - [anon_sym_catch] = ACTIONS(450), - [anon_sym_finally] = ACTIONS(450), - [anon_sym_yield] = ACTIONS(450), - [anon_sym_LBRACK] = ACTIONS(448), - [anon_sym_LT] = ACTIONS(448), - [anon_sym_SLASH] = ACTIONS(450), - [anon_sym_class] = ACTIONS(450), - [anon_sym_function] = ACTIONS(450), - [anon_sym_new] = ACTIONS(450), - [anon_sym_PLUS] = ACTIONS(450), - [anon_sym_DASH] = ACTIONS(450), - [anon_sym_BANG] = ACTIONS(448), - [anon_sym_TILDE] = ACTIONS(448), - [anon_sym_typeof] = ACTIONS(450), - [anon_sym_void] = ACTIONS(450), - [anon_sym_delete] = ACTIONS(450), - [anon_sym_PLUS_PLUS] = ACTIONS(448), - [anon_sym_DASH_DASH] = ACTIONS(448), - [anon_sym_DQUOTE] = ACTIONS(448), - [anon_sym_SQUOTE] = ACTIONS(448), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(448), - [sym_number] = ACTIONS(448), - [sym_private_property_identifier] = ACTIONS(448), - [sym_this] = ACTIONS(450), - [sym_super] = ACTIONS(450), - [sym_true] = ACTIONS(450), - [sym_false] = ACTIONS(450), - [sym_null] = ACTIONS(450), - [sym_undefined] = ACTIONS(450), - [anon_sym_AT] = ACTIONS(448), - [sym_automatic_semicolon] = ACTIONS(789), + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(530), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1637), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(340), + [anon_sym_set] = ACTIONS(340), + [anon_sym_async] = ACTIONS(354), + [anon_sym_static] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(390), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), }, [268] = { - [ts_builtin_sym_end] = ACTIONS(454), - [sym_identifier] = ACTIONS(456), - [anon_sym_export] = ACTIONS(456), - [anon_sym_STAR] = ACTIONS(454), - [anon_sym_SEMI] = ACTIONS(454), - [anon_sym_default] = ACTIONS(456), - [anon_sym_LBRACE] = ACTIONS(454), - [anon_sym_COMMA] = ACTIONS(454), - [anon_sym_RBRACE] = ACTIONS(454), - [anon_sym_import] = ACTIONS(456), - [anon_sym_var] = ACTIONS(456), - [anon_sym_let] = ACTIONS(456), - [anon_sym_const] = ACTIONS(456), - [anon_sym_else] = ACTIONS(456), - [anon_sym_if] = ACTIONS(456), - [anon_sym_switch] = ACTIONS(456), - [anon_sym_for] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(454), - [anon_sym_await] = ACTIONS(456), - [anon_sym_get] = ACTIONS(456), - [anon_sym_set] = ACTIONS(456), - [anon_sym_async] = ACTIONS(456), - [anon_sym_static] = ACTIONS(456), - [anon_sym_while] = ACTIONS(456), - [anon_sym_do] = ACTIONS(456), - [anon_sym_try] = ACTIONS(456), - [anon_sym_with] = ACTIONS(456), - [anon_sym_break] = ACTIONS(456), - [anon_sym_continue] = ACTIONS(456), - [anon_sym_debugger] = ACTIONS(456), - [anon_sym_return] = ACTIONS(456), - [anon_sym_throw] = ACTIONS(456), - [anon_sym_case] = ACTIONS(456), - [anon_sym_catch] = ACTIONS(456), - [anon_sym_finally] = ACTIONS(456), - [anon_sym_yield] = ACTIONS(456), - [anon_sym_LBRACK] = ACTIONS(454), - [anon_sym_LT] = ACTIONS(454), - [anon_sym_SLASH] = ACTIONS(456), - [anon_sym_class] = ACTIONS(456), - [anon_sym_function] = ACTIONS(456), - [anon_sym_new] = ACTIONS(456), - [anon_sym_PLUS] = ACTIONS(456), - [anon_sym_DASH] = ACTIONS(456), - [anon_sym_BANG] = ACTIONS(454), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_typeof] = ACTIONS(456), - [anon_sym_void] = ACTIONS(456), - [anon_sym_delete] = ACTIONS(456), - [anon_sym_PLUS_PLUS] = ACTIONS(454), - [anon_sym_DASH_DASH] = ACTIONS(454), - [anon_sym_DQUOTE] = ACTIONS(454), - [anon_sym_SQUOTE] = ACTIONS(454), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(454), - [sym_number] = ACTIONS(454), - [sym_private_property_identifier] = ACTIONS(454), - [sym_this] = ACTIONS(456), - [sym_super] = ACTIONS(456), - [sym_true] = ACTIONS(456), - [sym_false] = ACTIONS(456), - [sym_null] = ACTIONS(456), - [sym_undefined] = ACTIONS(456), - [anon_sym_AT] = ACTIONS(454), - [sym_automatic_semicolon] = ACTIONS(464), + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(436), + [sym_expression] = STATE(627), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_function_expression] = STATE(609), + [sym_generator_function] = STATE(609), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(436), + [sym_subscript_expression] = STATE(436), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(940), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1551), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1550), + [aux_sym_export_statement_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(392), + [anon_sym_export] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_import] = ACTIONS(398), + [anon_sym_let] = ACTIONS(392), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(400), + [anon_sym_get] = ACTIONS(392), + [anon_sym_set] = ACTIONS(392), + [anon_sym_async] = ACTIONS(402), + [anon_sym_static] = ACTIONS(392), + [anon_sym_yield] = ACTIONS(404), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(408), + [anon_sym_function] = ACTIONS(410), + [anon_sym_new] = ACTIONS(412), + [anon_sym_PLUS] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(414), + [anon_sym_SLASH] = ACTIONS(416), + [anon_sym_BANG] = ACTIONS(418), + [anon_sym_TILDE] = ACTIONS(418), + [anon_sym_typeof] = ACTIONS(414), + [anon_sym_void] = ACTIONS(414), + [anon_sym_delete] = ACTIONS(414), + [anon_sym_PLUS_PLUS] = ACTIONS(420), + [anon_sym_DASH_DASH] = ACTIONS(420), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(422), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(424), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), + }, + [269] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(436), + [sym_expression] = STATE(557), + [sym_primary_expression] = STATE(547), + [sym_yield_expression] = STATE(611), + [sym_object] = STATE(609), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(609), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(611), + [sym_jsx_opening_element] = STATE(961), + [sym_jsx_self_closing_element] = STATE(611), + [sym_class] = STATE(609), + [sym_function_expression] = STATE(609), + [sym_generator_function] = STATE(609), + [sym_arrow_function] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_new_expression] = STATE(555), + [sym_await_expression] = STATE(611), + [sym_member_expression] = STATE(436), + [sym_subscript_expression] = STATE(436), + [sym_assignment_expression] = STATE(611), + [sym_augmented_assignment_lhs] = STATE(940), + [sym_augmented_assignment_expression] = STATE(611), + [sym_destructuring_pattern] = STATE(1551), + [sym_ternary_expression] = STATE(611), + [sym_binary_expression] = STATE(611), + [sym_unary_expression] = STATE(611), + [sym_update_expression] = STATE(611), + [sym_string] = STATE(609), + [sym_template_string] = STATE(609), + [sym_regex] = STATE(609), + [sym_meta_property] = STATE(609), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1550), + [aux_sym_export_statement_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(392), + [anon_sym_export] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_import] = ACTIONS(398), + [anon_sym_let] = ACTIONS(392), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_await] = ACTIONS(400), + [anon_sym_get] = ACTIONS(392), + [anon_sym_set] = ACTIONS(392), + [anon_sym_async] = ACTIONS(402), + [anon_sym_static] = ACTIONS(392), + [anon_sym_yield] = ACTIONS(404), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(408), + [anon_sym_function] = ACTIONS(410), + [anon_sym_new] = ACTIONS(412), + [anon_sym_PLUS] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(414), + [anon_sym_SLASH] = ACTIONS(416), + [anon_sym_BANG] = ACTIONS(418), + [anon_sym_TILDE] = ACTIONS(418), + [anon_sym_typeof] = ACTIONS(414), + [anon_sym_void] = ACTIONS(414), + [anon_sym_delete] = ACTIONS(414), + [anon_sym_PLUS_PLUS] = ACTIONS(420), + [anon_sym_DASH_DASH] = ACTIONS(420), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(422), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(424), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), + }, + [270] = { + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(519), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1637), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(340), + [anon_sym_set] = ACTIONS(340), + [anon_sym_async] = ACTIONS(354), + [anon_sym_static] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(390), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), + }, + [271] = { + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(522), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1637), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(340), + [anon_sym_set] = ACTIONS(340), + [anon_sym_async] = ACTIONS(354), + [anon_sym_static] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(390), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), + }, + [272] = { + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(523), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1637), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(340), + [anon_sym_set] = ACTIONS(340), + [anon_sym_async] = ACTIONS(354), + [anon_sym_static] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(390), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), + }, + [273] = { + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(668), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1190), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(795), + [anon_sym_export] = ACTIONS(795), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(795), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(795), + [anon_sym_set] = ACTIONS(795), + [anon_sym_async] = ACTIONS(797), + [anon_sym_static] = ACTIONS(795), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(799), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), + }, + [274] = { + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(524), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1637), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(340), + [anon_sym_set] = ACTIONS(340), + [anon_sym_async] = ACTIONS(354), + [anon_sym_static] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(390), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), + }, + [275] = { + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(526), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1637), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(340), + [anon_sym_set] = ACTIONS(340), + [anon_sym_async] = ACTIONS(354), + [anon_sym_static] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(390), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), + }, + [276] = { + [sym_import] = STATE(1187), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(529), + [sym_primary_expression] = STATE(456), + [sym_yield_expression] = STATE(479), + [sym_object] = STATE(476), + [sym_object_pattern] = STATE(1010), + [sym_array] = STATE(476), + [sym_array_pattern] = STATE(1010), + [sym_jsx_element] = STATE(479), + [sym_jsx_opening_element] = STATE(963), + [sym_jsx_self_closing_element] = STATE(479), + [sym_class] = STATE(476), + [sym_function_expression] = STATE(476), + [sym_generator_function] = STATE(476), + [sym_arrow_function] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_new_expression] = STATE(454), + [sym_await_expression] = STATE(479), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(479), + [sym_augmented_assignment_lhs] = STATE(946), + [sym_augmented_assignment_expression] = STATE(479), + [sym_destructuring_pattern] = STATE(1637), + [sym_ternary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_string] = STATE(476), + [sym_template_string] = STATE(476), + [sym_regex] = STATE(476), + [sym_meta_property] = STATE(476), + [sym_decorator] = STATE(933), + [sym_formal_parameters] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_import] = ACTIONS(348), + [anon_sym_let] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_await] = ACTIONS(352), + [anon_sym_get] = ACTIONS(340), + [anon_sym_set] = ACTIONS(340), + [anon_sym_async] = ACTIONS(354), + [anon_sym_static] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_class] = ACTIONS(368), + [anon_sym_function] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_typeof] = ACTIONS(374), + [anon_sym_void] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(382), + [sym_number] = ACTIONS(384), + [sym_private_property_identifier] = ACTIONS(386), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_null] = ACTIONS(388), + [sym_undefined] = ACTIONS(390), + [anon_sym_AT] = ACTIONS(91), + [sym_html_comment] = ACTIONS(5), + }, + [277] = { + [sym_string] = STATE(1424), + [sym_formal_parameters] = STATE(1633), + [sym_property_name] = STATE(1522), + [sym_computed_property_name] = STATE(1424), + [aux_sym_object_repeat1] = STATE(1239), + [aux_sym_object_pattern_repeat1] = STATE(1241), + [sym_identifier] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(739), + [anon_sym_COMMA] = ACTIONS(739), + [anon_sym_RBRACE] = ACTIONS(745), + [anon_sym_let] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(806), + [anon_sym_get] = ACTIONS(810), + [anon_sym_set] = ACTIONS(810), + [anon_sym_async] = ACTIONS(801), + [anon_sym_static] = ACTIONS(801), + [anon_sym_in] = ACTIONS(756), + [anon_sym_COLON] = ACTIONS(758), + [anon_sym_EQ] = ACTIONS(761), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_GT] = ACTIONS(756), + [anon_sym_LT] = ACTIONS(756), + [anon_sym_DOT] = ACTIONS(756), + [anon_sym_DQUOTE] = ACTIONS(815), + [anon_sym_SQUOTE] = ACTIONS(817), + [anon_sym_function] = ACTIONS(819), + [anon_sym_EQ_GT] = ACTIONS(767), + [sym_optional_chain] = ACTIONS(739), + [anon_sym_PLUS_EQ] = ACTIONS(769), + [anon_sym_DASH_EQ] = ACTIONS(769), + [anon_sym_STAR_EQ] = ACTIONS(769), + [anon_sym_SLASH_EQ] = ACTIONS(769), + [anon_sym_PERCENT_EQ] = ACTIONS(769), + [anon_sym_CARET_EQ] = ACTIONS(769), + [anon_sym_AMP_EQ] = ACTIONS(769), + [anon_sym_PIPE_EQ] = ACTIONS(769), + [anon_sym_GT_GT_EQ] = ACTIONS(769), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(769), + [anon_sym_LT_LT_EQ] = ACTIONS(769), + [anon_sym_STAR_STAR_EQ] = ACTIONS(769), + [anon_sym_AMP_AMP_EQ] = ACTIONS(769), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(769), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(769), + [anon_sym_AMP_AMP] = ACTIONS(756), + [anon_sym_PIPE_PIPE] = ACTIONS(756), + [anon_sym_GT_GT] = ACTIONS(756), + [anon_sym_GT_GT_GT] = ACTIONS(756), + [anon_sym_LT_LT] = ACTIONS(756), + [anon_sym_AMP] = ACTIONS(756), + [anon_sym_CARET] = ACTIONS(756), + [anon_sym_PIPE] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(756), + [anon_sym_PERCENT] = ACTIONS(756), + [anon_sym_STAR_STAR] = ACTIONS(756), + [anon_sym_LT_EQ] = ACTIONS(739), + [anon_sym_EQ_EQ] = ACTIONS(756), + [anon_sym_EQ_EQ_EQ] = ACTIONS(739), + [anon_sym_BANG_EQ] = ACTIONS(756), + [anon_sym_BANG_EQ_EQ] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(739), + [anon_sym_QMARK_QMARK] = ACTIONS(756), + [anon_sym_instanceof] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(739), + [sym_number] = ACTIONS(821), + [sym_private_property_identifier] = ACTIONS(821), + [sym_automatic_semicolon] = ACTIONS(739), + [sym_ternary_qmark] = ACTIONS(739), + [sym_html_comment] = ACTIONS(5), + }, + [278] = { + [sym_string] = STATE(1424), + [sym_formal_parameters] = STATE(1633), + [sym_property_name] = STATE(1522), + [sym_computed_property_name] = STATE(1424), + [aux_sym_object_repeat1] = STATE(1275), + [aux_sym_object_pattern_repeat1] = STATE(1241), + [sym_identifier] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(739), + [anon_sym_COMMA] = ACTIONS(739), + [anon_sym_RBRACE] = ACTIONS(775), + [anon_sym_let] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(806), + [anon_sym_get] = ACTIONS(810), + [anon_sym_set] = ACTIONS(810), + [anon_sym_async] = ACTIONS(801), + [anon_sym_static] = ACTIONS(801), + [anon_sym_in] = ACTIONS(756), + [anon_sym_COLON] = ACTIONS(758), + [anon_sym_EQ] = ACTIONS(761), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_GT] = ACTIONS(756), + [anon_sym_LT] = ACTIONS(756), + [anon_sym_DOT] = ACTIONS(756), + [anon_sym_DQUOTE] = ACTIONS(815), + [anon_sym_SQUOTE] = ACTIONS(817), + [anon_sym_function] = ACTIONS(819), + [anon_sym_EQ_GT] = ACTIONS(767), + [sym_optional_chain] = ACTIONS(739), + [anon_sym_PLUS_EQ] = ACTIONS(769), + [anon_sym_DASH_EQ] = ACTIONS(769), + [anon_sym_STAR_EQ] = ACTIONS(769), + [anon_sym_SLASH_EQ] = ACTIONS(769), + [anon_sym_PERCENT_EQ] = ACTIONS(769), + [anon_sym_CARET_EQ] = ACTIONS(769), + [anon_sym_AMP_EQ] = ACTIONS(769), + [anon_sym_PIPE_EQ] = ACTIONS(769), + [anon_sym_GT_GT_EQ] = ACTIONS(769), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(769), + [anon_sym_LT_LT_EQ] = ACTIONS(769), + [anon_sym_STAR_STAR_EQ] = ACTIONS(769), + [anon_sym_AMP_AMP_EQ] = ACTIONS(769), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(769), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(769), + [anon_sym_AMP_AMP] = ACTIONS(756), + [anon_sym_PIPE_PIPE] = ACTIONS(756), + [anon_sym_GT_GT] = ACTIONS(756), + [anon_sym_GT_GT_GT] = ACTIONS(756), + [anon_sym_LT_LT] = ACTIONS(756), + [anon_sym_AMP] = ACTIONS(756), + [anon_sym_CARET] = ACTIONS(756), + [anon_sym_PIPE] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(756), + [anon_sym_PERCENT] = ACTIONS(756), + [anon_sym_STAR_STAR] = ACTIONS(756), + [anon_sym_LT_EQ] = ACTIONS(739), + [anon_sym_EQ_EQ] = ACTIONS(756), + [anon_sym_EQ_EQ_EQ] = ACTIONS(739), + [anon_sym_BANG_EQ] = ACTIONS(756), + [anon_sym_BANG_EQ_EQ] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(739), + [anon_sym_QMARK_QMARK] = ACTIONS(756), + [anon_sym_instanceof] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(739), + [sym_number] = ACTIONS(821), + [sym_private_property_identifier] = ACTIONS(821), + [sym_automatic_semicolon] = ACTIONS(739), + [sym_ternary_qmark] = ACTIONS(739), + [sym_html_comment] = ACTIONS(5), + }, + [279] = { + [sym_namespace_export] = STATE(1481), + [sym_export_clause] = STATE(1171), + [sym_declaration] = STATE(380), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_class_declaration] = STATE(346), + [sym_function_declaration] = STATE(346), + [sym_generator_function_declaration] = STATE(346), + [sym_decorator] = STATE(933), + [aux_sym_export_statement_repeat1] = STATE(1172), + [anon_sym_STAR] = ACTIONS(737), + [anon_sym_SEMI] = ACTIONS(739), + [anon_sym_default] = ACTIONS(823), + [anon_sym_LBRACE] = ACTIONS(743), + [anon_sym_COMMA] = ACTIONS(739), + [anon_sym_var] = ACTIONS(747), + [anon_sym_let] = ACTIONS(749), + [anon_sym_const] = ACTIONS(749), + [anon_sym_LPAREN] = ACTIONS(739), + [anon_sym_async] = ACTIONS(754), + [anon_sym_in] = ACTIONS(756), + [anon_sym_COLON] = ACTIONS(825), + [anon_sym_EQ] = ACTIONS(827), + [anon_sym_LBRACK] = ACTIONS(739), + [anon_sym_GT] = ACTIONS(756), + [anon_sym_LT] = ACTIONS(756), + [anon_sym_DOT] = ACTIONS(739), + [anon_sym_class] = ACTIONS(763), + [anon_sym_function] = ACTIONS(765), + [anon_sym_EQ_GT] = ACTIONS(767), + [sym_optional_chain] = ACTIONS(739), + [anon_sym_PLUS_EQ] = ACTIONS(769), + [anon_sym_DASH_EQ] = ACTIONS(769), + [anon_sym_STAR_EQ] = ACTIONS(769), + [anon_sym_SLASH_EQ] = ACTIONS(769), + [anon_sym_PERCENT_EQ] = ACTIONS(769), + [anon_sym_CARET_EQ] = ACTIONS(769), + [anon_sym_AMP_EQ] = ACTIONS(769), + [anon_sym_PIPE_EQ] = ACTIONS(769), + [anon_sym_GT_GT_EQ] = ACTIONS(769), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(769), + [anon_sym_LT_LT_EQ] = ACTIONS(769), + [anon_sym_STAR_STAR_EQ] = ACTIONS(769), + [anon_sym_AMP_AMP_EQ] = ACTIONS(769), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(769), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(769), + [anon_sym_AMP_AMP] = ACTIONS(756), + [anon_sym_PIPE_PIPE] = ACTIONS(756), + [anon_sym_GT_GT] = ACTIONS(756), + [anon_sym_GT_GT_GT] = ACTIONS(756), + [anon_sym_LT_LT] = ACTIONS(756), + [anon_sym_AMP] = ACTIONS(756), + [anon_sym_CARET] = ACTIONS(756), + [anon_sym_PIPE] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(756), + [anon_sym_PERCENT] = ACTIONS(756), + [anon_sym_STAR_STAR] = ACTIONS(756), + [anon_sym_LT_EQ] = ACTIONS(739), + [anon_sym_EQ_EQ] = ACTIONS(756), + [anon_sym_EQ_EQ_EQ] = ACTIONS(739), + [anon_sym_BANG_EQ] = ACTIONS(756), + [anon_sym_BANG_EQ_EQ] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(739), + [anon_sym_QMARK_QMARK] = ACTIONS(756), + [anon_sym_instanceof] = ACTIONS(739), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(739), + [anon_sym_AT] = ACTIONS(91), + [sym_automatic_semicolon] = ACTIONS(739), + [sym_ternary_qmark] = ACTIONS(739), + [sym_html_comment] = ACTIONS(5), + }, + [280] = { + [sym_namespace_export] = STATE(1481), + [sym_export_clause] = STATE(1171), + [sym_declaration] = STATE(380), + [sym_variable_declaration] = STATE(346), + [sym_lexical_declaration] = STATE(346), + [sym_class_declaration] = STATE(346), + [sym_function_declaration] = STATE(346), + [sym_generator_function_declaration] = STATE(346), + [sym_decorator] = STATE(933), + [aux_sym_export_statement_repeat1] = STATE(1172), + [anon_sym_STAR] = ACTIONS(737), + [anon_sym_SEMI] = ACTIONS(739), + [anon_sym_default] = ACTIONS(741), + [anon_sym_LBRACE] = ACTIONS(743), + [anon_sym_COMMA] = ACTIONS(739), + [anon_sym_var] = ACTIONS(747), + [anon_sym_let] = ACTIONS(749), + [anon_sym_const] = ACTIONS(749), + [anon_sym_LPAREN] = ACTIONS(739), + [anon_sym_async] = ACTIONS(754), + [anon_sym_in] = ACTIONS(756), + [anon_sym_COLON] = ACTIONS(829), + [anon_sym_EQ] = ACTIONS(827), + [anon_sym_LBRACK] = ACTIONS(739), + [anon_sym_GT] = ACTIONS(756), + [anon_sym_LT] = ACTIONS(756), + [anon_sym_DOT] = ACTIONS(739), + [anon_sym_class] = ACTIONS(763), + [anon_sym_function] = ACTIONS(765), + [anon_sym_EQ_GT] = ACTIONS(767), + [sym_optional_chain] = ACTIONS(739), + [anon_sym_PLUS_EQ] = ACTIONS(769), + [anon_sym_DASH_EQ] = ACTIONS(769), + [anon_sym_STAR_EQ] = ACTIONS(769), + [anon_sym_SLASH_EQ] = ACTIONS(769), + [anon_sym_PERCENT_EQ] = ACTIONS(769), + [anon_sym_CARET_EQ] = ACTIONS(769), + [anon_sym_AMP_EQ] = ACTIONS(769), + [anon_sym_PIPE_EQ] = ACTIONS(769), + [anon_sym_GT_GT_EQ] = ACTIONS(769), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(769), + [anon_sym_LT_LT_EQ] = ACTIONS(769), + [anon_sym_STAR_STAR_EQ] = ACTIONS(769), + [anon_sym_AMP_AMP_EQ] = ACTIONS(769), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(769), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(769), + [anon_sym_AMP_AMP] = ACTIONS(756), + [anon_sym_PIPE_PIPE] = ACTIONS(756), + [anon_sym_GT_GT] = ACTIONS(756), + [anon_sym_GT_GT_GT] = ACTIONS(756), + [anon_sym_LT_LT] = ACTIONS(756), + [anon_sym_AMP] = ACTIONS(756), + [anon_sym_CARET] = ACTIONS(756), + [anon_sym_PIPE] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(756), + [anon_sym_PERCENT] = ACTIONS(756), + [anon_sym_STAR_STAR] = ACTIONS(756), + [anon_sym_LT_EQ] = ACTIONS(739), + [anon_sym_EQ_EQ] = ACTIONS(756), + [anon_sym_EQ_EQ_EQ] = ACTIONS(739), + [anon_sym_BANG_EQ] = ACTIONS(756), + [anon_sym_BANG_EQ_EQ] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(739), + [anon_sym_QMARK_QMARK] = ACTIONS(756), + [anon_sym_instanceof] = ACTIONS(739), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(739), + [anon_sym_AT] = ACTIONS(91), + [sym_automatic_semicolon] = ACTIONS(739), + [sym_ternary_qmark] = ACTIONS(739), + [sym_html_comment] = ACTIONS(5), + }, + [281] = { + [sym_string] = STATE(1424), + [sym_formal_parameters] = STATE(1633), + [sym_property_name] = STATE(1522), + [sym_computed_property_name] = STATE(1424), + [aux_sym_object_repeat1] = STATE(1275), + [aux_sym_object_pattern_repeat1] = STATE(1241), + [sym_identifier] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(739), + [anon_sym_COMMA] = ACTIONS(739), + [anon_sym_RBRACE] = ACTIONS(777), + [anon_sym_let] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(806), + [anon_sym_get] = ACTIONS(810), + [anon_sym_set] = ACTIONS(810), + [anon_sym_async] = ACTIONS(801), + [anon_sym_static] = ACTIONS(801), + [anon_sym_in] = ACTIONS(756), + [anon_sym_COLON] = ACTIONS(758), + [anon_sym_EQ] = ACTIONS(761), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_GT] = ACTIONS(756), + [anon_sym_LT] = ACTIONS(756), + [anon_sym_DOT] = ACTIONS(756), + [anon_sym_DQUOTE] = ACTIONS(815), + [anon_sym_SQUOTE] = ACTIONS(817), + [anon_sym_function] = ACTIONS(819), + [anon_sym_EQ_GT] = ACTIONS(767), + [sym_optional_chain] = ACTIONS(739), + [anon_sym_PLUS_EQ] = ACTIONS(769), + [anon_sym_DASH_EQ] = ACTIONS(769), + [anon_sym_STAR_EQ] = ACTIONS(769), + [anon_sym_SLASH_EQ] = ACTIONS(769), + [anon_sym_PERCENT_EQ] = ACTIONS(769), + [anon_sym_CARET_EQ] = ACTIONS(769), + [anon_sym_AMP_EQ] = ACTIONS(769), + [anon_sym_PIPE_EQ] = ACTIONS(769), + [anon_sym_GT_GT_EQ] = ACTIONS(769), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(769), + [anon_sym_LT_LT_EQ] = ACTIONS(769), + [anon_sym_STAR_STAR_EQ] = ACTIONS(769), + [anon_sym_AMP_AMP_EQ] = ACTIONS(769), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(769), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(769), + [anon_sym_AMP_AMP] = ACTIONS(756), + [anon_sym_PIPE_PIPE] = ACTIONS(756), + [anon_sym_GT_GT] = ACTIONS(756), + [anon_sym_GT_GT_GT] = ACTIONS(756), + [anon_sym_LT_LT] = ACTIONS(756), + [anon_sym_AMP] = ACTIONS(756), + [anon_sym_CARET] = ACTIONS(756), + [anon_sym_PIPE] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(756), + [anon_sym_PERCENT] = ACTIONS(756), + [anon_sym_STAR_STAR] = ACTIONS(756), + [anon_sym_LT_EQ] = ACTIONS(739), + [anon_sym_EQ_EQ] = ACTIONS(756), + [anon_sym_EQ_EQ_EQ] = ACTIONS(739), + [anon_sym_BANG_EQ] = ACTIONS(756), + [anon_sym_BANG_EQ_EQ] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(739), + [anon_sym_QMARK_QMARK] = ACTIONS(756), + [anon_sym_instanceof] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(739), + [sym_number] = ACTIONS(821), + [sym_private_property_identifier] = ACTIONS(821), + [sym_automatic_semicolon] = ACTIONS(739), + [sym_ternary_qmark] = ACTIONS(739), + [sym_html_comment] = ACTIONS(5), + }, + [282] = { + [sym_string] = STATE(1424), + [sym_property_name] = STATE(1522), + [sym_computed_property_name] = STATE(1424), + [aux_sym_object_repeat1] = STATE(1239), + [aux_sym_object_pattern_repeat1] = STATE(1241), + [sym_identifier] = ACTIONS(831), + [anon_sym_export] = ACTIONS(831), + [anon_sym_STAR] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(739), + [anon_sym_COMMA] = ACTIONS(739), + [anon_sym_RBRACE] = ACTIONS(745), + [anon_sym_let] = ACTIONS(831), + [anon_sym_LPAREN] = ACTIONS(751), + [anon_sym_get] = ACTIONS(833), + [anon_sym_set] = ACTIONS(833), + [anon_sym_async] = ACTIONS(835), + [anon_sym_static] = ACTIONS(831), + [anon_sym_in] = ACTIONS(756), + [anon_sym_COLON] = ACTIONS(758), + [anon_sym_EQ] = ACTIONS(761), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_GT] = ACTIONS(756), + [anon_sym_LT] = ACTIONS(756), + [anon_sym_DOT] = ACTIONS(756), + [anon_sym_DQUOTE] = ACTIONS(815), + [anon_sym_SQUOTE] = ACTIONS(817), + [anon_sym_EQ_GT] = ACTIONS(767), + [sym_optional_chain] = ACTIONS(739), + [anon_sym_PLUS_EQ] = ACTIONS(769), + [anon_sym_DASH_EQ] = ACTIONS(769), + [anon_sym_STAR_EQ] = ACTIONS(769), + [anon_sym_SLASH_EQ] = ACTIONS(769), + [anon_sym_PERCENT_EQ] = ACTIONS(769), + [anon_sym_CARET_EQ] = ACTIONS(769), + [anon_sym_AMP_EQ] = ACTIONS(769), + [anon_sym_PIPE_EQ] = ACTIONS(769), + [anon_sym_GT_GT_EQ] = ACTIONS(769), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(769), + [anon_sym_LT_LT_EQ] = ACTIONS(769), + [anon_sym_STAR_STAR_EQ] = ACTIONS(769), + [anon_sym_AMP_AMP_EQ] = ACTIONS(769), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(769), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(769), + [anon_sym_AMP_AMP] = ACTIONS(756), + [anon_sym_PIPE_PIPE] = ACTIONS(756), + [anon_sym_GT_GT] = ACTIONS(756), + [anon_sym_GT_GT_GT] = ACTIONS(756), + [anon_sym_LT_LT] = ACTIONS(756), + [anon_sym_AMP] = ACTIONS(756), + [anon_sym_CARET] = ACTIONS(756), + [anon_sym_PIPE] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(756), + [anon_sym_PERCENT] = ACTIONS(756), + [anon_sym_STAR_STAR] = ACTIONS(756), + [anon_sym_LT_EQ] = ACTIONS(739), + [anon_sym_EQ_EQ] = ACTIONS(756), + [anon_sym_EQ_EQ_EQ] = ACTIONS(739), + [anon_sym_BANG_EQ] = ACTIONS(756), + [anon_sym_BANG_EQ_EQ] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(739), + [anon_sym_QMARK_QMARK] = ACTIONS(756), + [anon_sym_instanceof] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(739), + [sym_number] = ACTIONS(821), + [sym_private_property_identifier] = ACTIONS(821), + [sym_automatic_semicolon] = ACTIONS(739), + [sym_ternary_qmark] = ACTIONS(739), + [sym_html_comment] = ACTIONS(5), + }, + [283] = { + [sym_string] = STATE(1424), + [sym_property_name] = STATE(1522), + [sym_computed_property_name] = STATE(1424), + [aux_sym_object_repeat1] = STATE(1239), + [aux_sym_object_pattern_repeat1] = STATE(1241), + [sym_identifier] = ACTIONS(831), + [anon_sym_export] = ACTIONS(831), + [anon_sym_STAR] = ACTIONS(756), + [anon_sym_SEMI] = ACTIONS(739), + [anon_sym_COMMA] = ACTIONS(739), + [anon_sym_RBRACE] = ACTIONS(745), + [anon_sym_let] = ACTIONS(831), + [anon_sym_LPAREN] = ACTIONS(751), + [anon_sym_get] = ACTIONS(831), + [anon_sym_set] = ACTIONS(831), + [anon_sym_async] = ACTIONS(831), + [anon_sym_static] = ACTIONS(831), + [anon_sym_in] = ACTIONS(756), + [anon_sym_COLON] = ACTIONS(758), + [anon_sym_EQ] = ACTIONS(761), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_GT] = ACTIONS(756), + [anon_sym_LT] = ACTIONS(756), + [anon_sym_DOT] = ACTIONS(756), + [anon_sym_DQUOTE] = ACTIONS(815), + [anon_sym_SQUOTE] = ACTIONS(817), + [anon_sym_EQ_GT] = ACTIONS(767), + [sym_optional_chain] = ACTIONS(739), + [anon_sym_PLUS_EQ] = ACTIONS(769), + [anon_sym_DASH_EQ] = ACTIONS(769), + [anon_sym_STAR_EQ] = ACTIONS(769), + [anon_sym_SLASH_EQ] = ACTIONS(769), + [anon_sym_PERCENT_EQ] = ACTIONS(769), + [anon_sym_CARET_EQ] = ACTIONS(769), + [anon_sym_AMP_EQ] = ACTIONS(769), + [anon_sym_PIPE_EQ] = ACTIONS(769), + [anon_sym_GT_GT_EQ] = ACTIONS(769), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(769), + [anon_sym_LT_LT_EQ] = ACTIONS(769), + [anon_sym_STAR_STAR_EQ] = ACTIONS(769), + [anon_sym_AMP_AMP_EQ] = ACTIONS(769), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(769), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(769), + [anon_sym_AMP_AMP] = ACTIONS(756), + [anon_sym_PIPE_PIPE] = ACTIONS(756), + [anon_sym_GT_GT] = ACTIONS(756), + [anon_sym_GT_GT_GT] = ACTIONS(756), + [anon_sym_LT_LT] = ACTIONS(756), + [anon_sym_AMP] = ACTIONS(756), + [anon_sym_CARET] = ACTIONS(756), + [anon_sym_PIPE] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(756), + [anon_sym_PERCENT] = ACTIONS(756), + [anon_sym_STAR_STAR] = ACTIONS(756), + [anon_sym_LT_EQ] = ACTIONS(739), + [anon_sym_EQ_EQ] = ACTIONS(756), + [anon_sym_EQ_EQ_EQ] = ACTIONS(739), + [anon_sym_BANG_EQ] = ACTIONS(756), + [anon_sym_BANG_EQ_EQ] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(739), + [anon_sym_QMARK_QMARK] = ACTIONS(756), + [anon_sym_instanceof] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(739), + [sym_number] = ACTIONS(821), + [sym_private_property_identifier] = ACTIONS(821), + [sym_automatic_semicolon] = ACTIONS(739), + [sym_ternary_qmark] = ACTIONS(739), + [sym_html_comment] = ACTIONS(5), + }, + [284] = { + [sym_string] = STATE(1424), + [sym_property_name] = STATE(1522), + [sym_computed_property_name] = STATE(1424), + [aux_sym_object_repeat1] = STATE(1275), + [aux_sym_object_pattern_repeat1] = STATE(1241), + [sym_identifier] = ACTIONS(831), + [anon_sym_export] = ACTIONS(831), + [anon_sym_STAR] = ACTIONS(756), + [anon_sym_SEMI] = ACTIONS(739), + [anon_sym_COMMA] = ACTIONS(739), + [anon_sym_RBRACE] = ACTIONS(775), + [anon_sym_let] = ACTIONS(831), + [anon_sym_LPAREN] = ACTIONS(751), + [anon_sym_get] = ACTIONS(831), + [anon_sym_set] = ACTIONS(831), + [anon_sym_async] = ACTIONS(831), + [anon_sym_static] = ACTIONS(831), + [anon_sym_in] = ACTIONS(756), + [anon_sym_COLON] = ACTIONS(758), + [anon_sym_EQ] = ACTIONS(761), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_GT] = ACTIONS(756), + [anon_sym_LT] = ACTIONS(756), + [anon_sym_DOT] = ACTIONS(756), + [anon_sym_DQUOTE] = ACTIONS(815), + [anon_sym_SQUOTE] = ACTIONS(817), + [anon_sym_EQ_GT] = ACTIONS(767), + [sym_optional_chain] = ACTIONS(739), + [anon_sym_PLUS_EQ] = ACTIONS(769), + [anon_sym_DASH_EQ] = ACTIONS(769), + [anon_sym_STAR_EQ] = ACTIONS(769), + [anon_sym_SLASH_EQ] = ACTIONS(769), + [anon_sym_PERCENT_EQ] = ACTIONS(769), + [anon_sym_CARET_EQ] = ACTIONS(769), + [anon_sym_AMP_EQ] = ACTIONS(769), + [anon_sym_PIPE_EQ] = ACTIONS(769), + [anon_sym_GT_GT_EQ] = ACTIONS(769), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(769), + [anon_sym_LT_LT_EQ] = ACTIONS(769), + [anon_sym_STAR_STAR_EQ] = ACTIONS(769), + [anon_sym_AMP_AMP_EQ] = ACTIONS(769), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(769), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(769), + [anon_sym_AMP_AMP] = ACTIONS(756), + [anon_sym_PIPE_PIPE] = ACTIONS(756), + [anon_sym_GT_GT] = ACTIONS(756), + [anon_sym_GT_GT_GT] = ACTIONS(756), + [anon_sym_LT_LT] = ACTIONS(756), + [anon_sym_AMP] = ACTIONS(756), + [anon_sym_CARET] = ACTIONS(756), + [anon_sym_PIPE] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(756), + [anon_sym_PERCENT] = ACTIONS(756), + [anon_sym_STAR_STAR] = ACTIONS(756), + [anon_sym_LT_EQ] = ACTIONS(739), + [anon_sym_EQ_EQ] = ACTIONS(756), + [anon_sym_EQ_EQ_EQ] = ACTIONS(739), + [anon_sym_BANG_EQ] = ACTIONS(756), + [anon_sym_BANG_EQ_EQ] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(739), + [anon_sym_QMARK_QMARK] = ACTIONS(756), + [anon_sym_instanceof] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(739), + [sym_number] = ACTIONS(821), + [sym_private_property_identifier] = ACTIONS(821), + [sym_automatic_semicolon] = ACTIONS(739), + [sym_ternary_qmark] = ACTIONS(739), + [sym_html_comment] = ACTIONS(5), + }, + [285] = { + [sym_string] = STATE(1424), + [sym_property_name] = STATE(1522), + [sym_computed_property_name] = STATE(1424), + [aux_sym_object_repeat1] = STATE(1275), + [aux_sym_object_pattern_repeat1] = STATE(1241), + [sym_identifier] = ACTIONS(831), + [anon_sym_export] = ACTIONS(831), + [anon_sym_STAR] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(739), + [anon_sym_COMMA] = ACTIONS(739), + [anon_sym_RBRACE] = ACTIONS(775), + [anon_sym_let] = ACTIONS(831), + [anon_sym_LPAREN] = ACTIONS(751), + [anon_sym_get] = ACTIONS(833), + [anon_sym_set] = ACTIONS(833), + [anon_sym_async] = ACTIONS(835), + [anon_sym_static] = ACTIONS(831), + [anon_sym_in] = ACTIONS(756), + [anon_sym_COLON] = ACTIONS(758), + [anon_sym_EQ] = ACTIONS(761), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_GT] = ACTIONS(756), + [anon_sym_LT] = ACTIONS(756), + [anon_sym_DOT] = ACTIONS(756), + [anon_sym_DQUOTE] = ACTIONS(815), + [anon_sym_SQUOTE] = ACTIONS(817), + [anon_sym_EQ_GT] = ACTIONS(767), + [sym_optional_chain] = ACTIONS(739), + [anon_sym_PLUS_EQ] = ACTIONS(769), + [anon_sym_DASH_EQ] = ACTIONS(769), + [anon_sym_STAR_EQ] = ACTIONS(769), + [anon_sym_SLASH_EQ] = ACTIONS(769), + [anon_sym_PERCENT_EQ] = ACTIONS(769), + [anon_sym_CARET_EQ] = ACTIONS(769), + [anon_sym_AMP_EQ] = ACTIONS(769), + [anon_sym_PIPE_EQ] = ACTIONS(769), + [anon_sym_GT_GT_EQ] = ACTIONS(769), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(769), + [anon_sym_LT_LT_EQ] = ACTIONS(769), + [anon_sym_STAR_STAR_EQ] = ACTIONS(769), + [anon_sym_AMP_AMP_EQ] = ACTIONS(769), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(769), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(769), + [anon_sym_AMP_AMP] = ACTIONS(756), + [anon_sym_PIPE_PIPE] = ACTIONS(756), + [anon_sym_GT_GT] = ACTIONS(756), + [anon_sym_GT_GT_GT] = ACTIONS(756), + [anon_sym_LT_LT] = ACTIONS(756), + [anon_sym_AMP] = ACTIONS(756), + [anon_sym_CARET] = ACTIONS(756), + [anon_sym_PIPE] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(756), + [anon_sym_PERCENT] = ACTIONS(756), + [anon_sym_STAR_STAR] = ACTIONS(756), + [anon_sym_LT_EQ] = ACTIONS(739), + [anon_sym_EQ_EQ] = ACTIONS(756), + [anon_sym_EQ_EQ_EQ] = ACTIONS(739), + [anon_sym_BANG_EQ] = ACTIONS(756), + [anon_sym_BANG_EQ_EQ] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(739), + [anon_sym_QMARK_QMARK] = ACTIONS(756), + [anon_sym_instanceof] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(739), + [sym_number] = ACTIONS(821), + [sym_private_property_identifier] = ACTIONS(821), + [sym_automatic_semicolon] = ACTIONS(739), + [sym_ternary_qmark] = ACTIONS(739), + [sym_html_comment] = ACTIONS(5), + }, + [286] = { + [sym_string] = STATE(1424), + [sym_property_name] = STATE(1522), + [sym_computed_property_name] = STATE(1424), + [aux_sym_object_repeat1] = STATE(1275), + [aux_sym_object_pattern_repeat1] = STATE(1241), + [sym_identifier] = ACTIONS(831), + [anon_sym_export] = ACTIONS(831), + [anon_sym_STAR] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(739), + [anon_sym_COMMA] = ACTIONS(739), + [anon_sym_RBRACE] = ACTIONS(777), + [anon_sym_let] = ACTIONS(831), + [anon_sym_LPAREN] = ACTIONS(751), + [anon_sym_get] = ACTIONS(833), + [anon_sym_set] = ACTIONS(833), + [anon_sym_async] = ACTIONS(835), + [anon_sym_static] = ACTIONS(831), + [anon_sym_in] = ACTIONS(756), + [anon_sym_COLON] = ACTIONS(758), + [anon_sym_EQ] = ACTIONS(761), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_GT] = ACTIONS(756), + [anon_sym_LT] = ACTIONS(756), + [anon_sym_DOT] = ACTIONS(756), + [anon_sym_DQUOTE] = ACTIONS(815), + [anon_sym_SQUOTE] = ACTIONS(817), + [anon_sym_EQ_GT] = ACTIONS(767), + [sym_optional_chain] = ACTIONS(739), + [anon_sym_PLUS_EQ] = ACTIONS(769), + [anon_sym_DASH_EQ] = ACTIONS(769), + [anon_sym_STAR_EQ] = ACTIONS(769), + [anon_sym_SLASH_EQ] = ACTIONS(769), + [anon_sym_PERCENT_EQ] = ACTIONS(769), + [anon_sym_CARET_EQ] = ACTIONS(769), + [anon_sym_AMP_EQ] = ACTIONS(769), + [anon_sym_PIPE_EQ] = ACTIONS(769), + [anon_sym_GT_GT_EQ] = ACTIONS(769), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(769), + [anon_sym_LT_LT_EQ] = ACTIONS(769), + [anon_sym_STAR_STAR_EQ] = ACTIONS(769), + [anon_sym_AMP_AMP_EQ] = ACTIONS(769), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(769), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(769), + [anon_sym_AMP_AMP] = ACTIONS(756), + [anon_sym_PIPE_PIPE] = ACTIONS(756), + [anon_sym_GT_GT] = ACTIONS(756), + [anon_sym_GT_GT_GT] = ACTIONS(756), + [anon_sym_LT_LT] = ACTIONS(756), + [anon_sym_AMP] = ACTIONS(756), + [anon_sym_CARET] = ACTIONS(756), + [anon_sym_PIPE] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(756), + [anon_sym_PERCENT] = ACTIONS(756), + [anon_sym_STAR_STAR] = ACTIONS(756), + [anon_sym_LT_EQ] = ACTIONS(739), + [anon_sym_EQ_EQ] = ACTIONS(756), + [anon_sym_EQ_EQ_EQ] = ACTIONS(739), + [anon_sym_BANG_EQ] = ACTIONS(756), + [anon_sym_BANG_EQ_EQ] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(739), + [anon_sym_QMARK_QMARK] = ACTIONS(756), + [anon_sym_instanceof] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(739), + [sym_number] = ACTIONS(821), + [sym_private_property_identifier] = ACTIONS(821), + [sym_automatic_semicolon] = ACTIONS(739), + [sym_ternary_qmark] = ACTIONS(739), + [sym_html_comment] = ACTIONS(5), + }, + [287] = { + [sym_string] = STATE(1424), + [sym_property_name] = STATE(1522), + [sym_computed_property_name] = STATE(1424), + [aux_sym_object_repeat1] = STATE(1275), + [aux_sym_object_pattern_repeat1] = STATE(1241), + [sym_identifier] = ACTIONS(831), + [anon_sym_export] = ACTIONS(831), + [anon_sym_STAR] = ACTIONS(756), + [anon_sym_SEMI] = ACTIONS(739), + [anon_sym_COMMA] = ACTIONS(739), + [anon_sym_RBRACE] = ACTIONS(777), + [anon_sym_let] = ACTIONS(831), + [anon_sym_LPAREN] = ACTIONS(751), + [anon_sym_get] = ACTIONS(831), + [anon_sym_set] = ACTIONS(831), + [anon_sym_async] = ACTIONS(831), + [anon_sym_static] = ACTIONS(831), + [anon_sym_in] = ACTIONS(756), + [anon_sym_COLON] = ACTIONS(758), + [anon_sym_EQ] = ACTIONS(761), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_GT] = ACTIONS(756), + [anon_sym_LT] = ACTIONS(756), + [anon_sym_DOT] = ACTIONS(756), + [anon_sym_DQUOTE] = ACTIONS(815), + [anon_sym_SQUOTE] = ACTIONS(817), + [anon_sym_EQ_GT] = ACTIONS(767), + [sym_optional_chain] = ACTIONS(739), + [anon_sym_PLUS_EQ] = ACTIONS(769), + [anon_sym_DASH_EQ] = ACTIONS(769), + [anon_sym_STAR_EQ] = ACTIONS(769), + [anon_sym_SLASH_EQ] = ACTIONS(769), + [anon_sym_PERCENT_EQ] = ACTIONS(769), + [anon_sym_CARET_EQ] = ACTIONS(769), + [anon_sym_AMP_EQ] = ACTIONS(769), + [anon_sym_PIPE_EQ] = ACTIONS(769), + [anon_sym_GT_GT_EQ] = ACTIONS(769), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(769), + [anon_sym_LT_LT_EQ] = ACTIONS(769), + [anon_sym_STAR_STAR_EQ] = ACTIONS(769), + [anon_sym_AMP_AMP_EQ] = ACTIONS(769), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(769), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(769), + [anon_sym_AMP_AMP] = ACTIONS(756), + [anon_sym_PIPE_PIPE] = ACTIONS(756), + [anon_sym_GT_GT] = ACTIONS(756), + [anon_sym_GT_GT_GT] = ACTIONS(756), + [anon_sym_LT_LT] = ACTIONS(756), + [anon_sym_AMP] = ACTIONS(756), + [anon_sym_CARET] = ACTIONS(756), + [anon_sym_PIPE] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(756), + [anon_sym_PERCENT] = ACTIONS(756), + [anon_sym_STAR_STAR] = ACTIONS(756), + [anon_sym_LT_EQ] = ACTIONS(739), + [anon_sym_EQ_EQ] = ACTIONS(756), + [anon_sym_EQ_EQ_EQ] = ACTIONS(739), + [anon_sym_BANG_EQ] = ACTIONS(756), + [anon_sym_BANG_EQ_EQ] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(739), + [anon_sym_QMARK_QMARK] = ACTIONS(756), + [anon_sym_instanceof] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(739), + [sym_number] = ACTIONS(821), + [sym_private_property_identifier] = ACTIONS(821), + [sym_automatic_semicolon] = ACTIONS(739), + [sym_ternary_qmark] = ACTIONS(739), + [sym_html_comment] = ACTIONS(5), + }, + [288] = { + [sym_formal_parameters] = STATE(1585), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(837), + [anon_sym_STAR] = ACTIONS(756), + [anon_sym_SEMI] = ACTIONS(739), + [anon_sym_COMMA] = ACTIONS(739), + [anon_sym_RBRACE] = ACTIONS(739), + [anon_sym_let] = ACTIONS(837), + [anon_sym_LPAREN] = ACTIONS(839), + [anon_sym_RPAREN] = ACTIONS(739), + [anon_sym_get] = ACTIONS(837), + [anon_sym_set] = ACTIONS(837), + [anon_sym_async] = ACTIONS(837), + [anon_sym_static] = ACTIONS(837), + [anon_sym_in] = ACTIONS(756), + [anon_sym_COLON] = ACTIONS(739), + [anon_sym_EQ] = ACTIONS(842), + [anon_sym_LBRACK] = ACTIONS(739), + [anon_sym_RBRACK] = ACTIONS(739), + [anon_sym_GT] = ACTIONS(756), + [anon_sym_LT] = ACTIONS(756), + [anon_sym_DOT] = ACTIONS(739), + [anon_sym_function] = ACTIONS(844), + [anon_sym_EQ_GT] = ACTIONS(846), + [sym_optional_chain] = ACTIONS(739), + [anon_sym_PLUS_EQ] = ACTIONS(769), + [anon_sym_DASH_EQ] = ACTIONS(769), + [anon_sym_STAR_EQ] = ACTIONS(769), + [anon_sym_SLASH_EQ] = ACTIONS(769), + [anon_sym_PERCENT_EQ] = ACTIONS(769), + [anon_sym_CARET_EQ] = ACTIONS(769), + [anon_sym_AMP_EQ] = ACTIONS(769), + [anon_sym_PIPE_EQ] = ACTIONS(769), + [anon_sym_GT_GT_EQ] = ACTIONS(769), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(769), + [anon_sym_LT_LT_EQ] = ACTIONS(769), + [anon_sym_STAR_STAR_EQ] = ACTIONS(769), + [anon_sym_AMP_AMP_EQ] = ACTIONS(769), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(769), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(769), + [anon_sym_AMP_AMP] = ACTIONS(756), + [anon_sym_PIPE_PIPE] = ACTIONS(756), + [anon_sym_GT_GT] = ACTIONS(756), + [anon_sym_GT_GT_GT] = ACTIONS(756), + [anon_sym_LT_LT] = ACTIONS(756), + [anon_sym_AMP] = ACTIONS(756), + [anon_sym_CARET] = ACTIONS(756), + [anon_sym_PIPE] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(756), + [anon_sym_PERCENT] = ACTIONS(756), + [anon_sym_STAR_STAR] = ACTIONS(756), + [anon_sym_LT_EQ] = ACTIONS(739), + [anon_sym_EQ_EQ] = ACTIONS(756), + [anon_sym_EQ_EQ_EQ] = ACTIONS(739), + [anon_sym_BANG_EQ] = ACTIONS(756), + [anon_sym_BANG_EQ_EQ] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(739), + [anon_sym_QMARK_QMARK] = ACTIONS(756), + [anon_sym_instanceof] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(739), + [sym_ternary_qmark] = ACTIONS(739), + [sym_html_comment] = ACTIONS(5), + }, + [289] = { + [sym_formal_parameters] = STATE(1585), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(837), + [anon_sym_STAR] = ACTIONS(756), + [anon_sym_SEMI] = ACTIONS(739), + [anon_sym_COMMA] = ACTIONS(739), + [anon_sym_RBRACE] = ACTIONS(739), + [anon_sym_let] = ACTIONS(837), + [anon_sym_LPAREN] = ACTIONS(839), + [anon_sym_RPAREN] = ACTIONS(739), + [anon_sym_get] = ACTIONS(837), + [anon_sym_set] = ACTIONS(837), + [anon_sym_async] = ACTIONS(837), + [anon_sym_static] = ACTIONS(837), + [anon_sym_in] = ACTIONS(756), + [anon_sym_COLON] = ACTIONS(739), + [anon_sym_EQ] = ACTIONS(848), + [anon_sym_LBRACK] = ACTIONS(739), + [anon_sym_RBRACK] = ACTIONS(739), + [anon_sym_GT] = ACTIONS(756), + [anon_sym_LT] = ACTIONS(756), + [anon_sym_DOT] = ACTIONS(739), + [anon_sym_function] = ACTIONS(844), + [anon_sym_EQ_GT] = ACTIONS(846), + [sym_optional_chain] = ACTIONS(739), + [anon_sym_PLUS_EQ] = ACTIONS(769), + [anon_sym_DASH_EQ] = ACTIONS(769), + [anon_sym_STAR_EQ] = ACTIONS(769), + [anon_sym_SLASH_EQ] = ACTIONS(769), + [anon_sym_PERCENT_EQ] = ACTIONS(769), + [anon_sym_CARET_EQ] = ACTIONS(769), + [anon_sym_AMP_EQ] = ACTIONS(769), + [anon_sym_PIPE_EQ] = ACTIONS(769), + [anon_sym_GT_GT_EQ] = ACTIONS(769), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(769), + [anon_sym_LT_LT_EQ] = ACTIONS(769), + [anon_sym_STAR_STAR_EQ] = ACTIONS(769), + [anon_sym_AMP_AMP_EQ] = ACTIONS(769), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(769), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(769), + [anon_sym_AMP_AMP] = ACTIONS(756), + [anon_sym_PIPE_PIPE] = ACTIONS(756), + [anon_sym_GT_GT] = ACTIONS(756), + [anon_sym_GT_GT_GT] = ACTIONS(756), + [anon_sym_LT_LT] = ACTIONS(756), + [anon_sym_AMP] = ACTIONS(756), + [anon_sym_CARET] = ACTIONS(756), + [anon_sym_PIPE] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(756), + [anon_sym_PERCENT] = ACTIONS(756), + [anon_sym_STAR_STAR] = ACTIONS(756), + [anon_sym_LT_EQ] = ACTIONS(739), + [anon_sym_EQ_EQ] = ACTIONS(756), + [anon_sym_EQ_EQ_EQ] = ACTIONS(739), + [anon_sym_BANG_EQ] = ACTIONS(756), + [anon_sym_BANG_EQ_EQ] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(739), + [anon_sym_QMARK_QMARK] = ACTIONS(756), + [anon_sym_instanceof] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(739), + [sym_ternary_qmark] = ACTIONS(739), + [sym_html_comment] = ACTIONS(5), + }, + [290] = { + [sym_formal_parameters] = STATE(1546), + [sym_identifier] = ACTIONS(850), + [anon_sym_export] = ACTIONS(850), + [anon_sym_STAR] = ACTIONS(756), + [anon_sym_SEMI] = ACTIONS(739), + [anon_sym_COMMA] = ACTIONS(739), + [anon_sym_let] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(839), + [anon_sym_get] = ACTIONS(850), + [anon_sym_set] = ACTIONS(850), + [anon_sym_async] = ACTIONS(850), + [anon_sym_static] = ACTIONS(850), + [anon_sym_in] = ACTIONS(756), + [anon_sym_of] = ACTIONS(756), + [anon_sym_EQ] = ACTIONS(852), + [anon_sym_LBRACK] = ACTIONS(739), + [anon_sym_GT] = ACTIONS(756), + [anon_sym_LT] = ACTIONS(756), + [anon_sym_DOT] = ACTIONS(739), + [anon_sym_function] = ACTIONS(854), + [anon_sym_EQ_GT] = ACTIONS(856), + [sym_optional_chain] = ACTIONS(739), + [anon_sym_PLUS_EQ] = ACTIONS(769), + [anon_sym_DASH_EQ] = ACTIONS(769), + [anon_sym_STAR_EQ] = ACTIONS(769), + [anon_sym_SLASH_EQ] = ACTIONS(769), + [anon_sym_PERCENT_EQ] = ACTIONS(769), + [anon_sym_CARET_EQ] = ACTIONS(769), + [anon_sym_AMP_EQ] = ACTIONS(769), + [anon_sym_PIPE_EQ] = ACTIONS(769), + [anon_sym_GT_GT_EQ] = ACTIONS(769), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(769), + [anon_sym_LT_LT_EQ] = ACTIONS(769), + [anon_sym_STAR_STAR_EQ] = ACTIONS(769), + [anon_sym_AMP_AMP_EQ] = ACTIONS(769), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(769), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(769), + [anon_sym_AMP_AMP] = ACTIONS(756), + [anon_sym_PIPE_PIPE] = ACTIONS(756), + [anon_sym_GT_GT] = ACTIONS(756), + [anon_sym_GT_GT_GT] = ACTIONS(756), + [anon_sym_LT_LT] = ACTIONS(756), + [anon_sym_AMP] = ACTIONS(756), + [anon_sym_CARET] = ACTIONS(756), + [anon_sym_PIPE] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(756), + [anon_sym_PERCENT] = ACTIONS(756), + [anon_sym_STAR_STAR] = ACTIONS(756), + [anon_sym_LT_EQ] = ACTIONS(739), + [anon_sym_EQ_EQ] = ACTIONS(756), + [anon_sym_EQ_EQ_EQ] = ACTIONS(739), + [anon_sym_BANG_EQ] = ACTIONS(756), + [anon_sym_BANG_EQ_EQ] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(739), + [anon_sym_QMARK_QMARK] = ACTIONS(756), + [anon_sym_instanceof] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(739), + [sym_automatic_semicolon] = ACTIONS(739), + [sym_ternary_qmark] = ACTIONS(739), + [sym_html_comment] = ACTIONS(5), + }, + [291] = { + [sym_formal_parameters] = STATE(1633), + [sym_identifier] = ACTIONS(858), + [anon_sym_export] = ACTIONS(858), + [anon_sym_STAR] = ACTIONS(756), + [anon_sym_SEMI] = ACTIONS(739), + [anon_sym_COMMA] = ACTIONS(739), + [anon_sym_RBRACE] = ACTIONS(739), + [anon_sym_let] = ACTIONS(858), + [anon_sym_LPAREN] = ACTIONS(839), + [anon_sym_get] = ACTIONS(858), + [anon_sym_set] = ACTIONS(858), + [anon_sym_async] = ACTIONS(858), + [anon_sym_static] = ACTIONS(858), + [anon_sym_in] = ACTIONS(756), + [anon_sym_EQ] = ACTIONS(827), + [anon_sym_LBRACK] = ACTIONS(739), + [anon_sym_GT] = ACTIONS(756), + [anon_sym_LT] = ACTIONS(756), + [anon_sym_DOT] = ACTIONS(739), + [anon_sym_function] = ACTIONS(854), + [anon_sym_EQ_GT] = ACTIONS(767), + [sym_optional_chain] = ACTIONS(739), + [anon_sym_PLUS_EQ] = ACTIONS(769), + [anon_sym_DASH_EQ] = ACTIONS(769), + [anon_sym_STAR_EQ] = ACTIONS(769), + [anon_sym_SLASH_EQ] = ACTIONS(769), + [anon_sym_PERCENT_EQ] = ACTIONS(769), + [anon_sym_CARET_EQ] = ACTIONS(769), + [anon_sym_AMP_EQ] = ACTIONS(769), + [anon_sym_PIPE_EQ] = ACTIONS(769), + [anon_sym_GT_GT_EQ] = ACTIONS(769), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(769), + [anon_sym_LT_LT_EQ] = ACTIONS(769), + [anon_sym_STAR_STAR_EQ] = ACTIONS(769), + [anon_sym_AMP_AMP_EQ] = ACTIONS(769), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(769), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(769), + [anon_sym_AMP_AMP] = ACTIONS(756), + [anon_sym_PIPE_PIPE] = ACTIONS(756), + [anon_sym_GT_GT] = ACTIONS(756), + [anon_sym_GT_GT_GT] = ACTIONS(756), + [anon_sym_LT_LT] = ACTIONS(756), + [anon_sym_AMP] = ACTIONS(756), + [anon_sym_CARET] = ACTIONS(756), + [anon_sym_PIPE] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(756), + [anon_sym_PERCENT] = ACTIONS(756), + [anon_sym_STAR_STAR] = ACTIONS(756), + [anon_sym_LT_EQ] = ACTIONS(739), + [anon_sym_EQ_EQ] = ACTIONS(756), + [anon_sym_EQ_EQ_EQ] = ACTIONS(739), + [anon_sym_BANG_EQ] = ACTIONS(756), + [anon_sym_BANG_EQ_EQ] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(739), + [anon_sym_QMARK_QMARK] = ACTIONS(756), + [anon_sym_instanceof] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(739), + [sym_automatic_semicolon] = ACTIONS(739), + [sym_ternary_qmark] = ACTIONS(739), + [sym_html_comment] = ACTIONS(5), + }, + [292] = { + [ts_builtin_sym_end] = ACTIONS(496), + [sym_identifier] = ACTIONS(498), + [anon_sym_export] = ACTIONS(498), + [anon_sym_SEMI] = ACTIONS(496), + [anon_sym_default] = ACTIONS(498), + [anon_sym_LBRACE] = ACTIONS(496), + [anon_sym_COMMA] = ACTIONS(496), + [anon_sym_RBRACE] = ACTIONS(496), + [anon_sym_import] = ACTIONS(498), + [anon_sym_with] = ACTIONS(498), + [anon_sym_var] = ACTIONS(498), + [anon_sym_let] = ACTIONS(498), + [anon_sym_const] = ACTIONS(498), + [anon_sym_else] = ACTIONS(498), + [anon_sym_if] = ACTIONS(498), + [anon_sym_switch] = ACTIONS(498), + [anon_sym_for] = ACTIONS(498), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_await] = ACTIONS(498), + [anon_sym_get] = ACTIONS(498), + [anon_sym_set] = ACTIONS(498), + [anon_sym_async] = ACTIONS(498), + [anon_sym_static] = ACTIONS(498), + [anon_sym_while] = ACTIONS(498), + [anon_sym_do] = ACTIONS(498), + [anon_sym_try] = ACTIONS(498), + [anon_sym_break] = ACTIONS(498), + [anon_sym_continue] = ACTIONS(498), + [anon_sym_debugger] = ACTIONS(498), + [anon_sym_return] = ACTIONS(498), + [anon_sym_throw] = ACTIONS(498), + [anon_sym_case] = ACTIONS(498), + [anon_sym_catch] = ACTIONS(498), + [anon_sym_finally] = ACTIONS(498), + [anon_sym_yield] = ACTIONS(498), + [anon_sym_LBRACK] = ACTIONS(496), + [anon_sym_LT] = ACTIONS(496), + [anon_sym_DQUOTE] = ACTIONS(496), + [anon_sym_SQUOTE] = ACTIONS(496), + [anon_sym_class] = ACTIONS(498), + [anon_sym_function] = ACTIONS(498), + [anon_sym_new] = ACTIONS(498), + [anon_sym_PLUS] = ACTIONS(498), + [anon_sym_DASH] = ACTIONS(498), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(496), + [anon_sym_typeof] = ACTIONS(498), + [anon_sym_void] = ACTIONS(498), + [anon_sym_delete] = ACTIONS(498), + [anon_sym_PLUS_PLUS] = ACTIONS(496), + [anon_sym_DASH_DASH] = ACTIONS(496), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(496), + [sym_number] = ACTIONS(496), + [sym_private_property_identifier] = ACTIONS(496), + [sym_this] = ACTIONS(498), + [sym_super] = ACTIONS(498), + [sym_true] = ACTIONS(498), + [sym_false] = ACTIONS(498), + [sym_null] = ACTIONS(498), + [sym_undefined] = ACTIONS(498), + [anon_sym_AT] = ACTIONS(496), + [sym_automatic_semicolon] = ACTIONS(860), + [sym_html_comment] = ACTIONS(5), + }, + [293] = { + [sym_formal_parameters] = STATE(1628), + [sym_identifier] = ACTIONS(862), + [anon_sym_export] = ACTIONS(862), + [anon_sym_STAR] = ACTIONS(756), + [anon_sym_COMMA] = ACTIONS(864), + [anon_sym_RBRACE] = ACTIONS(864), + [anon_sym_let] = ACTIONS(862), + [anon_sym_LPAREN] = ACTIONS(839), + [anon_sym_RPAREN] = ACTIONS(864), + [anon_sym_get] = ACTIONS(862), + [anon_sym_set] = ACTIONS(862), + [anon_sym_async] = ACTIONS(862), + [anon_sym_static] = ACTIONS(862), + [anon_sym_in] = ACTIONS(756), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_LBRACK] = ACTIONS(739), + [anon_sym_RBRACK] = ACTIONS(864), + [anon_sym_GT] = ACTIONS(756), + [anon_sym_LT] = ACTIONS(756), + [anon_sym_DOT] = ACTIONS(739), + [anon_sym_function] = ACTIONS(844), + [anon_sym_EQ_GT] = ACTIONS(869), + [sym_optional_chain] = ACTIONS(739), + [anon_sym_PLUS_EQ] = ACTIONS(769), + [anon_sym_DASH_EQ] = ACTIONS(769), + [anon_sym_STAR_EQ] = ACTIONS(769), + [anon_sym_SLASH_EQ] = ACTIONS(769), + [anon_sym_PERCENT_EQ] = ACTIONS(769), + [anon_sym_CARET_EQ] = ACTIONS(769), + [anon_sym_AMP_EQ] = ACTIONS(769), + [anon_sym_PIPE_EQ] = ACTIONS(769), + [anon_sym_GT_GT_EQ] = ACTIONS(769), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(769), + [anon_sym_LT_LT_EQ] = ACTIONS(769), + [anon_sym_STAR_STAR_EQ] = ACTIONS(769), + [anon_sym_AMP_AMP_EQ] = ACTIONS(769), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(769), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(769), + [anon_sym_AMP_AMP] = ACTIONS(756), + [anon_sym_PIPE_PIPE] = ACTIONS(756), + [anon_sym_GT_GT] = ACTIONS(756), + [anon_sym_GT_GT_GT] = ACTIONS(756), + [anon_sym_LT_LT] = ACTIONS(756), + [anon_sym_AMP] = ACTIONS(756), + [anon_sym_CARET] = ACTIONS(756), + [anon_sym_PIPE] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(756), + [anon_sym_PERCENT] = ACTIONS(756), + [anon_sym_STAR_STAR] = ACTIONS(756), + [anon_sym_LT_EQ] = ACTIONS(739), + [anon_sym_EQ_EQ] = ACTIONS(756), + [anon_sym_EQ_EQ_EQ] = ACTIONS(739), + [anon_sym_BANG_EQ] = ACTIONS(756), + [anon_sym_BANG_EQ_EQ] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(739), + [anon_sym_QMARK_QMARK] = ACTIONS(756), + [anon_sym_instanceof] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(739), + [sym_ternary_qmark] = ACTIONS(739), + [sym_html_comment] = ACTIONS(5), + }, + [294] = { + [sym_variable_declarator] = STATE(1143), + [sym_object_pattern] = STATE(1054), + [sym_array_pattern] = STATE(1054), + [sym_destructuring_pattern] = STATE(1121), + [aux_sym_object_repeat1] = STATE(1275), + [aux_sym_object_pattern_repeat1] = STATE(1241), + [sym_identifier] = ACTIONS(871), + [anon_sym_STAR] = ACTIONS(756), + [anon_sym_SEMI] = ACTIONS(739), + [anon_sym_LBRACE] = ACTIONS(873), + [anon_sym_COMMA] = ACTIONS(739), + [anon_sym_RBRACE] = ACTIONS(775), + [anon_sym_LPAREN] = ACTIONS(751), + [anon_sym_in] = ACTIONS(756), + [anon_sym_COLON] = ACTIONS(758), + [anon_sym_EQ] = ACTIONS(761), + [anon_sym_LBRACK] = ACTIONS(875), + [anon_sym_GT] = ACTIONS(756), + [anon_sym_LT] = ACTIONS(756), + [anon_sym_DOT] = ACTIONS(739), + [anon_sym_EQ_GT] = ACTIONS(767), + [sym_optional_chain] = ACTIONS(739), + [anon_sym_PLUS_EQ] = ACTIONS(769), + [anon_sym_DASH_EQ] = ACTIONS(769), + [anon_sym_STAR_EQ] = ACTIONS(769), + [anon_sym_SLASH_EQ] = ACTIONS(769), + [anon_sym_PERCENT_EQ] = ACTIONS(769), + [anon_sym_CARET_EQ] = ACTIONS(769), + [anon_sym_AMP_EQ] = ACTIONS(769), + [anon_sym_PIPE_EQ] = ACTIONS(769), + [anon_sym_GT_GT_EQ] = ACTIONS(769), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(769), + [anon_sym_LT_LT_EQ] = ACTIONS(769), + [anon_sym_STAR_STAR_EQ] = ACTIONS(769), + [anon_sym_AMP_AMP_EQ] = ACTIONS(769), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(769), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(769), + [anon_sym_AMP_AMP] = ACTIONS(756), + [anon_sym_PIPE_PIPE] = ACTIONS(756), + [anon_sym_GT_GT] = ACTIONS(756), + [anon_sym_GT_GT_GT] = ACTIONS(756), + [anon_sym_LT_LT] = ACTIONS(756), + [anon_sym_AMP] = ACTIONS(756), + [anon_sym_CARET] = ACTIONS(756), + [anon_sym_PIPE] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(756), + [anon_sym_PERCENT] = ACTIONS(756), + [anon_sym_STAR_STAR] = ACTIONS(756), + [anon_sym_LT_EQ] = ACTIONS(739), + [anon_sym_EQ_EQ] = ACTIONS(756), + [anon_sym_EQ_EQ_EQ] = ACTIONS(739), + [anon_sym_BANG_EQ] = ACTIONS(756), + [anon_sym_BANG_EQ_EQ] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(739), + [anon_sym_QMARK_QMARK] = ACTIONS(756), + [anon_sym_instanceof] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(739), + [sym_automatic_semicolon] = ACTIONS(739), + [sym_ternary_qmark] = ACTIONS(739), + [sym_html_comment] = ACTIONS(5), + }, + [295] = { + [sym_formal_parameters] = STATE(1546), + [sym_identifier] = ACTIONS(850), + [anon_sym_export] = ACTIONS(850), + [anon_sym_STAR] = ACTIONS(756), + [anon_sym_SEMI] = ACTIONS(739), + [anon_sym_COMMA] = ACTIONS(739), + [anon_sym_let] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(839), + [anon_sym_get] = ACTIONS(850), + [anon_sym_set] = ACTIONS(850), + [anon_sym_async] = ACTIONS(850), + [anon_sym_static] = ACTIONS(850), + [anon_sym_in] = ACTIONS(756), + [anon_sym_of] = ACTIONS(756), + [anon_sym_EQ] = ACTIONS(848), + [anon_sym_LBRACK] = ACTIONS(739), + [anon_sym_GT] = ACTIONS(756), + [anon_sym_LT] = ACTIONS(756), + [anon_sym_DOT] = ACTIONS(739), + [anon_sym_function] = ACTIONS(854), + [anon_sym_EQ_GT] = ACTIONS(856), + [sym_optional_chain] = ACTIONS(739), + [anon_sym_PLUS_EQ] = ACTIONS(769), + [anon_sym_DASH_EQ] = ACTIONS(769), + [anon_sym_STAR_EQ] = ACTIONS(769), + [anon_sym_SLASH_EQ] = ACTIONS(769), + [anon_sym_PERCENT_EQ] = ACTIONS(769), + [anon_sym_CARET_EQ] = ACTIONS(769), + [anon_sym_AMP_EQ] = ACTIONS(769), + [anon_sym_PIPE_EQ] = ACTIONS(769), + [anon_sym_GT_GT_EQ] = ACTIONS(769), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(769), + [anon_sym_LT_LT_EQ] = ACTIONS(769), + [anon_sym_STAR_STAR_EQ] = ACTIONS(769), + [anon_sym_AMP_AMP_EQ] = ACTIONS(769), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(769), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(769), + [anon_sym_AMP_AMP] = ACTIONS(756), + [anon_sym_PIPE_PIPE] = ACTIONS(756), + [anon_sym_GT_GT] = ACTIONS(756), + [anon_sym_GT_GT_GT] = ACTIONS(756), + [anon_sym_LT_LT] = ACTIONS(756), + [anon_sym_AMP] = ACTIONS(756), + [anon_sym_CARET] = ACTIONS(756), + [anon_sym_PIPE] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(756), + [anon_sym_PERCENT] = ACTIONS(756), + [anon_sym_STAR_STAR] = ACTIONS(756), + [anon_sym_LT_EQ] = ACTIONS(739), + [anon_sym_EQ_EQ] = ACTIONS(756), + [anon_sym_EQ_EQ_EQ] = ACTIONS(739), + [anon_sym_BANG_EQ] = ACTIONS(756), + [anon_sym_BANG_EQ_EQ] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(739), + [anon_sym_QMARK_QMARK] = ACTIONS(756), + [anon_sym_instanceof] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(739), + [sym_automatic_semicolon] = ACTIONS(739), + [sym_ternary_qmark] = ACTIONS(739), + [sym_html_comment] = ACTIONS(5), + }, + [296] = { + [ts_builtin_sym_end] = ACTIONS(490), + [sym_identifier] = ACTIONS(492), + [anon_sym_export] = ACTIONS(492), + [anon_sym_SEMI] = ACTIONS(490), + [anon_sym_default] = ACTIONS(492), + [anon_sym_LBRACE] = ACTIONS(490), + [anon_sym_COMMA] = ACTIONS(490), + [anon_sym_RBRACE] = ACTIONS(490), + [anon_sym_import] = ACTIONS(492), + [anon_sym_with] = ACTIONS(492), + [anon_sym_var] = ACTIONS(492), + [anon_sym_let] = ACTIONS(492), + [anon_sym_const] = ACTIONS(492), + [anon_sym_else] = ACTIONS(492), + [anon_sym_if] = ACTIONS(492), + [anon_sym_switch] = ACTIONS(492), + [anon_sym_for] = ACTIONS(492), + [anon_sym_LPAREN] = ACTIONS(490), + [anon_sym_await] = ACTIONS(492), + [anon_sym_get] = ACTIONS(492), + [anon_sym_set] = ACTIONS(492), + [anon_sym_async] = ACTIONS(492), + [anon_sym_static] = ACTIONS(492), + [anon_sym_while] = ACTIONS(492), + [anon_sym_do] = ACTIONS(492), + [anon_sym_try] = ACTIONS(492), + [anon_sym_break] = ACTIONS(492), + [anon_sym_continue] = ACTIONS(492), + [anon_sym_debugger] = ACTIONS(492), + [anon_sym_return] = ACTIONS(492), + [anon_sym_throw] = ACTIONS(492), + [anon_sym_case] = ACTIONS(492), + [anon_sym_catch] = ACTIONS(492), + [anon_sym_finally] = ACTIONS(492), + [anon_sym_yield] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(490), + [anon_sym_LT] = ACTIONS(490), + [anon_sym_DQUOTE] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(490), + [anon_sym_class] = ACTIONS(492), + [anon_sym_function] = ACTIONS(492), + [anon_sym_new] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_SLASH] = ACTIONS(492), + [anon_sym_BANG] = ACTIONS(490), + [anon_sym_TILDE] = ACTIONS(490), + [anon_sym_typeof] = ACTIONS(492), + [anon_sym_void] = ACTIONS(492), + [anon_sym_delete] = ACTIONS(492), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_DASH_DASH] = ACTIONS(490), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(490), + [sym_number] = ACTIONS(490), + [sym_private_property_identifier] = ACTIONS(490), + [sym_this] = ACTIONS(492), + [sym_super] = ACTIONS(492), + [sym_true] = ACTIONS(492), + [sym_false] = ACTIONS(492), + [sym_null] = ACTIONS(492), + [sym_undefined] = ACTIONS(492), + [anon_sym_AT] = ACTIONS(490), + [sym_automatic_semicolon] = ACTIONS(512), + [sym_html_comment] = ACTIONS(5), + }, + [297] = { + [sym_formal_parameters] = STATE(1633), + [sym_identifier] = ACTIONS(858), + [anon_sym_export] = ACTIONS(858), + [anon_sym_STAR] = ACTIONS(756), + [anon_sym_SEMI] = ACTIONS(739), + [anon_sym_COMMA] = ACTIONS(739), + [anon_sym_let] = ACTIONS(858), + [anon_sym_LPAREN] = ACTIONS(839), + [anon_sym_get] = ACTIONS(858), + [anon_sym_set] = ACTIONS(858), + [anon_sym_async] = ACTIONS(858), + [anon_sym_static] = ACTIONS(858), + [anon_sym_in] = ACTIONS(756), + [anon_sym_COLON] = ACTIONS(825), + [anon_sym_EQ] = ACTIONS(827), + [anon_sym_LBRACK] = ACTIONS(739), + [anon_sym_GT] = ACTIONS(756), + [anon_sym_LT] = ACTIONS(756), + [anon_sym_DOT] = ACTIONS(739), + [anon_sym_function] = ACTIONS(877), + [anon_sym_EQ_GT] = ACTIONS(767), + [sym_optional_chain] = ACTIONS(739), + [anon_sym_PLUS_EQ] = ACTIONS(769), + [anon_sym_DASH_EQ] = ACTIONS(769), + [anon_sym_STAR_EQ] = ACTIONS(769), + [anon_sym_SLASH_EQ] = ACTIONS(769), + [anon_sym_PERCENT_EQ] = ACTIONS(769), + [anon_sym_CARET_EQ] = ACTIONS(769), + [anon_sym_AMP_EQ] = ACTIONS(769), + [anon_sym_PIPE_EQ] = ACTIONS(769), + [anon_sym_GT_GT_EQ] = ACTIONS(769), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(769), + [anon_sym_LT_LT_EQ] = ACTIONS(769), + [anon_sym_STAR_STAR_EQ] = ACTIONS(769), + [anon_sym_AMP_AMP_EQ] = ACTIONS(769), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(769), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(769), + [anon_sym_AMP_AMP] = ACTIONS(756), + [anon_sym_PIPE_PIPE] = ACTIONS(756), + [anon_sym_GT_GT] = ACTIONS(756), + [anon_sym_GT_GT_GT] = ACTIONS(756), + [anon_sym_LT_LT] = ACTIONS(756), + [anon_sym_AMP] = ACTIONS(756), + [anon_sym_CARET] = ACTIONS(756), + [anon_sym_PIPE] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(756), + [anon_sym_PERCENT] = ACTIONS(756), + [anon_sym_STAR_STAR] = ACTIONS(756), + [anon_sym_LT_EQ] = ACTIONS(739), + [anon_sym_EQ_EQ] = ACTIONS(756), + [anon_sym_EQ_EQ_EQ] = ACTIONS(739), + [anon_sym_BANG_EQ] = ACTIONS(756), + [anon_sym_BANG_EQ_EQ] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(739), + [anon_sym_QMARK_QMARK] = ACTIONS(756), + [anon_sym_instanceof] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(739), + [sym_automatic_semicolon] = ACTIONS(739), + [sym_ternary_qmark] = ACTIONS(739), + [sym_html_comment] = ACTIONS(5), + }, + [298] = { + [sym_formal_parameters] = STATE(1585), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(837), + [anon_sym_STAR] = ACTIONS(756), + [anon_sym_COMMA] = ACTIONS(879), + [anon_sym_RBRACE] = ACTIONS(879), + [anon_sym_let] = ACTIONS(837), + [anon_sym_LPAREN] = ACTIONS(839), + [anon_sym_RPAREN] = ACTIONS(879), + [anon_sym_get] = ACTIONS(837), + [anon_sym_set] = ACTIONS(837), + [anon_sym_async] = ACTIONS(837), + [anon_sym_static] = ACTIONS(837), + [anon_sym_in] = ACTIONS(756), + [anon_sym_EQ] = ACTIONS(882), + [anon_sym_LBRACK] = ACTIONS(739), + [anon_sym_RBRACK] = ACTIONS(879), + [anon_sym_GT] = ACTIONS(756), + [anon_sym_LT] = ACTIONS(756), + [anon_sym_DOT] = ACTIONS(739), + [anon_sym_function] = ACTIONS(844), + [anon_sym_EQ_GT] = ACTIONS(846), + [sym_optional_chain] = ACTIONS(739), + [anon_sym_PLUS_EQ] = ACTIONS(769), + [anon_sym_DASH_EQ] = ACTIONS(769), + [anon_sym_STAR_EQ] = ACTIONS(769), + [anon_sym_SLASH_EQ] = ACTIONS(769), + [anon_sym_PERCENT_EQ] = ACTIONS(769), + [anon_sym_CARET_EQ] = ACTIONS(769), + [anon_sym_AMP_EQ] = ACTIONS(769), + [anon_sym_PIPE_EQ] = ACTIONS(769), + [anon_sym_GT_GT_EQ] = ACTIONS(769), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(769), + [anon_sym_LT_LT_EQ] = ACTIONS(769), + [anon_sym_STAR_STAR_EQ] = ACTIONS(769), + [anon_sym_AMP_AMP_EQ] = ACTIONS(769), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(769), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(769), + [anon_sym_AMP_AMP] = ACTIONS(756), + [anon_sym_PIPE_PIPE] = ACTIONS(756), + [anon_sym_GT_GT] = ACTIONS(756), + [anon_sym_GT_GT_GT] = ACTIONS(756), + [anon_sym_LT_LT] = ACTIONS(756), + [anon_sym_AMP] = ACTIONS(756), + [anon_sym_CARET] = ACTIONS(756), + [anon_sym_PIPE] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(756), + [anon_sym_PERCENT] = ACTIONS(756), + [anon_sym_STAR_STAR] = ACTIONS(756), + [anon_sym_LT_EQ] = ACTIONS(739), + [anon_sym_EQ_EQ] = ACTIONS(756), + [anon_sym_EQ_EQ_EQ] = ACTIONS(739), + [anon_sym_BANG_EQ] = ACTIONS(756), + [anon_sym_BANG_EQ_EQ] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(739), + [anon_sym_QMARK_QMARK] = ACTIONS(756), + [anon_sym_instanceof] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(739), + [sym_ternary_qmark] = ACTIONS(739), + [sym_html_comment] = ACTIONS(5), + }, + [299] = { + [sym_formal_parameters] = STATE(1633), + [sym_identifier] = ACTIONS(858), + [anon_sym_export] = ACTIONS(858), + [anon_sym_STAR] = ACTIONS(756), + [anon_sym_SEMI] = ACTIONS(739), + [anon_sym_COMMA] = ACTIONS(739), + [anon_sym_RBRACE] = ACTIONS(739), + [anon_sym_let] = ACTIONS(858), + [anon_sym_LPAREN] = ACTIONS(839), + [anon_sym_get] = ACTIONS(858), + [anon_sym_set] = ACTIONS(858), + [anon_sym_async] = ACTIONS(858), + [anon_sym_static] = ACTIONS(858), + [anon_sym_in] = ACTIONS(756), + [anon_sym_EQ] = ACTIONS(848), + [anon_sym_LBRACK] = ACTIONS(739), + [anon_sym_GT] = ACTIONS(756), + [anon_sym_LT] = ACTIONS(756), + [anon_sym_DOT] = ACTIONS(739), + [anon_sym_function] = ACTIONS(854), + [anon_sym_EQ_GT] = ACTIONS(767), + [sym_optional_chain] = ACTIONS(739), + [anon_sym_PLUS_EQ] = ACTIONS(769), + [anon_sym_DASH_EQ] = ACTIONS(769), + [anon_sym_STAR_EQ] = ACTIONS(769), + [anon_sym_SLASH_EQ] = ACTIONS(769), + [anon_sym_PERCENT_EQ] = ACTIONS(769), + [anon_sym_CARET_EQ] = ACTIONS(769), + [anon_sym_AMP_EQ] = ACTIONS(769), + [anon_sym_PIPE_EQ] = ACTIONS(769), + [anon_sym_GT_GT_EQ] = ACTIONS(769), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(769), + [anon_sym_LT_LT_EQ] = ACTIONS(769), + [anon_sym_STAR_STAR_EQ] = ACTIONS(769), + [anon_sym_AMP_AMP_EQ] = ACTIONS(769), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(769), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(769), + [anon_sym_AMP_AMP] = ACTIONS(756), + [anon_sym_PIPE_PIPE] = ACTIONS(756), + [anon_sym_GT_GT] = ACTIONS(756), + [anon_sym_GT_GT_GT] = ACTIONS(756), + [anon_sym_LT_LT] = ACTIONS(756), + [anon_sym_AMP] = ACTIONS(756), + [anon_sym_CARET] = ACTIONS(756), + [anon_sym_PIPE] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(756), + [anon_sym_PERCENT] = ACTIONS(756), + [anon_sym_STAR_STAR] = ACTIONS(756), + [anon_sym_LT_EQ] = ACTIONS(739), + [anon_sym_EQ_EQ] = ACTIONS(756), + [anon_sym_EQ_EQ_EQ] = ACTIONS(739), + [anon_sym_BANG_EQ] = ACTIONS(756), + [anon_sym_BANG_EQ_EQ] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(739), + [anon_sym_QMARK_QMARK] = ACTIONS(756), + [anon_sym_instanceof] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(739), + [sym_automatic_semicolon] = ACTIONS(739), + [sym_ternary_qmark] = ACTIONS(739), + [sym_html_comment] = ACTIONS(5), + }, + [300] = { + [sym_variable_declarator] = STATE(1143), + [sym_object_pattern] = STATE(1054), + [sym_array_pattern] = STATE(1054), + [sym_destructuring_pattern] = STATE(1121), + [aux_sym_object_repeat1] = STATE(1239), + [aux_sym_object_pattern_repeat1] = STATE(1241), + [sym_identifier] = ACTIONS(871), + [anon_sym_STAR] = ACTIONS(756), + [anon_sym_SEMI] = ACTIONS(739), + [anon_sym_LBRACE] = ACTIONS(873), + [anon_sym_COMMA] = ACTIONS(739), + [anon_sym_RBRACE] = ACTIONS(745), + [anon_sym_LPAREN] = ACTIONS(751), + [anon_sym_in] = ACTIONS(756), + [anon_sym_COLON] = ACTIONS(758), + [anon_sym_EQ] = ACTIONS(761), + [anon_sym_LBRACK] = ACTIONS(875), + [anon_sym_GT] = ACTIONS(756), + [anon_sym_LT] = ACTIONS(756), + [anon_sym_DOT] = ACTIONS(739), + [anon_sym_EQ_GT] = ACTIONS(767), + [sym_optional_chain] = ACTIONS(739), + [anon_sym_PLUS_EQ] = ACTIONS(769), + [anon_sym_DASH_EQ] = ACTIONS(769), + [anon_sym_STAR_EQ] = ACTIONS(769), + [anon_sym_SLASH_EQ] = ACTIONS(769), + [anon_sym_PERCENT_EQ] = ACTIONS(769), + [anon_sym_CARET_EQ] = ACTIONS(769), + [anon_sym_AMP_EQ] = ACTIONS(769), + [anon_sym_PIPE_EQ] = ACTIONS(769), + [anon_sym_GT_GT_EQ] = ACTIONS(769), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(769), + [anon_sym_LT_LT_EQ] = ACTIONS(769), + [anon_sym_STAR_STAR_EQ] = ACTIONS(769), + [anon_sym_AMP_AMP_EQ] = ACTIONS(769), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(769), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(769), + [anon_sym_AMP_AMP] = ACTIONS(756), + [anon_sym_PIPE_PIPE] = ACTIONS(756), + [anon_sym_GT_GT] = ACTIONS(756), + [anon_sym_GT_GT_GT] = ACTIONS(756), + [anon_sym_LT_LT] = ACTIONS(756), + [anon_sym_AMP] = ACTIONS(756), + [anon_sym_CARET] = ACTIONS(756), + [anon_sym_PIPE] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(756), + [anon_sym_PERCENT] = ACTIONS(756), + [anon_sym_STAR_STAR] = ACTIONS(756), + [anon_sym_LT_EQ] = ACTIONS(739), + [anon_sym_EQ_EQ] = ACTIONS(756), + [anon_sym_EQ_EQ_EQ] = ACTIONS(739), + [anon_sym_BANG_EQ] = ACTIONS(756), + [anon_sym_BANG_EQ_EQ] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(739), + [anon_sym_QMARK_QMARK] = ACTIONS(756), + [anon_sym_instanceof] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(739), + [sym_automatic_semicolon] = ACTIONS(739), + [sym_ternary_qmark] = ACTIONS(739), + [sym_html_comment] = ACTIONS(5), + }, + [301] = { + [sym_catch_clause] = STATE(313), + [sym_finally_clause] = STATE(367), + [ts_builtin_sym_end] = ACTIONS(885), + [sym_identifier] = ACTIONS(887), + [anon_sym_export] = ACTIONS(887), + [anon_sym_SEMI] = ACTIONS(885), + [anon_sym_default] = ACTIONS(887), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_RBRACE] = ACTIONS(885), + [anon_sym_import] = ACTIONS(887), + [anon_sym_with] = ACTIONS(887), + [anon_sym_var] = ACTIONS(887), + [anon_sym_let] = ACTIONS(887), + [anon_sym_const] = ACTIONS(887), + [anon_sym_else] = ACTIONS(887), + [anon_sym_if] = ACTIONS(887), + [anon_sym_switch] = ACTIONS(887), + [anon_sym_for] = ACTIONS(887), + [anon_sym_LPAREN] = ACTIONS(885), + [anon_sym_await] = ACTIONS(887), + [anon_sym_get] = ACTIONS(887), + [anon_sym_set] = ACTIONS(887), + [anon_sym_async] = ACTIONS(887), + [anon_sym_static] = ACTIONS(887), + [anon_sym_while] = ACTIONS(887), + [anon_sym_do] = ACTIONS(887), + [anon_sym_try] = ACTIONS(887), + [anon_sym_break] = ACTIONS(887), + [anon_sym_continue] = ACTIONS(887), + [anon_sym_debugger] = ACTIONS(887), + [anon_sym_return] = ACTIONS(887), + [anon_sym_throw] = ACTIONS(887), + [anon_sym_case] = ACTIONS(887), + [anon_sym_catch] = ACTIONS(889), + [anon_sym_finally] = ACTIONS(891), + [anon_sym_yield] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_LT] = ACTIONS(885), + [anon_sym_DQUOTE] = ACTIONS(885), + [anon_sym_SQUOTE] = ACTIONS(885), + [anon_sym_class] = ACTIONS(887), + [anon_sym_function] = ACTIONS(887), + [anon_sym_new] = ACTIONS(887), + [anon_sym_PLUS] = ACTIONS(887), + [anon_sym_DASH] = ACTIONS(887), + [anon_sym_SLASH] = ACTIONS(887), + [anon_sym_BANG] = ACTIONS(885), + [anon_sym_TILDE] = ACTIONS(885), + [anon_sym_typeof] = ACTIONS(887), + [anon_sym_void] = ACTIONS(887), + [anon_sym_delete] = ACTIONS(887), + [anon_sym_PLUS_PLUS] = ACTIONS(885), + [anon_sym_DASH_DASH] = ACTIONS(885), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(885), + [sym_number] = ACTIONS(885), + [sym_private_property_identifier] = ACTIONS(885), + [sym_this] = ACTIONS(887), + [sym_super] = ACTIONS(887), + [sym_true] = ACTIONS(887), + [sym_false] = ACTIONS(887), + [sym_null] = ACTIONS(887), + [sym_undefined] = ACTIONS(887), + [anon_sym_AT] = ACTIONS(885), + [sym_html_comment] = ACTIONS(5), + }, + [302] = { + [sym_formal_parameters] = STATE(1628), + [sym_identifier] = ACTIONS(862), + [anon_sym_export] = ACTIONS(862), + [anon_sym_STAR] = ACTIONS(756), + [anon_sym_COMMA] = ACTIONS(893), + [anon_sym_RBRACE] = ACTIONS(893), + [anon_sym_let] = ACTIONS(862), + [anon_sym_LPAREN] = ACTIONS(839), + [anon_sym_RPAREN] = ACTIONS(893), + [anon_sym_get] = ACTIONS(862), + [anon_sym_set] = ACTIONS(862), + [anon_sym_async] = ACTIONS(862), + [anon_sym_static] = ACTIONS(862), + [anon_sym_in] = ACTIONS(756), + [anon_sym_EQ] = ACTIONS(848), + [anon_sym_LBRACK] = ACTIONS(739), + [anon_sym_RBRACK] = ACTIONS(893), + [anon_sym_GT] = ACTIONS(756), + [anon_sym_LT] = ACTIONS(756), + [anon_sym_DOT] = ACTIONS(739), + [anon_sym_function] = ACTIONS(844), + [anon_sym_EQ_GT] = ACTIONS(869), + [sym_optional_chain] = ACTIONS(739), + [anon_sym_PLUS_EQ] = ACTIONS(769), + [anon_sym_DASH_EQ] = ACTIONS(769), + [anon_sym_STAR_EQ] = ACTIONS(769), + [anon_sym_SLASH_EQ] = ACTIONS(769), + [anon_sym_PERCENT_EQ] = ACTIONS(769), + [anon_sym_CARET_EQ] = ACTIONS(769), + [anon_sym_AMP_EQ] = ACTIONS(769), + [anon_sym_PIPE_EQ] = ACTIONS(769), + [anon_sym_GT_GT_EQ] = ACTIONS(769), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(769), + [anon_sym_LT_LT_EQ] = ACTIONS(769), + [anon_sym_STAR_STAR_EQ] = ACTIONS(769), + [anon_sym_AMP_AMP_EQ] = ACTIONS(769), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(769), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(769), + [anon_sym_AMP_AMP] = ACTIONS(756), + [anon_sym_PIPE_PIPE] = ACTIONS(756), + [anon_sym_GT_GT] = ACTIONS(756), + [anon_sym_GT_GT_GT] = ACTIONS(756), + [anon_sym_LT_LT] = ACTIONS(756), + [anon_sym_AMP] = ACTIONS(756), + [anon_sym_CARET] = ACTIONS(756), + [anon_sym_PIPE] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(756), + [anon_sym_PERCENT] = ACTIONS(756), + [anon_sym_STAR_STAR] = ACTIONS(756), + [anon_sym_LT_EQ] = ACTIONS(739), + [anon_sym_EQ_EQ] = ACTIONS(756), + [anon_sym_EQ_EQ_EQ] = ACTIONS(739), + [anon_sym_BANG_EQ] = ACTIONS(756), + [anon_sym_BANG_EQ_EQ] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(739), + [anon_sym_QMARK_QMARK] = ACTIONS(756), + [anon_sym_instanceof] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(739), + [sym_ternary_qmark] = ACTIONS(739), + [sym_html_comment] = ACTIONS(5), + }, + [303] = { + [sym_variable_declarator] = STATE(1143), + [sym_object_pattern] = STATE(1054), + [sym_array_pattern] = STATE(1054), + [sym_destructuring_pattern] = STATE(1121), + [aux_sym_object_repeat1] = STATE(1275), + [aux_sym_object_pattern_repeat1] = STATE(1241), + [sym_identifier] = ACTIONS(871), + [anon_sym_STAR] = ACTIONS(756), + [anon_sym_SEMI] = ACTIONS(739), + [anon_sym_LBRACE] = ACTIONS(873), + [anon_sym_COMMA] = ACTIONS(739), + [anon_sym_RBRACE] = ACTIONS(777), + [anon_sym_LPAREN] = ACTIONS(751), + [anon_sym_in] = ACTIONS(756), + [anon_sym_COLON] = ACTIONS(758), + [anon_sym_EQ] = ACTIONS(761), + [anon_sym_LBRACK] = ACTIONS(875), + [anon_sym_GT] = ACTIONS(756), + [anon_sym_LT] = ACTIONS(756), + [anon_sym_DOT] = ACTIONS(739), + [anon_sym_EQ_GT] = ACTIONS(767), + [sym_optional_chain] = ACTIONS(739), + [anon_sym_PLUS_EQ] = ACTIONS(769), + [anon_sym_DASH_EQ] = ACTIONS(769), + [anon_sym_STAR_EQ] = ACTIONS(769), + [anon_sym_SLASH_EQ] = ACTIONS(769), + [anon_sym_PERCENT_EQ] = ACTIONS(769), + [anon_sym_CARET_EQ] = ACTIONS(769), + [anon_sym_AMP_EQ] = ACTIONS(769), + [anon_sym_PIPE_EQ] = ACTIONS(769), + [anon_sym_GT_GT_EQ] = ACTIONS(769), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(769), + [anon_sym_LT_LT_EQ] = ACTIONS(769), + [anon_sym_STAR_STAR_EQ] = ACTIONS(769), + [anon_sym_AMP_AMP_EQ] = ACTIONS(769), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(769), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(769), + [anon_sym_AMP_AMP] = ACTIONS(756), + [anon_sym_PIPE_PIPE] = ACTIONS(756), + [anon_sym_GT_GT] = ACTIONS(756), + [anon_sym_GT_GT_GT] = ACTIONS(756), + [anon_sym_LT_LT] = ACTIONS(756), + [anon_sym_AMP] = ACTIONS(756), + [anon_sym_CARET] = ACTIONS(756), + [anon_sym_PIPE] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(756), + [anon_sym_PERCENT] = ACTIONS(756), + [anon_sym_STAR_STAR] = ACTIONS(756), + [anon_sym_LT_EQ] = ACTIONS(739), + [anon_sym_EQ_EQ] = ACTIONS(756), + [anon_sym_EQ_EQ_EQ] = ACTIONS(739), + [anon_sym_BANG_EQ] = ACTIONS(756), + [anon_sym_BANG_EQ_EQ] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(739), + [anon_sym_QMARK_QMARK] = ACTIONS(756), + [anon_sym_instanceof] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(739), + [sym_automatic_semicolon] = ACTIONS(739), + [sym_ternary_qmark] = ACTIONS(739), + [sym_html_comment] = ACTIONS(5), + }, + [304] = { + [sym_formal_parameters] = STATE(1633), + [sym_identifier] = ACTIONS(858), + [anon_sym_export] = ACTIONS(858), + [anon_sym_STAR] = ACTIONS(756), + [anon_sym_SEMI] = ACTIONS(739), + [anon_sym_COMMA] = ACTIONS(739), + [anon_sym_let] = ACTIONS(858), + [anon_sym_LPAREN] = ACTIONS(839), + [anon_sym_get] = ACTIONS(858), + [anon_sym_set] = ACTIONS(858), + [anon_sym_async] = ACTIONS(858), + [anon_sym_static] = ACTIONS(858), + [anon_sym_in] = ACTIONS(756), + [anon_sym_COLON] = ACTIONS(829), + [anon_sym_EQ] = ACTIONS(827), + [anon_sym_LBRACK] = ACTIONS(739), + [anon_sym_GT] = ACTIONS(756), + [anon_sym_LT] = ACTIONS(756), + [anon_sym_DOT] = ACTIONS(739), + [anon_sym_function] = ACTIONS(819), + [anon_sym_EQ_GT] = ACTIONS(767), + [sym_optional_chain] = ACTIONS(739), + [anon_sym_PLUS_EQ] = ACTIONS(769), + [anon_sym_DASH_EQ] = ACTIONS(769), + [anon_sym_STAR_EQ] = ACTIONS(769), + [anon_sym_SLASH_EQ] = ACTIONS(769), + [anon_sym_PERCENT_EQ] = ACTIONS(769), + [anon_sym_CARET_EQ] = ACTIONS(769), + [anon_sym_AMP_EQ] = ACTIONS(769), + [anon_sym_PIPE_EQ] = ACTIONS(769), + [anon_sym_GT_GT_EQ] = ACTIONS(769), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(769), + [anon_sym_LT_LT_EQ] = ACTIONS(769), + [anon_sym_STAR_STAR_EQ] = ACTIONS(769), + [anon_sym_AMP_AMP_EQ] = ACTIONS(769), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(769), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(769), + [anon_sym_AMP_AMP] = ACTIONS(756), + [anon_sym_PIPE_PIPE] = ACTIONS(756), + [anon_sym_GT_GT] = ACTIONS(756), + [anon_sym_GT_GT_GT] = ACTIONS(756), + [anon_sym_LT_LT] = ACTIONS(756), + [anon_sym_AMP] = ACTIONS(756), + [anon_sym_CARET] = ACTIONS(756), + [anon_sym_PIPE] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(756), + [anon_sym_PERCENT] = ACTIONS(756), + [anon_sym_STAR_STAR] = ACTIONS(756), + [anon_sym_LT_EQ] = ACTIONS(739), + [anon_sym_EQ_EQ] = ACTIONS(756), + [anon_sym_EQ_EQ_EQ] = ACTIONS(739), + [anon_sym_BANG_EQ] = ACTIONS(756), + [anon_sym_BANG_EQ_EQ] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(739), + [anon_sym_QMARK_QMARK] = ACTIONS(756), + [anon_sym_instanceof] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(739), + [sym_automatic_semicolon] = ACTIONS(739), + [sym_ternary_qmark] = ACTIONS(739), + [sym_html_comment] = ACTIONS(5), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 10, - ACTIONS(3), 1, + [0] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(793), 1, - anon_sym_LPAREN, - ACTIONS(796), 1, - anon_sym_EQ, - ACTIONS(798), 1, - anon_sym_function, - ACTIONS(800), 1, - anon_sym_EQ_GT, - STATE(1412), 1, - sym_formal_parameters, - ACTIONS(791), 6, - anon_sym_export, - anon_sym_get, - anon_sym_set, - anon_sym_async, - anon_sym_static, - sym_identifier, - ACTIONS(707), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(677), 16, - sym_ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - 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(694), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [85] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(448), 19, - ts_builtin_sym_end, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(486), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(450), 44, + ACTIONS(488), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -28869,7 +35023,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -28879,12 +35032,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_catch, anon_sym_finally, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -28895,12 +35048,89 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [156] = 3, - ACTIONS(3), 1, + [71] = 12, + ACTIONS(839), 1, + anon_sym_LPAREN, + ACTIONS(842), 1, + anon_sym_EQ, + ACTIONS(844), 1, + anon_sym_function, + ACTIONS(846), 1, + anon_sym_EQ_GT, + ACTIONS(895), 1, + anon_sym_in, + ACTIONS(898), 1, + anon_sym_of, + STATE(1585), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(468), 19, - ts_builtin_sym_end, + ACTIONS(837), 7, + anon_sym_export, + anon_sym_let, + anon_sym_get, + anon_sym_set, + anon_sym_async, + anon_sym_static, + sym_identifier, + ACTIONS(739), 13, + sym_ternary_qmark, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(769), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(756), 20, anon_sym_STAR, + anon_sym_GT, + anon_sym_LT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [160] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(496), 18, + ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, @@ -28908,20 +35138,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(470), 44, + ACTIONS(498), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -28937,7 +35168,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -28947,12 +35177,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_catch, anon_sym_finally, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -28963,27 +35193,45 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [227] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(793), 1, + [231] = 11, + ACTIONS(839), 1, anon_sym_LPAREN, - ACTIONS(798), 1, + ACTIONS(842), 1, + anon_sym_EQ, + ACTIONS(844), 1, anon_sym_function, - ACTIONS(800), 1, + ACTIONS(846), 1, anon_sym_EQ_GT, - ACTIONS(802), 1, - anon_sym_EQ, - STATE(1412), 1, + STATE(1585), 1, sym_formal_parameters, - ACTIONS(791), 6, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(900), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(837), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, sym_identifier, - ACTIONS(707), 15, + ACTIONS(739), 11, + sym_ternary_qmark, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(769), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -28999,29 +35247,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(677), 16, - sym_ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - 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(694), 21, + ACTIONS(756), 21, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -29032,42 +35262,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [312] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(793), 1, - anon_sym_LPAREN, - ACTIONS(798), 1, - anon_sym_function, - ACTIONS(800), 1, + [318] = 10, + ACTIONS(767), 1, anon_sym_EQ_GT, - ACTIONS(807), 1, + ACTIONS(827), 1, anon_sym_EQ, - STATE(1412), 1, + ACTIONS(839), 1, + anon_sym_LPAREN, + ACTIONS(877), 1, + anon_sym_function, + STATE(1633), 1, sym_formal_parameters, - ACTIONS(804), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(791), 6, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(858), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, sym_identifier, - ACTIONS(677), 11, + ACTIONS(739), 13, + sym_automatic_semicolon, sym_ternary_qmark, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -29075,7 +35305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(707), 15, + ACTIONS(769), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -29091,12 +35321,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(694), 21, + ACTIONS(756), 21, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -29107,42 +35336,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [398] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(793), 1, + [402] = 12, + ACTIONS(839), 1, anon_sym_LPAREN, - ACTIONS(798), 1, + ACTIONS(844), 1, anon_sym_function, - ACTIONS(814), 1, - anon_sym_EQ, - ACTIONS(817), 1, + ACTIONS(846), 1, anon_sym_EQ_GT, - STATE(1340), 1, - sym_formal_parameters, - ACTIONS(812), 4, + ACTIONS(864), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(879), 1, anon_sym_RBRACK, - ACTIONS(810), 6, + ACTIONS(882), 1, + anon_sym_EQ, + STATE(1585), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(837), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, sym_identifier, - ACTIONS(677), 11, + ACTIONS(739), 11, sym_ternary_qmark, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -29150,7 +35381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(707), 15, + ACTIONS(769), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -29166,12 +35397,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(694), 21, + ACTIONS(756), 21, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -29182,44 +35412,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [484] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(705), 1, + [490] = 10, + ACTIONS(767), 1, anon_sym_EQ_GT, - ACTIONS(759), 1, + ACTIONS(819), 1, + anon_sym_function, + ACTIONS(827), 1, anon_sym_EQ, - ACTIONS(793), 1, + ACTIONS(839), 1, anon_sym_LPAREN, - ACTIONS(821), 1, - anon_sym_in, - ACTIONS(824), 1, - anon_sym_of, - ACTIONS(826), 1, - anon_sym_function, - STATE(1415), 1, + STATE(1633), 1, sym_formal_parameters, - ACTIONS(819), 6, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(858), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, sym_identifier, - ACTIONS(677), 14, + ACTIONS(739), 13, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -29227,7 +35455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(707), 15, + ACTIONS(769), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -29243,11 +35471,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(694), 20, + ACTIONS(756), 21, anon_sym_STAR, - anon_sym_LT, + anon_sym_in, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -29258,41 +35486,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [572] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(705), 1, - anon_sym_EQ_GT, - ACTIONS(793), 1, + [574] = 10, + ACTIONS(839), 1, anon_sym_LPAREN, - ACTIONS(796), 1, - anon_sym_EQ, - ACTIONS(826), 1, + ACTIONS(844), 1, anon_sym_function, - STATE(1415), 1, + ACTIONS(848), 1, + anon_sym_EQ, + ACTIONS(869), 1, + anon_sym_EQ_GT, + STATE(1628), 1, sym_formal_parameters, - ACTIONS(819), 6, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(862), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, sym_identifier, - ACTIONS(677), 15, - sym_automatic_semicolon, + ACTIONS(739), 13, sym_ternary_qmark, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -29300,7 +35529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(707), 15, + ACTIONS(769), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -29316,12 +35545,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(694), 21, + ACTIONS(756), 21, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -29332,116 +35560,246 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [656] = 11, - ACTIONS(3), 1, + [658] = 5, + ACTIONS(891), 1, + anon_sym_finally, + STATE(383), 1, + sym_finally_clause, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(705), 1, - anon_sym_EQ_GT, - ACTIONS(757), 1, - anon_sym_COLON, - ACTIONS(759), 1, - anon_sym_EQ, - ACTIONS(793), 1, + ACTIONS(903), 17, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(828), 1, - anon_sym_function, - STATE(1415), 1, - sym_formal_parameters, - ACTIONS(819), 6, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(905), 42, anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_class, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, sym_identifier, - ACTIONS(677), 14, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + [732] = 4, + ACTIONS(562), 1, sym_automatic_semicolon, - sym_ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(554), 17, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(707), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(694), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(556), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_get, + anon_sym_set, + anon_sym_async, + anon_sym_static, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_class, + anon_sym_function, + anon_sym_new, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [742] = 10, - ACTIONS(3), 1, + anon_sym_SLASH, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + [803] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(705), 1, - anon_sym_EQ_GT, - ACTIONS(759), 1, - anon_sym_EQ, - ACTIONS(793), 1, + ACTIONS(907), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(826), 1, - anon_sym_function, - STATE(1415), 1, - sym_formal_parameters, - ACTIONS(819), 6, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(909), 42, anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_class, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + [872] = 13, + ACTIONS(767), 1, + anon_sym_EQ_GT, + ACTIONS(825), 1, + anon_sym_COLON, + ACTIONS(827), 1, + anon_sym_EQ, + ACTIONS(871), 1, sym_identifier, - ACTIONS(677), 15, + ACTIONS(873), 1, + anon_sym_LBRACE, + ACTIONS(875), 1, + anon_sym_LBRACK, + STATE(1121), 1, + sym_destructuring_pattern, + STATE(1143), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1054), 2, + sym_object_pattern, + sym_array_pattern, + ACTIONS(739), 14, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -29449,7 +35807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(707), 15, + ACTIONS(769), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -29465,12 +35823,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(694), 21, + ACTIONS(756), 21, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -29481,173 +35838,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [826] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(793), 1, - anon_sym_LPAREN, - ACTIONS(826), 1, - anon_sym_function, - ACTIONS(832), 1, - anon_sym_EQ, - ACTIONS(834), 1, - anon_sym_EQ_GT, - STATE(1362), 1, - sym_formal_parameters, - ACTIONS(830), 6, - anon_sym_export, - anon_sym_get, - anon_sym_set, - anon_sym_async, - anon_sym_static, - sym_identifier, - ACTIONS(677), 14, + [961] = 4, + ACTIONS(542), 1, sym_automatic_semicolon, - sym_ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(534), 17, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(707), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(694), 22, - anon_sym_STAR, - anon_sym_in, - anon_sym_of, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [910] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(793), 1, - anon_sym_LPAREN, - ACTIONS(796), 1, - anon_sym_EQ, - ACTIONS(798), 1, - anon_sym_function, - ACTIONS(817), 1, - anon_sym_EQ_GT, - STATE(1340), 1, - sym_formal_parameters, - ACTIONS(836), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(810), 6, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(536), 42, anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, - sym_identifier, - ACTIONS(677), 11, - sym_ternary_qmark, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - 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(707), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(694), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_class, + anon_sym_function, + anon_sym_new, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [996] = 7, - ACTIONS(3), 1, + anon_sym_SLASH, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + [1032] = 4, + ACTIONS(532), 1, + sym_automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(842), 1, - anon_sym_catch, - ACTIONS(844), 1, - anon_sym_finally, - STATE(286), 1, - sym_catch_clause, - STATE(321), 1, - sym_finally_clause, - ACTIONS(838), 16, + ACTIONS(524), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -29655,19 +35926,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(840), 42, + ACTIONS(526), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -29683,7 +35956,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -29691,12 +35963,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -29707,110 +35979,167 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [1074] = 10, - ACTIONS(3), 1, + [1103] = 4, + ACTIONS(592), 1, + sym_automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(793), 1, + ACTIONS(584), 17, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(796), 1, - anon_sym_EQ, - ACTIONS(826), 1, - anon_sym_function, - ACTIONS(834), 1, - anon_sym_EQ_GT, - STATE(1362), 1, - sym_formal_parameters, - ACTIONS(830), 6, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(586), 42, anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_class, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, sym_identifier, - ACTIONS(677), 14, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + [1174] = 4, + ACTIONS(582), 1, sym_automatic_semicolon, - sym_ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(574), 17, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(707), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(694), 22, - anon_sym_STAR, - anon_sym_in, - anon_sym_of, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(576), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_get, + anon_sym_set, + anon_sym_async, + anon_sym_static, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_class, + anon_sym_function, + anon_sym_new, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [1158] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(705), 1, - anon_sym_EQ_GT, - ACTIONS(759), 1, - anon_sym_EQ, - ACTIONS(761), 1, - anon_sym_COLON, - ACTIONS(777), 1, - anon_sym_function, - ACTIONS(793), 1, + anon_sym_SLASH, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + [1245] = 10, + ACTIONS(839), 1, anon_sym_LPAREN, - STATE(1415), 1, + ACTIONS(844), 1, + anon_sym_function, + ACTIONS(913), 1, + anon_sym_EQ, + ACTIONS(915), 1, + anon_sym_EQ_GT, + STATE(1627), 1, sym_formal_parameters, - ACTIONS(819), 6, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(911), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, sym_identifier, - ACTIONS(677), 14, - sym_automatic_semicolon, + ACTIONS(739), 11, sym_ternary_qmark, - anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -29818,7 +36147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(707), 15, + ACTIONS(769), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -29834,12 +36163,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(694), 21, + ACTIONS(756), 22, anon_sym_STAR, anon_sym_in, - anon_sym_LT, + anon_sym_of, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -29850,41 +36179,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [1244] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(793), 1, + [1328] = 12, + ACTIONS(839), 1, anon_sym_LPAREN, - ACTIONS(798), 1, + ACTIONS(844), 1, anon_sym_function, - ACTIONS(800), 1, - anon_sym_EQ_GT, - ACTIONS(802), 1, + ACTIONS(848), 1, anon_sym_EQ, - STATE(1412), 1, + ACTIONS(869), 1, + anon_sym_EQ_GT, + ACTIONS(895), 1, + anon_sym_in, + ACTIONS(898), 1, + anon_sym_of, + STATE(1628), 1, sym_formal_parameters, - ACTIONS(846), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(791), 6, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(862), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, sym_identifier, - ACTIONS(677), 11, + ACTIONS(739), 11, sym_ternary_qmark, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -29892,7 +36224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(707), 15, + ACTIONS(769), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -29908,12 +36240,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(694), 21, + ACTIONS(756), 20, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -29924,39 +36254,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [1329] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(793), 1, + [1415] = 10, + ACTIONS(839), 1, anon_sym_LPAREN, - ACTIONS(796), 1, - anon_sym_EQ, - ACTIONS(798), 1, + ACTIONS(844), 1, anon_sym_function, - ACTIONS(817), 1, + ACTIONS(848), 1, + anon_sym_EQ, + ACTIONS(915), 1, anon_sym_EQ_GT, - STATE(1340), 1, + STATE(1627), 1, sym_formal_parameters, - ACTIONS(810), 6, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(911), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, sym_identifier, - ACTIONS(677), 13, + ACTIONS(739), 11, sym_ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -29964,7 +36295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(707), 15, + ACTIONS(769), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -29980,12 +36311,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(694), 21, + ACTIONS(756), 22, anon_sym_STAR, anon_sym_in, - anon_sym_LT, + anon_sym_of, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -29996,20 +36327,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [1411] = 5, - ACTIONS(3), 1, + [1498] = 5, + ACTIONS(921), 1, + anon_sym_else, + STATE(395), 1, + sym_else_clause, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(844), 1, - anon_sym_finally, - STATE(349), 1, - sym_finally_clause, - ACTIONS(849), 16, + ACTIONS(917), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -30017,23 +36350,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(851), 42, + ACTIONS(919), 41, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -30045,7 +36379,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -30053,12 +36386,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -30069,33 +36402,37 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [1483] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(705), 1, + [1571] = 13, + ACTIONS(767), 1, anon_sym_EQ_GT, - ACTIONS(759), 1, + ACTIONS(827), 1, anon_sym_EQ, - ACTIONS(777), 1, - anon_sym_function, - ACTIONS(793), 1, - anon_sym_LPAREN, - STATE(1415), 1, - sym_formal_parameters, - ACTIONS(819), 6, - anon_sym_export, - anon_sym_get, - anon_sym_set, - anon_sym_async, - anon_sym_static, + ACTIONS(829), 1, + anon_sym_COLON, + ACTIONS(871), 1, sym_identifier, - ACTIONS(677), 13, + ACTIONS(873), 1, + anon_sym_LBRACE, + ACTIONS(875), 1, + anon_sym_LBRACK, + STATE(1121), 1, + sym_destructuring_pattern, + STATE(1143), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1054), 2, + sym_object_pattern, + sym_array_pattern, + ACTIONS(739), 14, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -30103,7 +36440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(707), 15, + ACTIONS(769), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -30119,12 +36456,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(694), 21, + ACTIONS(756), 21, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -30135,184 +36471,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [1565] = 10, - ACTIONS(3), 1, + [1660] = 4, + ACTIONS(923), 1, + sym_automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(705), 1, - anon_sym_EQ_GT, - ACTIONS(759), 1, - anon_sym_EQ, - ACTIONS(793), 1, + ACTIONS(496), 17, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(828), 1, - anon_sym_function, - STATE(1415), 1, - sym_formal_parameters, - ACTIONS(819), 6, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(498), 42, anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_class, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, sym_identifier, - ACTIONS(677), 13, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + [1731] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(482), 18, sym_automatic_semicolon, - sym_ternary_qmark, + ts_builtin_sym_end, anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(707), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(694), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [1647] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(793), 1, - anon_sym_LPAREN, - ACTIONS(798), 1, - anon_sym_function, - ACTIONS(800), 1, - anon_sym_EQ_GT, - ACTIONS(804), 1, - anon_sym_RBRACK, - ACTIONS(807), 1, - anon_sym_EQ, - ACTIONS(812), 1, - anon_sym_COMMA, - STATE(1412), 1, - sym_formal_parameters, - ACTIONS(791), 6, - anon_sym_export, - anon_sym_get, - anon_sym_set, - anon_sym_async, - anon_sym_static, - sym_identifier, - ACTIONS(677), 11, - sym_ternary_qmark, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - 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(707), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(694), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [1733] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(558), 1, - sym_automatic_semicolon, - ACTIONS(550), 16, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - 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, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(552), 42, + ACTIONS(484), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -30328,7 +36588,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -30336,12 +36595,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -30352,12 +36611,12 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [1802] = 4, - ACTIONS(3), 1, + [1800] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(518), 1, + ACTIONS(486), 18, sym_automatic_semicolon, - ACTIONS(510), 16, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -30365,19 +36624,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(512), 42, + ACTIONS(488), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -30393,7 +36654,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -30401,12 +36661,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -30417,31 +36677,35 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [1871] = 3, - ACTIONS(3), 1, + [1869] = 4, + ACTIONS(925), 1, + sym_automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(853), 17, + ACTIONS(490), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(855), 42, + ACTIONS(492), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -30457,7 +36721,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -30465,12 +36728,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -30481,12 +36744,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [1938] = 4, - ACTIONS(3), 1, + [1940] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(538), 1, - sym_automatic_semicolon, - ACTIONS(530), 16, + ACTIONS(927), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -30494,19 +36756,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(532), 42, + ACTIONS(929), 43, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -30522,20 +36786,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_case, + anon_sym_finally, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -30546,30 +36810,35 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [2007] = 3, - ACTIONS(3), 1, + [2009] = 4, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(857), 16, - ts_builtin_sym_end, + ACTIONS(935), 2, + sym_automatic_semicolon, anon_sym_SEMI, + ACTIONS(931), 16, + ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(859), 43, + ACTIONS(933), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -30585,21 +36854,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_case, - anon_sym_finally, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -30610,12 +36877,12 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [2074] = 4, - ACTIONS(3), 1, + [2080] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(548), 1, + ACTIONS(502), 18, sym_automatic_semicolon, - ACTIONS(540), 16, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -30623,19 +36890,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(542), 42, + ACTIONS(504), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -30651,7 +36920,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -30659,12 +36927,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -30675,104 +36943,33 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [2143] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(793), 1, - anon_sym_LPAREN, - ACTIONS(796), 1, - anon_sym_EQ, - ACTIONS(798), 1, - anon_sym_function, - ACTIONS(817), 1, - anon_sym_EQ_GT, - ACTIONS(821), 1, - anon_sym_in, - ACTIONS(824), 1, - anon_sym_of, - STATE(1340), 1, - sym_formal_parameters, - ACTIONS(810), 6, - anon_sym_export, - anon_sym_get, - anon_sym_set, - anon_sym_async, - anon_sym_static, - sym_identifier, - ACTIONS(677), 11, - sym_ternary_qmark, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - 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(707), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(694), 20, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [2228] = 3, - ACTIONS(3), 1, + [2149] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(861), 17, + ACTIONS(937), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(863), 42, + ACTIONS(939), 43, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -30788,20 +36985,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_case, + anon_sym_finally, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -30812,12 +37009,12 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [2295] = 4, - ACTIONS(3), 1, + [2218] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(528), 1, + ACTIONS(941), 18, sym_automatic_semicolon, - ACTIONS(520), 16, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -30825,19 +37022,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(522), 42, + ACTIONS(943), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -30853,7 +37052,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -30861,12 +37059,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -30877,12 +37075,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [2364] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(865), 1, + [2287] = 4, + ACTIONS(552), 1, sym_automatic_semicolon, - ACTIONS(448), 16, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(544), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -30890,19 +37089,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(450), 42, + ACTIONS(546), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -30918,7 +37119,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -30926,12 +37126,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -30942,14 +37142,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [2433] = 5, - ACTIONS(3), 1, + [2358] = 4, + ACTIONS(522), 1, + sym_automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(871), 1, - anon_sym_else, - STATE(352), 1, - sym_else_clause, - ACTIONS(867), 16, + ACTIONS(514), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -30957,22 +37156,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(869), 41, + ACTIONS(516), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -30984,7 +37186,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -30992,12 +37193,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -31008,12 +37209,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [2504] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(498), 1, + [2429] = 4, + ACTIONS(572), 1, sym_automatic_semicolon, - ACTIONS(490), 16, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(564), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -31021,19 +37223,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(492), 42, + ACTIONS(566), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -31049,7 +37253,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -31057,12 +37260,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -31073,10 +37276,12 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [2573] = 3, - ACTIONS(3), 1, + [2500] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(873), 16, + ACTIONS(496), 18, + sym_automatic_semicolon, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -31084,19 +37289,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(875), 43, + ACTIONS(498), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -31112,21 +37319,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_case, - anon_sym_finally, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -31137,83 +37342,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [2640] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(793), 1, - anon_sym_LPAREN, - ACTIONS(796), 1, - anon_sym_EQ, - ACTIONS(798), 1, - anon_sym_function, - ACTIONS(879), 1, - anon_sym_EQ_GT, - STATE(1420), 1, - sym_formal_parameters, - ACTIONS(877), 6, - anon_sym_export, - anon_sym_get, - anon_sym_set, - anon_sym_async, - anon_sym_static, - sym_identifier, - ACTIONS(677), 11, - sym_ternary_qmark, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - 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(707), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(694), 22, - anon_sym_STAR, - anon_sym_in, - anon_sym_of, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [2721] = 4, - ACTIONS(3), 1, + [2569] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(508), 1, - sym_automatic_semicolon, - ACTIONS(500), 16, + ACTIONS(945), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -31221,19 +37354,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(502), 42, + ACTIONS(947), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -31249,7 +37384,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -31257,12 +37391,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -31273,12 +37407,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [2790] = 4, - ACTIONS(3), 1, + [2637] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(488), 1, - sym_automatic_semicolon, - ACTIONS(480), 16, + ACTIONS(949), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -31286,19 +37419,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(482), 42, + ACTIONS(951), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -31314,7 +37449,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -31322,12 +37456,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -31338,11 +37472,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [2859] = 3, - ACTIONS(3), 1, + [2705] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(476), 17, - sym_automatic_semicolon, + ACTIONS(953), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -31350,19 +37484,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(478), 42, + ACTIONS(955), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -31378,7 +37514,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -31386,12 +37521,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -31402,11 +37537,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [2926] = 3, - ACTIONS(3), 1, + [2773] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(472), 17, - sym_automatic_semicolon, + ACTIONS(957), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -31414,19 +37549,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(474), 42, + ACTIONS(959), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -31442,7 +37579,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -31450,12 +37586,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -31466,11 +37602,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [2993] = 3, - ACTIONS(3), 1, + [2841] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(448), 17, - sym_automatic_semicolon, + ACTIONS(961), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -31478,19 +37614,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(450), 42, + ACTIONS(963), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -31506,7 +37644,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -31514,12 +37651,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -31530,12 +37667,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [3060] = 4, - ACTIONS(3), 1, + [2909] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(881), 1, - sym_automatic_semicolon, - ACTIONS(454), 16, + ACTIONS(965), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -31543,19 +37679,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(456), 42, + ACTIONS(967), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -31571,7 +37709,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -31579,12 +37716,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -31595,11 +37732,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [3129] = 3, - ACTIONS(3), 1, + [2977] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(468), 17, - sym_automatic_semicolon, + ACTIONS(969), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -31607,19 +37744,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(470), 42, + ACTIONS(971), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -31635,7 +37774,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -31643,12 +37781,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -31659,81 +37797,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [3196] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(793), 1, - anon_sym_LPAREN, - ACTIONS(798), 1, - anon_sym_function, - ACTIONS(879), 1, - anon_sym_EQ_GT, - ACTIONS(883), 1, - anon_sym_EQ, - STATE(1420), 1, - sym_formal_parameters, - ACTIONS(877), 6, - anon_sym_export, - anon_sym_get, - anon_sym_set, - anon_sym_async, - anon_sym_static, - sym_identifier, - ACTIONS(677), 11, - sym_ternary_qmark, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - 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(707), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(694), 22, - anon_sym_STAR, - anon_sym_in, - anon_sym_of, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [3277] = 3, - ACTIONS(3), 1, + [3045] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(885), 16, + ACTIONS(973), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -31741,19 +37809,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(887), 42, + ACTIONS(975), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -31769,7 +37839,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -31777,12 +37846,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -31793,10 +37862,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [3343] = 3, - ACTIONS(3), 1, + [3113] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(889), 16, + ACTIONS(977), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -31804,19 +37874,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(891), 42, + ACTIONS(979), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -31832,7 +37904,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -31840,12 +37911,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -31856,10 +37927,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [3409] = 3, - ACTIONS(3), 1, + [3181] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(893), 16, + ACTIONS(977), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -31867,19 +37939,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(895), 42, + ACTIONS(979), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -31895,7 +37969,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -31903,12 +37976,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -31919,10 +37992,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [3475] = 3, - ACTIONS(3), 1, + [3249] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(897), 16, + ACTIONS(981), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -31930,19 +38004,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(899), 42, + ACTIONS(983), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -31958,7 +38034,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -31966,12 +38041,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -31982,10 +38057,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [3541] = 3, - ACTIONS(3), 1, + [3317] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(901), 16, + ACTIONS(985), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -31993,19 +38069,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(903), 42, + ACTIONS(987), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -32021,7 +38099,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -32029,12 +38106,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -32045,10 +38122,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [3607] = 3, - ACTIONS(3), 1, + [3385] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(905), 16, + ACTIONS(989), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -32056,19 +38134,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(907), 42, + ACTIONS(991), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -32084,7 +38164,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -32092,12 +38171,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -32108,10 +38187,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [3673] = 3, - ACTIONS(3), 1, + [3453] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(909), 16, + ACTIONS(993), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -32119,19 +38199,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(911), 42, + ACTIONS(995), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -32147,7 +38229,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -32155,12 +38236,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -32171,10 +38252,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [3739] = 3, - ACTIONS(3), 1, + [3521] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(913), 16, + ACTIONS(997), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -32182,19 +38264,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(915), 42, + ACTIONS(999), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -32210,7 +38294,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -32218,12 +38301,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -32234,10 +38317,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [3805] = 3, - ACTIONS(3), 1, + [3589] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(917), 16, + ACTIONS(1001), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -32245,19 +38329,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(919), 42, + ACTIONS(1003), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -32273,7 +38359,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -32281,12 +38366,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -32297,10 +38382,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [3871] = 3, - ACTIONS(3), 1, + [3657] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(921), 16, + ACTIONS(1005), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -32308,19 +38394,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(923), 42, + ACTIONS(1007), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -32336,7 +38424,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -32344,12 +38431,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -32360,10 +38447,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [3937] = 3, - ACTIONS(3), 1, + [3725] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(925), 16, + ACTIONS(1009), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -32371,19 +38459,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(927), 42, + ACTIONS(1011), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -32399,7 +38489,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -32407,12 +38496,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -32423,10 +38512,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [4003] = 3, - ACTIONS(3), 1, + [3793] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(929), 16, + ACTIONS(1013), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -32434,19 +38524,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(931), 42, + ACTIONS(1015), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -32462,7 +38554,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -32470,12 +38561,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -32486,10 +38577,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [4069] = 3, - ACTIONS(3), 1, + [3861] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(933), 16, + ACTIONS(1017), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -32497,19 +38589,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(935), 42, + ACTIONS(1019), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -32525,7 +38619,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -32533,12 +38626,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -32549,10 +38642,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [4135] = 3, - ACTIONS(3), 1, + [3929] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(937), 16, + ACTIONS(1021), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -32560,19 +38654,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(939), 42, + ACTIONS(1023), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -32588,7 +38684,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -32596,12 +38691,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -32612,10 +38707,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [4201] = 3, - ACTIONS(3), 1, + [3997] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(941), 16, + ACTIONS(1025), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -32623,19 +38719,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(943), 42, + ACTIONS(1027), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -32651,7 +38749,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -32659,12 +38756,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -32675,10 +38772,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [4267] = 3, - ACTIONS(3), 1, + [4065] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(945), 16, + ACTIONS(1029), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -32686,19 +38784,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(947), 42, + ACTIONS(1031), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -32714,7 +38814,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -32722,12 +38821,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -32738,10 +38837,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [4333] = 3, - ACTIONS(3), 1, + [4133] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(949), 16, + ACTIONS(1033), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -32749,19 +38849,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(951), 42, + ACTIONS(1035), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -32777,7 +38879,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -32785,12 +38886,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -32801,10 +38902,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [4399] = 3, - ACTIONS(3), 1, + [4201] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(885), 16, + ACTIONS(1037), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -32812,19 +38914,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(887), 42, + ACTIONS(1039), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -32840,7 +38944,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -32848,12 +38951,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -32864,10 +38967,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [4465] = 3, - ACTIONS(3), 1, + [4269] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(953), 16, + ACTIONS(1041), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -32875,19 +38979,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(955), 42, + ACTIONS(1043), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -32903,7 +39009,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -32911,12 +39016,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -32927,10 +39032,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [4531] = 3, - ACTIONS(3), 1, + [4337] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(957), 16, + ACTIONS(1045), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -32938,19 +39044,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(959), 42, + ACTIONS(1047), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -32966,7 +39074,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -32974,12 +39081,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -32990,10 +39097,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [4597] = 3, - ACTIONS(3), 1, + [4405] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(961), 16, + ACTIONS(1049), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -33001,19 +39109,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(963), 42, + ACTIONS(1051), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -33029,7 +39139,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -33037,12 +39146,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -33053,10 +39162,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [4663] = 3, - ACTIONS(3), 1, + [4473] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(965), 16, + ACTIONS(1053), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -33064,19 +39174,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(967), 42, + ACTIONS(1055), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -33092,7 +39204,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -33100,12 +39211,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -33116,10 +39227,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [4729] = 3, - ACTIONS(3), 1, + [4541] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(969), 16, + ACTIONS(1057), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -33127,19 +39239,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(971), 42, + ACTIONS(1059), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -33155,7 +39269,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -33163,12 +39276,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -33179,10 +39292,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [4795] = 3, - ACTIONS(3), 1, + [4609] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(973), 16, + ACTIONS(1061), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -33190,19 +39304,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(975), 42, + ACTIONS(1063), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -33218,7 +39334,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -33226,12 +39341,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -33242,10 +39357,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [4861] = 3, - ACTIONS(3), 1, + [4677] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(977), 16, + ACTIONS(1065), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -33253,19 +39369,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(979), 42, + ACTIONS(1067), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -33281,7 +39399,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -33289,12 +39406,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -33305,10 +39422,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [4927] = 3, - ACTIONS(3), 1, + [4745] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(981), 16, + ACTIONS(1069), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -33316,19 +39434,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(983), 42, + ACTIONS(1071), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -33344,7 +39464,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -33352,12 +39471,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -33368,10 +39487,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [4993] = 3, - ACTIONS(3), 1, + [4813] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(985), 16, + ACTIONS(1073), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -33379,19 +39499,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(987), 42, + ACTIONS(1075), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -33407,7 +39529,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -33415,12 +39536,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -33431,10 +39552,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [5059] = 3, - ACTIONS(3), 1, + [4881] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(989), 16, + ACTIONS(1077), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -33442,19 +39564,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(991), 42, + ACTIONS(1079), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -33470,7 +39594,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -33478,12 +39601,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -33494,10 +39617,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [5125] = 3, - ACTIONS(3), 1, + [4949] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(993), 16, + ACTIONS(1081), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -33505,19 +39629,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(995), 42, + ACTIONS(1083), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -33533,7 +39659,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -33541,12 +39666,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -33557,10 +39682,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [5191] = 3, - ACTIONS(3), 1, + [5017] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(997), 16, + ACTIONS(1085), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -33568,19 +39694,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(999), 42, + ACTIONS(1087), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -33596,7 +39724,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -33604,12 +39731,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -33620,10 +39747,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [5257] = 3, - ACTIONS(3), 1, + [5085] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1001), 16, + ACTIONS(1089), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -33631,19 +39759,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(1003), 42, + ACTIONS(1091), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -33659,7 +39789,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -33667,12 +39796,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -33683,10 +39812,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [5323] = 3, - ACTIONS(3), 1, + [5153] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1005), 16, + ACTIONS(1093), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -33694,19 +39824,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(1007), 42, + ACTIONS(1095), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -33722,7 +39854,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -33730,12 +39861,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -33746,10 +39877,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [5389] = 3, - ACTIONS(3), 1, + [5221] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1009), 16, + ACTIONS(1097), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -33757,19 +39889,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(1011), 42, + ACTIONS(1099), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -33785,7 +39919,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -33793,12 +39926,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -33809,10 +39942,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [5455] = 3, - ACTIONS(3), 1, + [5289] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1013), 16, + ACTIONS(1101), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -33820,19 +39954,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(1015), 42, + ACTIONS(1103), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -33848,7 +39984,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -33856,12 +39991,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -33872,10 +40007,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [5521] = 3, - ACTIONS(3), 1, + [5357] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1017), 16, + ACTIONS(1105), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -33883,19 +40019,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(1019), 42, + ACTIONS(1107), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -33911,7 +40049,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -33919,12 +40056,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -33935,10 +40072,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [5587] = 3, - ACTIONS(3), 1, + [5425] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1021), 16, + ACTIONS(1109), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -33946,19 +40084,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(1023), 42, + ACTIONS(1111), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -33974,7 +40114,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -33982,12 +40121,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -33998,10 +40137,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [5653] = 3, - ACTIONS(3), 1, + [5493] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1025), 16, + ACTIONS(1113), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -34009,19 +40149,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(1027), 42, + ACTIONS(1115), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -34037,7 +40179,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -34045,12 +40186,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -34061,10 +40202,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [5719] = 3, - ACTIONS(3), 1, + [5561] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1029), 16, + ACTIONS(1117), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -34072,19 +40214,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(1031), 42, + ACTIONS(1119), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -34100,7 +40244,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -34108,12 +40251,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -34124,10 +40267,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [5785] = 3, - ACTIONS(3), 1, + [5629] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1033), 16, + ACTIONS(1121), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -34135,19 +40279,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(1035), 42, + ACTIONS(1123), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -34163,7 +40309,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -34171,12 +40316,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -34187,10 +40332,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [5851] = 3, - ACTIONS(3), 1, + [5697] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1037), 16, + ACTIONS(1125), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -34198,19 +40344,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(1039), 42, + ACTIONS(1127), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -34226,7 +40374,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -34234,12 +40381,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -34250,10 +40397,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [5917] = 3, - ACTIONS(3), 1, + [5765] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1041), 16, + ACTIONS(1129), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -34261,19 +40409,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(1043), 42, + ACTIONS(1131), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -34289,7 +40439,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -34297,12 +40446,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -34313,10 +40462,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [5983] = 3, - ACTIONS(3), 1, + [5833] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1045), 16, + ACTIONS(1133), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -34324,19 +40474,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(1047), 42, + ACTIONS(1135), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -34352,7 +40504,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -34360,12 +40511,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -34376,10 +40527,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [6049] = 3, - ACTIONS(3), 1, + [5901] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1049), 16, + ACTIONS(1137), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -34387,19 +40539,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(1051), 42, + ACTIONS(1139), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -34415,7 +40569,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -34423,12 +40576,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -34439,10 +40592,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [6115] = 3, - ACTIONS(3), 1, + [5969] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1053), 16, + ACTIONS(1141), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -34450,19 +40604,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(1055), 42, + ACTIONS(1143), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -34478,7 +40634,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -34486,12 +40641,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -34502,10 +40657,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [6181] = 3, - ACTIONS(3), 1, + [6037] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1057), 16, + ACTIONS(1145), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -34513,19 +40669,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(1059), 42, + ACTIONS(1147), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -34541,7 +40699,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -34549,12 +40706,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -34565,10 +40722,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [6247] = 3, - ACTIONS(3), 1, + [6105] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1061), 16, + ACTIONS(1149), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -34576,19 +40734,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(1063), 42, + ACTIONS(1151), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -34604,7 +40764,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -34612,12 +40771,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -34628,10 +40787,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [6313] = 3, - ACTIONS(3), 1, + [6173] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1065), 16, + ACTIONS(1153), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -34639,19 +40799,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(1067), 42, + ACTIONS(1155), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -34667,7 +40829,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -34675,12 +40836,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -34691,10 +40852,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [6379] = 3, - ACTIONS(3), 1, + [6241] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1069), 16, + ACTIONS(1157), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -34702,19 +40864,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(1071), 42, + ACTIONS(1159), 42, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -34730,7 +40894,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -34738,12 +40901,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -34754,40 +40917,46 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [6445] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(689), 1, - anon_sym_LPAREN, - ACTIONS(696), 1, - anon_sym_COLON, - ACTIONS(699), 1, + [6309] = 14, + ACTIONS(842), 1, anon_sym_EQ, - ACTIONS(705), 1, + ACTIONS(846), 1, anon_sym_EQ_GT, - ACTIONS(709), 1, - anon_sym_RBRACE, - STATE(1142), 1, - aux_sym_object_pattern_repeat1, - STATE(1146), 1, - aux_sym_object_repeat1, - ACTIONS(677), 15, - sym_automatic_semicolon, + ACTIONS(873), 1, + anon_sym_LBRACE, + ACTIONS(875), 1, + anon_sym_LBRACK, + ACTIONS(895), 1, + anon_sym_in, + ACTIONS(898), 1, + anon_sym_of, + ACTIONS(1161), 1, + sym_identifier, + STATE(1021), 1, + sym_destructuring_pattern, + STATE(1143), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1054), 2, + sym_object_pattern, + sym_array_pattern, + ACTIONS(739), 13, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(707), 15, + ACTIONS(769), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -34803,12 +40972,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(694), 20, + ACTIONS(756), 20, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -34819,45 +40986,244 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6526] = 11, - ACTIONS(3), 1, + anon_sym_instanceof, + [6399] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(683), 1, + ACTIONS(1163), 17, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(689), 1, anon_sym_LPAREN, - ACTIONS(696), 1, - anon_sym_COLON, - ACTIONS(699), 1, - anon_sym_EQ, - ACTIONS(705), 1, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1165), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_get, + anon_sym_set, + anon_sym_async, + anon_sym_static, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_class, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + [6467] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1167), 17, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1169), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_get, + anon_sym_set, + anon_sym_async, + anon_sym_static, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_class, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + [6535] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1171), 17, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1173), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_get, + anon_sym_set, + anon_sym_async, + anon_sym_static, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_class, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + [6603] = 12, + ACTIONS(767), 1, anon_sym_EQ_GT, - STATE(1137), 1, - aux_sym_object_repeat1, - STATE(1142), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(677), 15, + ACTIONS(827), 1, + anon_sym_EQ, + ACTIONS(871), 1, + sym_identifier, + ACTIONS(873), 1, + anon_sym_LBRACE, + ACTIONS(875), 1, + anon_sym_LBRACK, + STATE(1121), 1, + sym_destructuring_pattern, + STATE(1143), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1054), 2, + sym_object_pattern, + sym_array_pattern, + ACTIONS(739), 13, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(707), 15, + ACTIONS(769), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -34873,12 +41239,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(694), 20, + ACTIONS(756), 21, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -34889,36 +41254,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6607] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(689), 1, + anon_sym_instanceof, + [6688] = 11, + ACTIONS(751), 1, anon_sym_LPAREN, - ACTIONS(696), 1, + ACTIONS(758), 1, anon_sym_COLON, - ACTIONS(699), 1, + ACTIONS(761), 1, anon_sym_EQ, - ACTIONS(705), 1, + ACTIONS(767), 1, anon_sym_EQ_GT, - ACTIONS(711), 1, + ACTIONS(777), 1, anon_sym_RBRACE, - STATE(1142), 1, + STATE(1241), 1, aux_sym_object_pattern_repeat1, - STATE(1146), 1, + STATE(1275), 1, aux_sym_object_repeat1, - ACTIONS(677), 15, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(739), 15, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -34927,7 +41295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(707), 15, + ACTIONS(769), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -34943,12 +41311,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(694), 20, + ACTIONS(756), 20, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -34959,21 +41326,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6688] = 3, - ACTIONS(3), 1, + [6770] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1073), 21, + ACTIONS(1175), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -34984,13 +41352,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1075), 35, + ACTIONS(1177), 36, sym_ternary_qmark, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -35001,7 +41371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -35025,12 +41395,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [6752] = 5, - ACTIONS(3), 1, + [6836] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(796), 1, + ACTIONS(1179), 21, + anon_sym_STAR, + anon_sym_in, anon_sym_EQ, - ACTIONS(707), 15, + anon_sym_GT, + anon_sym_LT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(1181), 36, + sym_ternary_qmark, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -35046,19 +41450,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(677), 20, - sym_ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -35067,12 +41458,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(694), 20, + [6902] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1183), 21, anon_sym_STAR, anon_sym_in, - anon_sym_LT, + anon_sym_EQ, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -35083,21 +41478,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6820] = 3, - ACTIONS(3), 1, + ACTIONS(1185), 36, + sym_ternary_qmark, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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, + [6968] = 5, + ACTIONS(848), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1077), 21, + ACTIONS(769), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(756), 20, anon_sym_STAR, anon_sym_in, - anon_sym_EQ, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -35108,13 +41558,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1079), 35, + ACTIONS(739), 21, sym_ternary_qmark, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -35125,7 +41577,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [7038] = 11, + ACTIONS(751), 1, + anon_sym_LPAREN, + ACTIONS(758), 1, + anon_sym_COLON, + ACTIONS(761), 1, + anon_sym_EQ, + ACTIONS(767), 1, + anon_sym_EQ_GT, + ACTIONS(775), 1, + anon_sym_RBRACE, + STATE(1241), 1, + aux_sym_object_pattern_repeat1, + STATE(1275), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(739), 15, + sym_automatic_semicolon, + sym_ternary_qmark, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(769), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -35141,24 +41636,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [6884] = 3, - ACTIONS(3), 1, + ACTIONS(756), 20, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [7120] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1081), 21, + ACTIONS(1187), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -35169,13 +41677,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1083), 35, + ACTIONS(1189), 36, sym_ternary_qmark, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -35186,7 +41696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -35210,16 +41720,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [6948] = 3, - ACTIONS(3), 1, + [7186] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1085), 21, + ACTIONS(943), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -35230,13 +41740,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1087), 35, + ACTIONS(941), 36, sym_ternary_qmark, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -35247,7 +41759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -35271,14 +41783,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [7012] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(800), 1, - anon_sym_EQ_GT, - ACTIONS(802), 1, + [7252] = 11, + ACTIONS(745), 1, + anon_sym_RBRACE, + ACTIONS(751), 1, + anon_sym_LPAREN, + ACTIONS(758), 1, + anon_sym_COLON, + ACTIONS(761), 1, anon_sym_EQ, - ACTIONS(707), 15, + ACTIONS(767), 1, + anon_sym_EQ_GT, + STATE(1239), 1, + aux_sym_object_repeat1, + STATE(1241), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(739), 15, + sym_automatic_semicolon, + sym_ternary_qmark, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(769), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -35294,31 +41833,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(677), 18, - sym_ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_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(694), 20, + ACTIONS(756), 20, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -35329,19 +41848,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7081] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(796), 1, - anon_sym_EQ, - ACTIONS(800), 1, + [7334] = 6, + ACTIONS(846), 1, anon_sym_EQ_GT, - ACTIONS(707), 15, + ACTIONS(848), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(769), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -35357,8 +41878,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(677), 18, + ACTIONS(739), 19, sym_ternary_qmark, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -35367,7 +41889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -35376,12 +41898,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(694), 20, + ACTIONS(756), 20, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -35392,158 +41913,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7150] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1085), 21, - anon_sym_STAR, - anon_sym_in, + [7405] = 13, + ACTIONS(848), 1, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(1087), 33, - sym_automatic_semicolon, - sym_ternary_qmark, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(869), 1, + anon_sym_EQ_GT, + ACTIONS(873), 1, + anon_sym_LBRACE, + ACTIONS(895), 1, + anon_sym_in, + ACTIONS(898), 1, anon_sym_of, + ACTIONS(1191), 1, + sym_identifier, + ACTIONS(1193), 1, anon_sym_LBRACK, - 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, - [7212] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(802), 1, - anon_sym_EQ, - ACTIONS(707), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(677), 18, - sym_ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_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(694), 20, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [7278] = 7, - ACTIONS(3), 1, + STATE(1283), 1, + sym_destructuring_pattern, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(796), 1, - anon_sym_EQ, - ACTIONS(817), 1, - anon_sym_EQ_GT, - ACTIONS(836), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(677), 13, + STATE(1054), 2, + sym_object_pattern, + sym_array_pattern, + ACTIONS(739), 11, sym_ternary_qmark, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(707), 15, + ACTIONS(769), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -35559,37 +41970,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(694), 20, + ACTIONS(756), 20, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [7348] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1081), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_EQ, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -35600,53 +41984,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1083), 33, - sym_automatic_semicolon, - sym_ternary_qmark, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_LBRACK, - 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, - [7410] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(796), 1, + [7490] = 6, + ACTIONS(842), 1, anon_sym_EQ, - ACTIONS(834), 1, + ACTIONS(846), 1, anon_sym_EQ_GT, - ACTIONS(707), 15, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(769), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -35662,16 +42015,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(677), 17, - sym_automatic_semicolon, + ACTIONS(739), 19, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -35680,12 +42035,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(694), 20, + ACTIONS(756), 20, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -35696,17 +42050,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7478] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(796), 1, + [7561] = 5, + ACTIONS(842), 1, anon_sym_EQ, - ACTIONS(707), 15, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(769), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -35722,17 +42078,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(677), 18, - sym_automatic_semicolon, + ACTIONS(739), 19, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -35741,12 +42098,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(694), 20, + ACTIONS(756), 20, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -35757,19 +42113,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7544] = 6, - ACTIONS(3), 1, + [7629] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(705), 1, + ACTIONS(1198), 15, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1196), 39, + anon_sym_export, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_get, + anon_sym_set, + anon_sym_async, + anon_sym_static, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_yield, + anon_sym_class, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + [7692] = 6, + ACTIONS(767), 1, anon_sym_EQ_GT, - ACTIONS(759), 1, + ACTIONS(848), 1, anon_sym_EQ, - ACTIONS(707), 15, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(769), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -35785,7 +42203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(677), 17, + ACTIONS(739), 17, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, @@ -35794,7 +42212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -35803,12 +42221,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(694), 20, + ACTIONS(756), 20, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -35819,59 +42236,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7612] = 7, - ACTIONS(3), 1, + [7761] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(814), 1, - anon_sym_EQ, - ACTIONS(817), 1, - anon_sym_EQ_GT, - ACTIONS(812), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(677), 13, - sym_ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_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(707), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(694), 20, + ACTIONS(1187), 21, anon_sym_STAR, anon_sym_in, - anon_sym_LT, + anon_sym_EQ, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -35882,21 +42262,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7682] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(705), 1, - anon_sym_EQ_GT, - ACTIONS(757), 1, - anon_sym_COLON, - ACTIONS(759), 1, - anon_sym_EQ, - ACTIONS(707), 15, + ACTIONS(1189), 33, + sym_automatic_semicolon, + sym_ternary_qmark, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -35912,15 +42294,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(677), 16, - sym_automatic_semicolon, - sym_ternary_qmark, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -35929,37 +42302,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(694), 20, - anon_sym_STAR, - anon_sym_in, + [7824] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(941), 15, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(943), 39, + anon_sym_export, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_get, + anon_sym_set, + anon_sym_async, + anon_sym_static, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_yield, + anon_sym_class, + anon_sym_function, + anon_sym_new, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [7752] = 3, - ACTIONS(3), 1, + anon_sym_SLASH, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + [7887] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1077), 21, + ACTIONS(1183), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -35970,12 +42382,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1079), 33, + ACTIONS(1185), 33, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, @@ -35985,7 +42398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -36009,16 +42422,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [7814] = 3, - ACTIONS(3), 1, + [7950] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1073), 21, + ACTIONS(1179), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -36029,12 +42442,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1075), 33, + ACTIONS(1181), 33, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, @@ -36044,7 +42458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -36068,14 +42482,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [7876] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(705), 1, - anon_sym_EQ_GT, - ACTIONS(796), 1, + [8013] = 5, + ACTIONS(848), 1, anon_sym_EQ, - ACTIONS(707), 15, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(769), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -36091,16 +42504,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(677), 17, + ACTIONS(739), 18, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -36109,75 +42523,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(694), 20, + ACTIONS(756), 20, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [7944] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(800), 1, - anon_sym_EQ_GT, - ACTIONS(807), 1, - anon_sym_EQ, - ACTIONS(804), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(677), 13, - sym_ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_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(707), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(694), 20, - anon_sym_STAR, - anon_sym_in, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -36188,23 +42538,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8014] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(705), 1, + [8080] = 7, + ACTIONS(767), 1, anon_sym_EQ_GT, - ACTIONS(759), 1, + ACTIONS(825), 1, + anon_sym_COLON, + ACTIONS(827), 1, anon_sym_EQ, - ACTIONS(821), 1, - anon_sym_in, - ACTIONS(1089), 1, - anon_sym_of, - ACTIONS(707), 15, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(769), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -36220,7 +42570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(677), 16, + ACTIONS(739), 16, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, @@ -36228,7 +42578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -36237,11 +42587,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(694), 19, + ACTIONS(756), 20, anon_sym_STAR, - anon_sym_LT, + anon_sym_in, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -36252,83 +42602,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8086] = 6, - ACTIONS(3), 1, + [8151] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(832), 1, - anon_sym_EQ, - ACTIONS(834), 1, - anon_sym_EQ_GT, - ACTIONS(707), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(677), 17, - sym_automatic_semicolon, - sym_ternary_qmark, + ACTIONS(1202), 15, anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(694), 20, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1200), 39, + anon_sym_export, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_get, + anon_sym_set, + anon_sym_async, + anon_sym_static, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_yield, + anon_sym_class, + anon_sym_function, + anon_sym_new, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [8154] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(705), 1, - anon_sym_EQ_GT, - ACTIONS(759), 1, + anon_sym_SLASH, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + [8214] = 7, + ACTIONS(848), 1, anon_sym_EQ, - ACTIONS(761), 1, - anon_sym_COLON, - ACTIONS(707), 15, + ACTIONS(869), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(893), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(739), 13, + sym_ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(769), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -36344,29 +42711,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(677), 16, - sym_automatic_semicolon, - sym_ternary_qmark, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_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(694), 20, + ACTIONS(756), 20, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -36377,90 +42726,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8224] = 3, - ACTIONS(3), 1, + [8285] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1093), 14, + ACTIONS(943), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(941), 33, + sym_automatic_semicolon, + sym_ternary_qmark, anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_BANG, - anon_sym_TILDE, + anon_sym_DOT, + sym_optional_chain, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - ACTIONS(1091), 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_get, - anon_sym_set, - anon_sym_async, - anon_sym_static, - anon_sym_while, - anon_sym_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_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, - [8285] = 3, - ACTIONS(3), 1, + [8348] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1097), 14, + ACTIONS(1206), 15, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(1095), 39, + ACTIONS(1204), 39, anon_sym_export, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -36475,19 +42830,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_yield, - anon_sym_SLASH, anon_sym_class, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, @@ -36498,51 +42852,16 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - [8346] = 5, - ACTIONS(3), 1, + [8411] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(759), 1, - anon_sym_EQ, - ACTIONS(707), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(677), 17, - sym_automatic_semicolon, - sym_ternary_qmark, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_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(694), 20, + ACTIONS(1175), 21, anon_sym_STAR, anon_sym_in, - anon_sym_LT, + anon_sym_EQ, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -36553,36 +42872,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8411] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(814), 1, - anon_sym_EQ, - ACTIONS(812), 4, + ACTIONS(1177), 33, + sym_automatic_semicolon, + sym_ternary_qmark, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(677), 13, - sym_ternary_qmark, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_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(707), 15, + sym_optional_chain, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -36598,12 +42904,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(694), 20, - anon_sym_STAR, + anon_sym_LT_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, + [8474] = 7, + ACTIONS(846), 1, + anon_sym_EQ_GT, + ACTIONS(882), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(879), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(739), 13, + sym_ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(769), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(756), 20, + anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -36614,21 +42970,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8478] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(759), 1, + [8545] = 6, + ACTIONS(848), 1, anon_sym_EQ, - ACTIONS(821), 1, - anon_sym_in, - ACTIONS(1089), 1, - anon_sym_of, - ACTIONS(707), 15, + ACTIONS(856), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(769), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -36644,15 +43000,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(677), 16, + ACTIONS(739), 17, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -36661,11 +43018,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(694), 19, + ACTIONS(756), 20, anon_sym_STAR, - anon_sym_LT, + anon_sym_in, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -36676,27 +43033,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8547] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(807), 1, + [8614] = 6, + ACTIONS(852), 1, anon_sym_EQ, - ACTIONS(804), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(677), 13, + ACTIONS(856), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(769), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(739), 17, + sym_automatic_semicolon, sym_ternary_qmark, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -36705,7 +43081,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(707), 15, + ACTIONS(756), 20, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [8683] = 7, + ACTIONS(767), 1, + anon_sym_EQ_GT, + ACTIONS(827), 1, + anon_sym_EQ, + ACTIONS(829), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(769), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -36721,12 +43128,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(694), 20, + ACTIONS(739), 16, + sym_automatic_semicolon, + sym_ternary_qmark, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(756), 20, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -36737,133 +43160,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8614] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1079), 14, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LPAREN, - 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, - ACTIONS(1077), 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_get, - anon_sym_set, - anon_sym_async, - anon_sym_static, - anon_sym_while, - anon_sym_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_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, - [8675] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1101), 14, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LPAREN, - 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, - ACTIONS(1099), 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_get, - anon_sym_set, - anon_sym_async, - anon_sym_static, - anon_sym_while, - anon_sym_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_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, - [8736] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(832), 1, + [8754] = 6, + ACTIONS(767), 1, + anon_sym_EQ_GT, + ACTIONS(827), 1, anon_sym_EQ, - ACTIONS(707), 15, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(769), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -36879,16 +43190,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(677), 17, + ACTIONS(739), 17, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -36897,12 +43208,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(694), 20, + ACTIONS(756), 20, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -36913,28 +43223,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8801] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(800), 1, - anon_sym_EQ_GT, - ACTIONS(802), 1, + [8823] = 7, + ACTIONS(866), 1, anon_sym_EQ, - ACTIONS(846), 3, + ACTIONS(869), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(864), 4, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(677), 13, + ACTIONS(739), 13, sym_ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -36943,7 +43256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(707), 15, + ACTIONS(769), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -36959,12 +43272,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(694), 20, + ACTIONS(756), 20, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -36975,27 +43287,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8870] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(796), 1, + [8894] = 6, + ACTIONS(848), 1, anon_sym_EQ, - ACTIONS(836), 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(893), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(677), 13, + ACTIONS(739), 13, sym_ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -37004,7 +43318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(707), 15, + ACTIONS(769), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -37020,12 +43334,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(694), 20, + ACTIONS(756), 20, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -37036,26 +43349,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8937] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(802), 1, + [8962] = 6, + ACTIONS(866), 1, anon_sym_EQ, - ACTIONS(846), 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(864), 4, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(677), 13, + ACTIONS(739), 13, sym_ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -37064,7 +43380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(707), 15, + ACTIONS(769), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -37080,12 +43396,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(694), 20, + ACTIONS(756), 20, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -37096,26 +43411,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9003] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(796), 1, + [9030] = 7, + ACTIONS(842), 1, anon_sym_EQ, - ACTIONS(817), 1, + ACTIONS(846), 1, anon_sym_EQ_GT, - ACTIONS(677), 15, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(900), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(739), 13, sym_ternary_qmark, - anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -37124,7 +43443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(707), 15, + ACTIONS(769), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -37140,12 +43459,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(694), 20, + ACTIONS(756), 20, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -37156,28 +43474,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9069] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(800), 1, - anon_sym_EQ_GT, - ACTIONS(804), 1, - anon_sym_RBRACK, - ACTIONS(807), 1, + [9100] = 8, + ACTIONS(842), 1, anon_sym_EQ, - ACTIONS(812), 1, - anon_sym_COMMA, - ACTIONS(677), 13, + ACTIONS(846), 1, + anon_sym_EQ_GT, + ACTIONS(895), 1, + anon_sym_in, + ACTIONS(1208), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(739), 15, sym_ternary_qmark, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -37186,7 +43508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(707), 15, + ACTIONS(769), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -37202,12 +43524,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(694), 20, + ACTIONS(756), 19, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -37218,28 +43538,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9139] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(796), 1, + [9172] = 6, + ACTIONS(882), 1, anon_sym_EQ, - ACTIONS(817), 1, - anon_sym_EQ_GT, - ACTIONS(821), 1, - anon_sym_in, - ACTIONS(1089), 1, - anon_sym_of, - ACTIONS(677), 13, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(879), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(739), 13, sym_ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -37248,7 +43569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(707), 15, + ACTIONS(769), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -37264,11 +43585,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(694), 19, + ACTIONS(756), 20, anon_sym_STAR, - anon_sym_LT, + anon_sym_in, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -37279,25 +43600,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9208] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(796), 1, + [9240] = 5, + ACTIONS(852), 1, anon_sym_EQ, - ACTIONS(879), 1, - anon_sym_EQ_GT, - ACTIONS(677), 14, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(769), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(739), 17, + sym_automatic_semicolon, sym_ternary_qmark, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -37306,7 +43646,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(707), 15, + ACTIONS(756), 20, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [9306] = 5, + ACTIONS(827), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(769), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -37322,12 +43689,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(694), 20, + ACTIONS(739), 17, + sym_automatic_semicolon, + sym_ternary_qmark, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(756), 20, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -37338,25 +43722,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9273] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(879), 1, - anon_sym_EQ_GT, - ACTIONS(883), 1, + [9372] = 7, + ACTIONS(842), 1, anon_sym_EQ, - ACTIONS(677), 14, + ACTIONS(895), 1, + anon_sym_in, + ACTIONS(1208), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(739), 15, sym_ternary_qmark, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -37365,7 +43754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(707), 15, + ACTIONS(769), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -37381,12 +43770,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(694), 20, + ACTIONS(756), 19, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -37397,26 +43784,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9338] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(804), 1, + [9441] = 8, + ACTIONS(846), 1, + anon_sym_EQ_GT, + ACTIONS(864), 1, + anon_sym_COMMA, + ACTIONS(879), 1, anon_sym_RBRACK, - ACTIONS(807), 1, + ACTIONS(882), 1, anon_sym_EQ, - ACTIONS(812), 1, - anon_sym_COMMA, - ACTIONS(677), 13, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(739), 13, sym_ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -37425,7 +43816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(707), 15, + ACTIONS(769), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -37441,12 +43832,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(694), 20, + ACTIONS(756), 20, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -37457,26 +43847,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9405] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(796), 1, + [9512] = 6, + ACTIONS(842), 1, anon_sym_EQ, - ACTIONS(821), 1, - anon_sym_in, - ACTIONS(1089), 1, - anon_sym_of, - ACTIONS(677), 13, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(900), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(739), 13, sym_ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -37485,7 +43877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(707), 15, + ACTIONS(769), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -37501,11 +43893,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(694), 19, + ACTIONS(756), 20, anon_sym_STAR, - anon_sym_LT, + anon_sym_in, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -37516,23 +43908,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9471] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(883), 1, + [9579] = 6, + ACTIONS(848), 1, anon_sym_EQ, - ACTIONS(677), 14, + ACTIONS(869), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(739), 15, sym_ternary_qmark, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -37541,7 +43938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(707), 15, + ACTIONS(769), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -37557,12 +43954,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(694), 20, + ACTIONS(756), 20, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -37573,205 +43969,407 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9533] = 11, - ACTIONS(3), 1, + [9646] = 7, + ACTIONS(864), 1, + anon_sym_COMMA, + ACTIONS(879), 1, + anon_sym_RBRACK, + ACTIONS(882), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1103), 1, - sym_identifier, - ACTIONS(1105), 1, + ACTIONS(739), 13, + sym_ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(769), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(756), 20, anon_sym_STAR, - ACTIONS(1109), 1, - anon_sym_LBRACE, - ACTIONS(1113), 1, - anon_sym_DQUOTE, - ACTIONS(1115), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_string, - STATE(1301), 1, - sym_import_clause, - STATE(1385), 2, - sym_namespace_import_export, - sym_named_imports, - ACTIONS(1111), 12, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, + anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(1107), 23, - sym_automatic_semicolon, + anon_sym_QMARK_QMARK, + [9714] = 8, + ACTIONS(848), 1, + anon_sym_EQ, + ACTIONS(869), 1, + anon_sym_EQ_GT, + ACTIONS(895), 1, + anon_sym_in, + ACTIONS(1208), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(739), 13, sym_ternary_qmark, - anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, 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, + sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [9601] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, - anon_sym_LPAREN, - ACTIONS(1123), 1, - anon_sym_LBRACK, - ACTIONS(1125), 1, - anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1117), 12, + ACTIONS(769), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(756), 19, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, + anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1119), 21, + anon_sym_QMARK_QMARK, + [9784] = 6, + ACTIONS(913), 1, + anon_sym_EQ, + ACTIONS(915), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(739), 14, sym_ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(769), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(756), 20, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [9850] = 6, + ACTIONS(848), 1, + anon_sym_EQ, + ACTIONS(915), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(739), 14, + sym_ternary_qmark, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [9665] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(462), 1, - anon_sym_EQ, - ACTIONS(1131), 1, - sym_automatic_semicolon, - ACTIONS(456), 12, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(769), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(756), 20, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, + anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(454), 28, + anon_sym_QMARK_QMARK, + [9916] = 7, + ACTIONS(848), 1, + anon_sym_EQ, + ACTIONS(895), 1, + anon_sym_in, + ACTIONS(1208), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(739), 13, sym_ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(769), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(756), 19, + anon_sym_STAR, + anon_sym_GT, + anon_sym_LT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [9983] = 5, + ACTIONS(913), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(739), 14, + sym_ternary_qmark, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [9719] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, + ACTIONS(769), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(756), 20, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [10046] = 10, + ACTIONS(382), 1, anon_sym_BQUOTE, - ACTIONS(1121), 1, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(438), 2, - sym_template_string, + ACTIONS(1220), 1, + sym_optional_chain, + STATE(471), 1, sym_arguments, - ACTIONS(1133), 12, + STATE(489), 1, + sym_template_string, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1210), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1135), 21, + ACTIONS(1212), 24, sym_ternary_qmark, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -37792,44 +44390,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [9783] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [10112] = 7, + ACTIONS(382), 1, anon_sym_BQUOTE, - ACTIONS(1121), 1, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, - anon_sym_LBRACK, - ACTIONS(1125), 1, - anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - STATE(438), 2, - sym_template_string, + STATE(471), 1, sym_arguments, - ACTIONS(1137), 12, + STATE(489), 1, + sym_template_string, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1210), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1139), 23, + ACTIONS(1212), 27, sym_ternary_qmark, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -37845,47 +44445,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - [9845] = 10, - ACTIONS(3), 1, + [10172] = 5, + ACTIONS(510), 1, + anon_sym_EQ, + ACTIONS(1222), 1, + sym_automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, - anon_sym_LPAREN, - ACTIONS(1123), 1, - anon_sym_LBRACK, - ACTIONS(1125), 1, - anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1141), 12, + ACTIONS(492), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1143), 21, + ACTIONS(490), 29, sym_ternary_qmark, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -37899,38 +44493,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [9909] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1121), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [10228] = 9, + ACTIONS(1214), 1, anon_sym_LPAREN, - STATE(450), 1, + ACTIONS(1216), 1, + anon_sym_LBRACK, + ACTIONS(1218), 1, + anon_sym_DOT, + ACTIONS(1228), 1, + sym_optional_chain, + STATE(487), 1, sym_arguments, - ACTIONS(1145), 12, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1224), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1147), 27, + ACTIONS(1226), 23, sym_ternary_qmark, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, 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, @@ -37944,40 +44549,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [9962] = 4, - ACTIONS(3), 1, + [10291] = 8, + ACTIONS(1214), 1, + anon_sym_LPAREN, + ACTIONS(1216), 1, + anon_sym_LBRACK, + ACTIONS(1218), 1, + anon_sym_DOT, + ACTIONS(1228), 1, + sym_optional_chain, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1131), 1, - sym_automatic_semicolon, - ACTIONS(456), 12, + ACTIONS(1232), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(454), 28, + ACTIONS(1234), 25, sym_ternary_qmark, + anon_sym_SEMI, 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, @@ -37994,38 +44603,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [10013] = 5, - ACTIONS(3), 1, + [10352] = 9, + ACTIONS(1214), 1, + anon_sym_LPAREN, + ACTIONS(1216), 1, + anon_sym_LBRACK, + ACTIONS(1218), 1, + anon_sym_DOT, + ACTIONS(1228), 1, + sym_optional_chain, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1156), 1, - anon_sym_EQ, - ACTIONS(1153), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1149), 12, + ACTIONS(1230), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1236), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1151), 24, + ACTIONS(1238), 23, sym_ternary_qmark, + anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -38039,44 +44656,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [10066] = 8, - ACTIONS(3), 1, + [10415] = 5, + ACTIONS(382), 1, + anon_sym_BQUOTE, + STATE(489), 1, + sym_template_string, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1121), 1, - anon_sym_LPAREN, - ACTIONS(1123), 1, - anon_sym_LBRACK, - ACTIONS(1125), 1, - anon_sym_DOT, - ACTIONS(1158), 1, - anon_sym_QMARK_DOT, - STATE(450), 1, - sym_arguments, - ACTIONS(1145), 12, + ACTIONS(1240), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1147), 24, + ACTIONS(1242), 28, sym_ternary_qmark, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -38092,27 +44707,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [10125] = 4, - ACTIONS(3), 1, + [10470] = 4, + ACTIONS(848), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1160), 1, - sym_automatic_semicolon, - ACTIONS(450), 12, + ACTIONS(756), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(448), 28, + ACTIONS(739), 29, sym_ternary_qmark, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -38123,7 +44739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -38140,38 +44756,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [10176] = 5, - ACTIONS(3), 1, + [10523] = 8, + ACTIONS(382), 1, + anon_sym_BQUOTE, + ACTIONS(1216), 1, + anon_sym_LBRACK, + ACTIONS(1218), 1, + anon_sym_DOT, + ACTIONS(1220), 1, + sym_optional_chain, + STATE(489), 1, + sym_template_string, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(462), 1, - anon_sym_EQ, - ACTIONS(1162), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(458), 12, + ACTIONS(1240), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(460), 24, + ACTIONS(1242), 25, sym_ternary_qmark, + anon_sym_SEMI, 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_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -38187,27 +44809,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [10229] = 4, - ACTIONS(3), 1, + [10584] = 4, + ACTIONS(1222), 1, + sym_automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(796), 1, - anon_sym_EQ, - ACTIONS(694), 12, + ACTIONS(492), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(677), 28, + ACTIONS(490), 29, sym_ternary_qmark, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -38218,7 +44841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -38235,38 +44858,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [10280] = 5, - ACTIONS(3), 1, + [10637] = 4, + ACTIONS(1244), 1, + sym_automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1172), 1, - anon_sym_EQ, - ACTIONS(1169), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1165), 12, + ACTIONS(498), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1167), 24, + ACTIONS(496), 29, sym_ternary_qmark, + anon_sym_SEMI, 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, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -38283,92 +44907,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [10333] = 26, - ACTIONS(3), 1, + [10690] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, - anon_sym_LPAREN, - ACTIONS(1123), 1, - anon_sym_LBRACK, - ACTIONS(1125), 1, - anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1180), 1, - anon_sym_AMP_AMP, - ACTIONS(1182), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1184), 1, - anon_sym_GT_GT, - ACTIONS(1188), 1, - anon_sym_AMP, - ACTIONS(1190), 1, - anon_sym_CARET, - ACTIONS(1192), 1, - anon_sym_PIPE, - ACTIONS(1196), 1, - anon_sym_PERCENT, - ACTIONS(1198), 1, - anon_sym_STAR_STAR, - ACTIONS(1206), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1208), 1, - sym_ternary_qmark, - ACTIONS(1129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1174), 2, + ACTIONS(1246), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1186), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1194), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1204), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1178), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1200), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1176), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [10427] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(524), 12, - anon_sym_STAR, - anon_sym_in, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(526), 28, + ACTIONS(1248), 29, sym_ternary_qmark, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -38379,7 +44937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -38396,35 +44954,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [10475] = 3, - ACTIONS(3), 1, + [10740] = 5, + ACTIONS(1257), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(534), 12, + ACTIONS(1254), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1250), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(536), 28, + ACTIONS(1252), 24, sym_ternary_qmark, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -38441,24 +45003,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [10523] = 3, - ACTIONS(3), 1, + [10794] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(544), 12, + ACTIONS(1259), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(546), 28, + ACTIONS(1261), 29, sym_ternary_qmark, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -38469,7 +45033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -38486,35 +45050,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [10571] = 3, - ACTIONS(3), 1, + [10844] = 5, + ACTIONS(510), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(554), 12, + ACTIONS(1263), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(506), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(556), 28, + ACTIONS(508), 24, sym_ternary_qmark, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -38531,45 +45099,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [10619] = 10, - ACTIONS(3), 1, + [10898] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(77), 1, - anon_sym_BQUOTE, - ACTIONS(1210), 1, - anon_sym_LPAREN, - ACTIONS(1212), 1, - anon_sym_LBRACK, - ACTIONS(1214), 1, - anon_sym_DOT, - ACTIONS(1216), 1, - anon_sym_QMARK_DOT, - ACTIONS(1218), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(614), 2, - sym_template_string, - sym_arguments, - ACTIONS(1141), 12, + ACTIONS(1266), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1143), 19, - sym_automatic_semicolon, + ACTIONS(1268), 29, sym_ternary_qmark, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -38583,42 +45143,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [10681] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1210), 1, - anon_sym_LPAREN, - ACTIONS(1212), 1, - anon_sym_LBRACK, - ACTIONS(1214), 1, - anon_sym_DOT, - ACTIONS(1216), 1, - anon_sym_QMARK_DOT, - STATE(614), 2, - sym_template_string, - sym_arguments, - ACTIONS(1137), 12, + [10948] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(488), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1139), 21, - sym_automatic_semicolon, + ACTIONS(486), 29, sym_ternary_qmark, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -38634,24 +45192,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - [10741] = 3, - ACTIONS(3), 1, + anon_sym_BQUOTE, + [10998] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(504), 12, + ACTIONS(518), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(506), 28, + ACTIONS(520), 29, sym_ternary_qmark, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -38662,7 +45223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -38679,24 +45240,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [10789] = 3, - ACTIONS(3), 1, + [11048] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(484), 12, + ACTIONS(1270), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(486), 28, + ACTIONS(1272), 29, sym_ternary_qmark, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -38707,7 +45270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -38724,24 +45287,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [10837] = 3, - ACTIONS(3), 1, + [11098] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(514), 12, + ACTIONS(1274), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(516), 28, + ACTIONS(1276), 29, sym_ternary_qmark, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -38752,7 +45317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -38769,24 +45334,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [10885] = 3, - ACTIONS(3), 1, + [11148] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(494), 12, + ACTIONS(484), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(496), 28, + ACTIONS(482), 29, sym_ternary_qmark, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -38797,7 +45364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -38814,24 +45381,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [10933] = 3, - ACTIONS(3), 1, + [11198] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(694), 12, + ACTIONS(1278), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(677), 28, + ACTIONS(1280), 29, sym_ternary_qmark, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -38842,7 +45411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -38859,30 +45428,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [10981] = 6, - ACTIONS(3), 1, + [11248] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1123), 1, - anon_sym_LBRACK, - ACTIONS(1125), 1, - anon_sym_DOT, - ACTIONS(1158), 1, - anon_sym_QMARK_DOT, - ACTIONS(1220), 12, + ACTIONS(1282), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1222), 25, + ACTIONS(1284), 29, sym_ternary_qmark, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -38890,7 +45455,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -38907,24 +45475,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [11035] = 3, - ACTIONS(3), 1, + [11298] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1220), 12, + ACTIONS(1286), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1222), 28, + ACTIONS(1288), 29, sym_ternary_qmark, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -38935,7 +45505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -38952,103 +45522,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [11083] = 26, - ACTIONS(3), 1, + [11348] = 4, + ACTIONS(1294), 1, + sym_regex_flags, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, - anon_sym_LPAREN, - ACTIONS(1123), 1, - anon_sym_LBRACK, - ACTIONS(1125), 1, - anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1180), 1, - anon_sym_AMP_AMP, - ACTIONS(1182), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1184), 1, - anon_sym_GT_GT, - ACTIONS(1188), 1, - anon_sym_AMP, - ACTIONS(1190), 1, - anon_sym_CARET, - ACTIONS(1192), 1, - anon_sym_PIPE, - ACTIONS(1196), 1, - anon_sym_PERCENT, - ACTIONS(1198), 1, - anon_sym_STAR_STAR, - ACTIONS(1206), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1208), 1, - sym_ternary_qmark, - ACTIONS(1129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1174), 2, + ACTIONS(1290), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1186), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1194), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1204), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1178), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1200), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1224), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [11177] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1226), 12, - anon_sym_STAR, - anon_sym_in, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1228), 28, + anon_sym_instanceof, + ACTIONS(1292), 27, sym_ternary_qmark, + anon_sym_SEMI, 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, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -39061,28 +45567,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [11225] = 3, - ACTIONS(3), 1, + [11400] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1230), 12, + ACTIONS(1296), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1232), 28, + ACTIONS(1298), 29, sym_ternary_qmark, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -39093,7 +45600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -39110,24 +45617,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [11273] = 3, - ACTIONS(3), 1, + [11450] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1234), 12, + ACTIONS(558), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1236), 28, + ACTIONS(560), 29, sym_ternary_qmark, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -39138,7 +45647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -39155,24 +45664,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [11321] = 3, - ACTIONS(3), 1, + [11500] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1238), 12, + ACTIONS(1300), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1240), 28, + ACTIONS(1302), 29, sym_ternary_qmark, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -39183,7 +45694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -39200,24 +45711,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [11369] = 3, - ACTIONS(3), 1, + [11550] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1242), 12, + ACTIONS(756), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1244), 28, + ACTIONS(739), 29, sym_ternary_qmark, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -39228,7 +45741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -39245,92 +45758,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [11417] = 26, - ACTIONS(3), 1, + [11600] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, - anon_sym_LPAREN, - ACTIONS(1123), 1, - anon_sym_LBRACK, - ACTIONS(1125), 1, - anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1180), 1, - anon_sym_AMP_AMP, - ACTIONS(1182), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1184), 1, - anon_sym_GT_GT, - ACTIONS(1188), 1, - anon_sym_AMP, - ACTIONS(1190), 1, - anon_sym_CARET, - ACTIONS(1192), 1, - anon_sym_PIPE, - ACTIONS(1196), 1, - anon_sym_PERCENT, - ACTIONS(1198), 1, - anon_sym_STAR_STAR, - ACTIONS(1206), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1208), 1, - sym_ternary_qmark, - ACTIONS(1129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1174), 2, + ACTIONS(578), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1186), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1194), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1204), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1178), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1200), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1246), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [11511] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1248), 12, - anon_sym_STAR, - anon_sym_in, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1250), 28, + ACTIONS(580), 29, sym_ternary_qmark, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -39341,7 +45788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -39358,92 +45805,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [11559] = 26, - ACTIONS(3), 1, + [11650] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, - anon_sym_LPAREN, - ACTIONS(1123), 1, - anon_sym_LBRACK, - ACTIONS(1125), 1, - anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1180), 1, - anon_sym_AMP_AMP, - ACTIONS(1182), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1184), 1, - anon_sym_GT_GT, - ACTIONS(1188), 1, - anon_sym_AMP, - ACTIONS(1190), 1, - anon_sym_CARET, - ACTIONS(1192), 1, - anon_sym_PIPE, - ACTIONS(1196), 1, - anon_sym_PERCENT, - ACTIONS(1198), 1, - anon_sym_STAR_STAR, - ACTIONS(1206), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1208), 1, - sym_ternary_qmark, - ACTIONS(1129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1174), 2, + ACTIONS(538), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1186), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1194), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1204), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1178), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1200), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1250), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [11653] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1165), 12, - anon_sym_STAR, - anon_sym_in, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1167), 28, + ACTIONS(540), 29, sym_ternary_qmark, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -39454,7 +45835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -39471,24 +45852,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [11701] = 3, - ACTIONS(3), 1, + [11700] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1252), 12, + ACTIONS(1240), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 28, + ACTIONS(1242), 29, sym_ternary_qmark, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -39499,7 +45882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -39516,37 +45899,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [11749] = 4, - ACTIONS(3), 1, + [11750] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1260), 1, - sym_regex_flags, - ACTIONS(1256), 13, + ACTIONS(498), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(1258), 26, + ACTIONS(496), 29, sym_ternary_qmark, + anon_sym_SEMI, 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, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -39559,27 +45942,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [11799] = 3, - ACTIONS(3), 1, + [11800] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(478), 12, + ACTIONS(1304), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(476), 28, + ACTIONS(1306), 29, sym_ternary_qmark, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -39590,7 +45976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -39607,24 +45993,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [11847] = 3, - ACTIONS(3), 1, + [11850] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1262), 12, + ACTIONS(588), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1264), 28, + ACTIONS(590), 29, sym_ternary_qmark, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -39635,7 +46023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -39652,35 +46040,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [11895] = 3, - ACTIONS(3), 1, + [11900] = 5, + ACTIONS(1311), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1266), 12, + ACTIONS(1308), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1259), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1268), 28, + ACTIONS(1261), 24, sym_ternary_qmark, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -39697,24 +46089,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [11943] = 3, - ACTIONS(3), 1, + [11954] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1270), 12, + ACTIONS(528), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1272), 28, + ACTIONS(530), 29, sym_ternary_qmark, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -39725,7 +46119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -39742,24 +46136,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [11991] = 3, - ACTIONS(3), 1, + [12004] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1274), 12, + ACTIONS(1313), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1276), 28, + ACTIONS(1315), 29, sym_ternary_qmark, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -39770,7 +46166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -39787,24 +46183,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12039] = 3, - ACTIONS(3), 1, + [12054] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1278), 12, + ACTIONS(1317), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1280), 28, + ACTIONS(1319), 29, sym_ternary_qmark, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -39815,7 +46213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -39832,146 +46230,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12087] = 11, - ACTIONS(3), 1, + [12104] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, - anon_sym_LPAREN, - ACTIONS(1123), 1, - anon_sym_LBRACK, - ACTIONS(1125), 1, - anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1198), 1, - anon_sym_STAR_STAR, - ACTIONS(1129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1117), 12, + ACTIONS(1321), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1119), 18, + ACTIONS(1323), 29, sym_ternary_qmark, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [12151] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, - anon_sym_LPAREN, - ACTIONS(1123), 1, - anon_sym_LBRACK, - ACTIONS(1125), 1, - anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1180), 1, - anon_sym_AMP_AMP, - ACTIONS(1182), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1184), 1, - anon_sym_GT_GT, - ACTIONS(1188), 1, - anon_sym_AMP, - ACTIONS(1190), 1, - anon_sym_CARET, - ACTIONS(1192), 1, - anon_sym_PIPE, - ACTIONS(1196), 1, - anon_sym_PERCENT, - ACTIONS(1198), 1, - anon_sym_STAR_STAR, - ACTIONS(1206), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1208), 1, - sym_ternary_qmark, - ACTIONS(1282), 1, - anon_sym_COMMA, - ACTIONS(1129), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1174), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1186), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1194), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1204), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1178), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1200), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1284), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [12247] = 3, - ACTIONS(3), 1, + anon_sym_BQUOTE, + [12154] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1286), 12, + ACTIONS(1325), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1288), 28, + ACTIONS(1327), 29, sym_ternary_qmark, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -39982,7 +46307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -39999,592 +46324,413 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12295] = 16, - ACTIONS(3), 1, + [12204] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, - anon_sym_LPAREN, - ACTIONS(1123), 1, - anon_sym_LBRACK, - ACTIONS(1125), 1, - anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1184), 1, - anon_sym_GT_GT, - ACTIONS(1196), 1, - anon_sym_PERCENT, - ACTIONS(1198), 1, - anon_sym_STAR_STAR, - ACTIONS(1129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1174), 2, + ACTIONS(1321), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1186), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1194), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1117), 7, anon_sym_in, - anon_sym_LT, anon_sym_GT, + anon_sym_LT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1119), 15, + ACTIONS(1323), 29, sym_ternary_qmark, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [12369] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1121), 1, - anon_sym_LPAREN, - ACTIONS(1123), 1, - anon_sym_LBRACK, - ACTIONS(1125), 1, - anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1184), 1, + [12254] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(548), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, anon_sym_GT_GT, - ACTIONS(1188), 1, anon_sym_AMP, - ACTIONS(1190), 1, - anon_sym_CARET, - ACTIONS(1192), 1, anon_sym_PIPE, - ACTIONS(1196), 1, - anon_sym_PERCENT, - ACTIONS(1198), 1, - anon_sym_STAR_STAR, - ACTIONS(1129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1174), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1186), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1194), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1202), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1204), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1178), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1200), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1119), 9, + ACTIONS(550), 29, sym_ternary_qmark, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [12455] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, - anon_sym_LPAREN, - ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1180), 1, + sym_optional_chain, anon_sym_AMP_AMP, - ACTIONS(1184), 1, - anon_sym_GT_GT, - ACTIONS(1188), 1, - anon_sym_AMP, - ACTIONS(1190), 1, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1192), 1, - anon_sym_PIPE, - ACTIONS(1196), 1, anon_sym_PERCENT, - ACTIONS(1198), 1, anon_sym_STAR_STAR, - ACTIONS(1129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1174), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1186), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1194), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1204), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1178), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1200), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1119), 8, - sym_ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - [12543] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, - anon_sym_LPAREN, - ACTIONS(1123), 1, - anon_sym_LBRACK, - ACTIONS(1125), 1, - anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1196), 1, - anon_sym_PERCENT, - ACTIONS(1198), 1, - anon_sym_STAR_STAR, - ACTIONS(1129), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1174), 2, + anon_sym_BQUOTE, + [12304] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1329), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1194), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1117), 8, anon_sym_in, - anon_sym_LT, anon_sym_GT, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1119), 17, + ACTIONS(1331), 29, sym_ternary_qmark, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [12613] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1121), 1, - anon_sym_LPAREN, - ACTIONS(1123), 1, - anon_sym_LBRACK, - ACTIONS(1125), 1, - anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1184), 1, + [12354] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1333), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, anon_sym_GT_GT, - ACTIONS(1196), 1, - anon_sym_PERCENT, - ACTIONS(1198), 1, - anon_sym_STAR_STAR, - ACTIONS(1117), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1174), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1186), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1194), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1202), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1204), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1178), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1200), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1119), 10, + ACTIONS(1335), 29, sym_ternary_qmark, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - anon_sym_QMARK_QMARK, - [12695] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1117), 1, - anon_sym_PIPE, - ACTIONS(1121), 1, - anon_sym_LPAREN, - ACTIONS(1123), 1, - anon_sym_LBRACK, - ACTIONS(1125), 1, - anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1184), 1, - anon_sym_GT_GT, - ACTIONS(1188), 1, - anon_sym_AMP, - ACTIONS(1196), 1, anon_sym_PERCENT, - ACTIONS(1198), 1, anon_sym_STAR_STAR, - ACTIONS(1129), 2, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1174), 2, + anon_sym_BQUOTE, + [12404] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1337), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1186), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1194), 2, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1202), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1204), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1178), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1200), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1119), 10, + ACTIONS(1339), 29, sym_ternary_qmark, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - anon_sym_QMARK_QMARK, - [12779] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1117), 1, - anon_sym_PIPE, - ACTIONS(1121), 1, - anon_sym_LPAREN, - ACTIONS(1123), 1, - anon_sym_LBRACK, - ACTIONS(1125), 1, - anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1184), 1, - anon_sym_GT_GT, - ACTIONS(1188), 1, - anon_sym_AMP, - ACTIONS(1190), 1, - anon_sym_CARET, - ACTIONS(1196), 1, anon_sym_PERCENT, - ACTIONS(1198), 1, anon_sym_STAR_STAR, - ACTIONS(1129), 2, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1174), 2, + anon_sym_BQUOTE, + [12454] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1341), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1186), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1194), 2, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1202), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1204), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1178), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1200), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1119), 9, + ACTIONS(1343), 29, sym_ternary_qmark, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [12865] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, - anon_sym_LPAREN, - ACTIONS(1123), 1, - anon_sym_LBRACK, - ACTIONS(1125), 1, - anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1196), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(1198), 1, anon_sym_STAR_STAR, - ACTIONS(1129), 2, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1174), 2, + anon_sym_BQUOTE, + [12504] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1345), 12, anon_sym_STAR, - anon_sym_SLASH, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1117), 10, anon_sym_in, - anon_sym_LT, anon_sym_GT, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1119), 17, + ACTIONS(1347), 29, sym_ternary_qmark, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [12933] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, - anon_sym_LPAREN, - ACTIONS(1123), 1, - anon_sym_LBRACK, - ACTIONS(1125), 1, - anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1184), 1, - anon_sym_GT_GT, - ACTIONS(1196), 1, - anon_sym_PERCENT, - ACTIONS(1198), 1, - anon_sym_STAR_STAR, - ACTIONS(1129), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1174), 2, + anon_sym_BQUOTE, + [12554] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1349), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1186), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1194), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1178), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1200), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1117), 4, + anon_sym_LT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1119), 12, + ACTIONS(1351), 29, sym_ternary_qmark, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [13011] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, - anon_sym_BQUOTE, - ACTIONS(1210), 1, - anon_sym_LPAREN, - ACTIONS(1212), 1, - anon_sym_LBRACK, - ACTIONS(1214), 1, - anon_sym_DOT, - ACTIONS(1216), 1, - anon_sym_QMARK_DOT, - ACTIONS(1218), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(614), 2, - sym_template_string, - sym_arguments, - ACTIONS(1117), 12, + anon_sym_BQUOTE, + [12604] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1353), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1119), 19, - sym_automatic_semicolon, + ACTIONS(1355), 29, sym_ternary_qmark, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -40598,24 +46744,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [13073] = 3, - ACTIONS(3), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [12654] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1290), 12, + ACTIONS(1357), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1292), 28, + ACTIONS(1359), 29, sym_ternary_qmark, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -40626,7 +46777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -40643,24 +46794,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13121] = 3, - ACTIONS(3), 1, + [12704] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1294), 12, + ACTIONS(1361), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1296), 28, + ACTIONS(1363), 29, sym_ternary_qmark, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -40671,7 +46824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -40688,92 +46841,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13169] = 26, - ACTIONS(3), 1, + [12754] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, - anon_sym_LPAREN, - ACTIONS(1123), 1, - anon_sym_LBRACK, - ACTIONS(1125), 1, - anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1180), 1, - anon_sym_AMP_AMP, - ACTIONS(1182), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1184), 1, + ACTIONS(1365), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, anon_sym_GT_GT, - ACTIONS(1188), 1, anon_sym_AMP, - ACTIONS(1190), 1, - anon_sym_CARET, - ACTIONS(1192), 1, anon_sym_PIPE, - ACTIONS(1196), 1, - anon_sym_PERCENT, - ACTIONS(1198), 1, - anon_sym_STAR_STAR, - ACTIONS(1206), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1208), 1, - sym_ternary_qmark, - ACTIONS(1129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1174), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1186), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1194), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1204), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1178), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1200), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1298), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [13263] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1302), 28, + ACTIONS(1367), 29, sym_ternary_qmark, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -40784,7 +46871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -40801,92 +46888,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13311] = 26, - ACTIONS(3), 1, + [12804] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, - anon_sym_LPAREN, - ACTIONS(1123), 1, - anon_sym_LBRACK, - ACTIONS(1125), 1, - anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1180), 1, - anon_sym_AMP_AMP, - ACTIONS(1182), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1184), 1, - anon_sym_GT_GT, - ACTIONS(1188), 1, - anon_sym_AMP, - ACTIONS(1190), 1, - anon_sym_CARET, - ACTIONS(1192), 1, - anon_sym_PIPE, - ACTIONS(1196), 1, - anon_sym_PERCENT, - ACTIONS(1198), 1, - anon_sym_STAR_STAR, - ACTIONS(1206), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1208), 1, - sym_ternary_qmark, - ACTIONS(1129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1174), 2, + ACTIONS(1369), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1186), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1194), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1204), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1178), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1200), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1302), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [13405] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 12, - anon_sym_STAR, - anon_sym_in, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1306), 28, + ACTIONS(1371), 29, sym_ternary_qmark, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -40897,7 +46918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -40914,24 +46935,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13453] = 3, - ACTIONS(3), 1, + [12854] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1308), 12, + ACTIONS(1373), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1310), 28, + ACTIONS(1375), 29, sym_ternary_qmark, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -40942,7 +46965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -40959,24 +46982,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13501] = 3, - ACTIONS(3), 1, + [12904] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1312), 12, + ACTIONS(1377), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1314), 28, + ACTIONS(1379), 29, sym_ternary_qmark, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -40987,7 +47012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -41004,92 +47029,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13549] = 26, - ACTIONS(3), 1, + [12954] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, - anon_sym_LPAREN, - ACTIONS(1123), 1, - anon_sym_LBRACK, - ACTIONS(1125), 1, - anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1180), 1, - anon_sym_AMP_AMP, - ACTIONS(1182), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1184), 1, - anon_sym_GT_GT, - ACTIONS(1188), 1, - anon_sym_AMP, - ACTIONS(1190), 1, - anon_sym_CARET, - ACTIONS(1192), 1, - anon_sym_PIPE, - ACTIONS(1196), 1, - anon_sym_PERCENT, - ACTIONS(1198), 1, - anon_sym_STAR_STAR, - ACTIONS(1206), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1208), 1, - sym_ternary_qmark, - ACTIONS(1129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1174), 2, + ACTIONS(1381), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1186), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1194), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1204), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1178), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1200), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1314), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [13643] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1316), 12, - anon_sym_STAR, - anon_sym_in, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1318), 28, + ACTIONS(1383), 29, sym_ternary_qmark, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -41100,7 +47059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -41117,24 +47076,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13691] = 3, - ACTIONS(3), 1, + [13004] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1320), 12, + ACTIONS(1385), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1322), 28, + ACTIONS(1387), 29, sym_ternary_qmark, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -41145,7 +47106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -41162,92 +47123,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13739] = 26, - ACTIONS(3), 1, + [13054] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, - anon_sym_LPAREN, - ACTIONS(1123), 1, - anon_sym_LBRACK, - ACTIONS(1125), 1, - anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1180), 1, - anon_sym_AMP_AMP, - ACTIONS(1182), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1184), 1, - anon_sym_GT_GT, - ACTIONS(1188), 1, - anon_sym_AMP, - ACTIONS(1190), 1, - anon_sym_CARET, - ACTIONS(1192), 1, - anon_sym_PIPE, - ACTIONS(1196), 1, - anon_sym_PERCENT, - ACTIONS(1198), 1, - anon_sym_STAR_STAR, - ACTIONS(1206), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1208), 1, - sym_ternary_qmark, - ACTIONS(1129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1174), 2, + ACTIONS(568), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1186), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1194), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1204), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1178), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1200), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1322), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [13833] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1324), 12, - anon_sym_STAR, - anon_sym_in, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1326), 28, + ACTIONS(570), 29, sym_ternary_qmark, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -41258,7 +47153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -41275,24 +47170,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13881] = 3, - ACTIONS(3), 1, + [13104] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1328), 12, + ACTIONS(1389), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1330), 28, + ACTIONS(1391), 29, sym_ternary_qmark, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -41303,7 +47200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -41320,24 +47217,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13929] = 3, - ACTIONS(3), 1, + [13154] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1332), 12, + ACTIONS(1393), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1334), 28, + ACTIONS(1395), 29, sym_ternary_qmark, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -41348,7 +47247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -41365,24 +47264,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13977] = 3, - ACTIONS(3), 1, + [13204] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(474), 12, + ACTIONS(1397), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(472), 28, + ACTIONS(1399), 29, sym_ternary_qmark, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -41393,7 +47294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -41410,24 +47311,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14025] = 3, - ACTIONS(3), 1, + [13254] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1336), 12, + ACTIONS(1401), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1338), 28, + ACTIONS(1403), 29, sym_ternary_qmark, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -41438,7 +47341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -41455,24 +47358,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14073] = 3, - ACTIONS(3), 1, + [13304] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1340), 12, + ACTIONS(1405), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1342), 28, + ACTIONS(1407), 29, sym_ternary_qmark, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -41483,7 +47388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -41500,24 +47405,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14121] = 3, - ACTIONS(3), 1, + [13354] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1344), 12, + ACTIONS(1405), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1346), 28, + ACTIONS(1407), 29, sym_ternary_qmark, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -41528,7 +47435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -41545,24 +47452,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14169] = 3, - ACTIONS(3), 1, + [13404] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1348), 12, + ACTIONS(1405), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1350), 28, + ACTIONS(1407), 29, sym_ternary_qmark, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -41573,7 +47482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -41590,24 +47499,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14217] = 3, - ACTIONS(3), 1, + [13454] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1352), 12, + ACTIONS(1405), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1354), 28, + ACTIONS(1407), 29, sym_ternary_qmark, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -41618,7 +47529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -41635,24 +47546,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14265] = 3, - ACTIONS(3), 1, + [13504] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1356), 12, + ACTIONS(504), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1358), 28, + ACTIONS(502), 29, sym_ternary_qmark, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -41663,7 +47576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -41680,35 +47593,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14313] = 3, - ACTIONS(3), 1, + [13554] = 4, + ACTIONS(1311), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1356), 12, + ACTIONS(1259), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1358), 28, + ACTIONS(1261), 27, sym_ternary_qmark, - anon_sym_LBRACE, + anon_sym_SEMI, 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, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -41725,80 +47640,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14361] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1356), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1358), 28, - sym_ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [13605] = 10, + ACTIONS(81), 1, + anon_sym_BQUOTE, + ACTIONS(1409), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1411), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1413), 1, 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, - [14409] = 3, - ACTIONS(3), 1, + ACTIONS(1415), 1, + sym_optional_chain, + STATE(562), 1, + sym_arguments, + STATE(605), 1, + sym_template_string, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1356), 12, + ACTIONS(1210), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1358), 28, + ACTIONS(1212), 21, + sym_automatic_semicolon, sym_ternary_qmark, - anon_sym_LBRACE, + anon_sym_SEMI, 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, @@ -41814,460 +47693,553 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [14457] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, + [13668] = 25, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1180), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1421), 1, anon_sym_AMP_AMP, - ACTIONS(1182), 1, + ACTIONS(1423), 1, anon_sym_PIPE_PIPE, - ACTIONS(1184), 1, + ACTIONS(1425), 1, anon_sym_GT_GT, - ACTIONS(1188), 1, + ACTIONS(1429), 1, anon_sym_AMP, - ACTIONS(1190), 1, + ACTIONS(1431), 1, anon_sym_CARET, - ACTIONS(1192), 1, + ACTIONS(1433), 1, anon_sym_PIPE, - ACTIONS(1196), 1, + ACTIONS(1437), 1, anon_sym_PERCENT, - ACTIONS(1198), 1, + ACTIONS(1439), 1, anon_sym_STAR_STAR, - ACTIONS(1206), 1, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - ACTIONS(1208), 1, + ACTIONS(1449), 1, sym_ternary_qmark, - ACTIONS(1129), 2, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1174), 2, + ACTIONS(1417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1186), 2, + ACTIONS(1427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1194), 2, + ACTIONS(1435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1202), 2, + ACTIONS(1443), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1204), 2, + ACTIONS(1445), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1178), 3, + ACTIONS(1419), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1200), 3, + anon_sym_LT, + ACTIONS(1441), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1360), 5, + ACTIONS(1367), 7, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [14551] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1362), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1364), 28, - sym_ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BQUOTE, + [13761] = 25, + ACTIONS(1214), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1216), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1218), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1421), 1, anon_sym_AMP_AMP, + ACTIONS(1423), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1425), 1, + anon_sym_GT_GT, + ACTIONS(1429), 1, + anon_sym_AMP, + ACTIONS(1431), 1, anon_sym_CARET, + ACTIONS(1433), 1, + anon_sym_PIPE, + ACTIONS(1437), 1, anon_sym_PERCENT, + ACTIONS(1439), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(1449), 1, + sym_ternary_qmark, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [14599] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1366), 12, + ACTIONS(1417), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(1427), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1435), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1443), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1368), 28, - sym_ternary_qmark, - anon_sym_LBRACE, + ACTIONS(1445), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1419), 3, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1441), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1451), 7, + anon_sym_SEMI, 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_BQUOTE, + [13854] = 25, + ACTIONS(1214), 1, + anon_sym_LPAREN, + ACTIONS(1216), 1, + anon_sym_LBRACK, + ACTIONS(1218), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1421), 1, anon_sym_AMP_AMP, + ACTIONS(1423), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1425), 1, + anon_sym_GT_GT, + ACTIONS(1429), 1, + anon_sym_AMP, + ACTIONS(1431), 1, anon_sym_CARET, + ACTIONS(1433), 1, + anon_sym_PIPE, + ACTIONS(1437), 1, anon_sym_PERCENT, + ACTIONS(1439), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(1449), 1, + sym_ternary_qmark, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [14647] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1370), 12, + ACTIONS(1417), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(1427), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1435), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1443), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1372), 28, - sym_ternary_qmark, - anon_sym_LBRACE, + ACTIONS(1445), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1419), 3, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1441), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1347), 7, + anon_sym_SEMI, 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_BQUOTE, + [13947] = 25, + ACTIONS(1214), 1, + anon_sym_LPAREN, + ACTIONS(1216), 1, + anon_sym_LBRACK, + ACTIONS(1218), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1421), 1, anon_sym_AMP_AMP, + ACTIONS(1423), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1425), 1, + anon_sym_GT_GT, + ACTIONS(1429), 1, + anon_sym_AMP, + ACTIONS(1431), 1, anon_sym_CARET, + ACTIONS(1433), 1, + anon_sym_PIPE, + ACTIONS(1437), 1, anon_sym_PERCENT, + ACTIONS(1439), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(1449), 1, + sym_ternary_qmark, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [14695] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1374), 12, + ACTIONS(1417), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(1427), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1435), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1443), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1376), 28, - sym_ternary_qmark, - anon_sym_LBRACE, + ACTIONS(1445), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1419), 3, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1441), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1453), 7, + anon_sym_SEMI, 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_BQUOTE, + [14040] = 23, + ACTIONS(1214), 1, + anon_sym_LPAREN, + ACTIONS(1216), 1, + anon_sym_LBRACK, + ACTIONS(1218), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1421), 1, anon_sym_AMP_AMP, + ACTIONS(1423), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1425), 1, + anon_sym_GT_GT, + ACTIONS(1429), 1, + anon_sym_AMP, + ACTIONS(1431), 1, anon_sym_CARET, + ACTIONS(1433), 1, + anon_sym_PIPE, + ACTIONS(1437), 1, anon_sym_PERCENT, + ACTIONS(1439), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [14743] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(450), 12, + ACTIONS(1417), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(1427), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1435), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1443), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(448), 28, + ACTIONS(1445), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1419), 3, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1441), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1455), 9, sym_ternary_qmark, - anon_sym_LBRACE, + anon_sym_SEMI, 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_QMARK_QMARK, + anon_sym_BQUOTE, + [14129] = 17, + ACTIONS(1214), 1, + anon_sym_LPAREN, + ACTIONS(1216), 1, + anon_sym_LBRACK, + ACTIONS(1218), 1, 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(1228), 1, + sym_optional_chain, + ACTIONS(1425), 1, + anon_sym_GT_GT, + ACTIONS(1437), 1, anon_sym_PERCENT, + ACTIONS(1439), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [14791] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 12, + ACTIONS(1417), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1427), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1435), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1419), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + anon_sym_LT, + ACTIONS(1441), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1457), 4, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1380), 28, + ACTIONS(1455), 14, sym_ternary_qmark, - anon_sym_LBRACE, + anon_sym_SEMI, 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, - [14839] = 3, - ACTIONS(3), 1, + [14206] = 10, + ACTIONS(1214), 1, + anon_sym_LPAREN, + ACTIONS(1216), 1, + anon_sym_LBRACK, + ACTIONS(1218), 1, + anon_sym_DOT, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1439), 1, + anon_sym_STAR_STAR, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(470), 12, + ACTIONS(1230), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1457), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(468), 28, + ACTIONS(1455), 20, sym_ternary_qmark, - anon_sym_LBRACE, + anon_sym_SEMI, 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, - [14887] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1111), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1107), 28, - sym_ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [14269] = 25, + ACTIONS(1214), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1216), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1218), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1421), 1, anon_sym_AMP_AMP, + ACTIONS(1423), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1425), 1, + anon_sym_GT_GT, + ACTIONS(1429), 1, + anon_sym_AMP, + ACTIONS(1431), 1, anon_sym_CARET, + ACTIONS(1433), 1, + anon_sym_PIPE, + ACTIONS(1437), 1, anon_sym_PERCENT, + ACTIONS(1439), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1447), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1449), 1, + sym_ternary_qmark, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1417), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1427), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1435), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1443), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1445), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1419), 3, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1441), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [14935] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, + ACTIONS(1459), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(1210), 1, + [14362] = 12, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1212), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1214), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1216), 1, - anon_sym_QMARK_DOT, - ACTIONS(1218), 2, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1437), 1, + anon_sym_PERCENT, + ACTIONS(1439), 1, + anon_sym_STAR_STAR, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(614), 2, - sym_template_string, - sym_arguments, - ACTIONS(1133), 12, + ACTIONS(1417), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1457), 10, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -42275,374 +48247,481 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1135), 19, - sym_automatic_semicolon, + ACTIONS(1455), 19, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_of, + 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, - [14997] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, anon_sym_BQUOTE, - ACTIONS(1121), 1, + [14429] = 25, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1180), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1421), 1, anon_sym_AMP_AMP, - ACTIONS(1182), 1, + ACTIONS(1423), 1, anon_sym_PIPE_PIPE, - ACTIONS(1184), 1, + ACTIONS(1425), 1, anon_sym_GT_GT, - ACTIONS(1188), 1, + ACTIONS(1429), 1, anon_sym_AMP, - ACTIONS(1190), 1, + ACTIONS(1431), 1, anon_sym_CARET, - ACTIONS(1192), 1, + ACTIONS(1433), 1, anon_sym_PIPE, - ACTIONS(1196), 1, + ACTIONS(1437), 1, anon_sym_PERCENT, - ACTIONS(1198), 1, + ACTIONS(1439), 1, anon_sym_STAR_STAR, - ACTIONS(1129), 2, + ACTIONS(1447), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1449), 1, + sym_ternary_qmark, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1174), 2, + ACTIONS(1417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1186), 2, + ACTIONS(1427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1194), 2, + ACTIONS(1435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1202), 2, + ACTIONS(1443), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1204), 2, + ACTIONS(1445), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1178), 3, + ACTIONS(1419), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1200), 3, + anon_sym_LT, + ACTIONS(1441), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1119), 7, - sym_ternary_qmark, + ACTIONS(1461), 7, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_QMARK_QMARK, - [15087] = 3, - ACTIONS(3), 1, + anon_sym_BQUOTE, + [14522] = 15, + ACTIONS(1214), 1, + anon_sym_LPAREN, + ACTIONS(1216), 1, + anon_sym_LBRACK, + ACTIONS(1218), 1, + anon_sym_DOT, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1425), 1, + anon_sym_GT_GT, + ACTIONS(1437), 1, + anon_sym_PERCENT, + ACTIONS(1439), 1, + anon_sym_STAR_STAR, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1378), 12, + ACTIONS(1230), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1417), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1427), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1435), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1457), 7, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + anon_sym_LT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1380), 27, - sym_automatic_semicolon, + ACTIONS(1455), 17, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + 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, - [15134] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1210), 1, + [14595] = 21, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1212), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1214), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1382), 1, - anon_sym_QMARK_DOT, - STATE(626), 1, - sym_arguments, - ACTIONS(1145), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1425), 1, anon_sym_GT_GT, + ACTIONS(1429), 1, anon_sym_AMP, + ACTIONS(1431), 1, + anon_sym_CARET, + ACTIONS(1437), 1, + anon_sym_PERCENT, + ACTIONS(1439), 1, + anon_sym_STAR_STAR, + ACTIONS(1457), 1, anon_sym_PIPE, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1417), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1427), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1435), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1443), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1147), 22, - sym_automatic_semicolon, + ACTIONS(1445), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1419), 3, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1441), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1455), 11, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_of, + 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_QMARK_QMARK, + anon_sym_BQUOTE, + [14680] = 20, + ACTIONS(1214), 1, + anon_sym_LPAREN, + ACTIONS(1216), 1, + anon_sym_LBRACK, + ACTIONS(1218), 1, + anon_sym_DOT, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1425), 1, + anon_sym_GT_GT, + ACTIONS(1429), 1, + anon_sym_AMP, + ACTIONS(1437), 1, anon_sym_PERCENT, + ACTIONS(1439), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(1457), 1, + anon_sym_PIPE, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [15191] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(462), 1, - anon_sym_EQ, - ACTIONS(464), 1, - sym_automatic_semicolon, - ACTIONS(454), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(458), 12, + ACTIONS(1417), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(1427), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1435), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1443), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(460), 23, + ACTIONS(1445), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1419), 3, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1441), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1455), 12, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_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, - anon_sym_LT_LT, anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [14763] = 19, + ACTIONS(1214), 1, + anon_sym_LPAREN, + ACTIONS(1216), 1, + anon_sym_LBRACK, + ACTIONS(1218), 1, + anon_sym_DOT, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1425), 1, + anon_sym_GT_GT, + ACTIONS(1437), 1, anon_sym_PERCENT, + ACTIONS(1439), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1417), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1427), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1435), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1443), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1445), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1457), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1419), 3, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1441), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(1455), 12, + sym_ternary_qmark, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [15244] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1210), 1, + [14844] = 10, + ACTIONS(1214), 1, anon_sym_LPAREN, - STATE(626), 1, + ACTIONS(1216), 1, + anon_sym_LBRACK, + ACTIONS(1218), 1, + anon_sym_DOT, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1439), 1, + anon_sym_STAR_STAR, + STATE(487), 1, sym_arguments, - ACTIONS(1145), 12, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1457), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1147), 25, - sym_automatic_semicolon, + ACTIONS(1455), 20, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + 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, - [15295] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, anon_sym_BQUOTE, - ACTIONS(1210), 1, + [14907] = 13, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1212), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1214), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1216), 1, - anon_sym_QMARK_DOT, - ACTIONS(1388), 1, - anon_sym_AMP_AMP, - ACTIONS(1390), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1392), 1, - anon_sym_GT_GT, - ACTIONS(1396), 1, - anon_sym_AMP, - ACTIONS(1398), 1, - anon_sym_CARET, - ACTIONS(1400), 1, - anon_sym_PIPE, - ACTIONS(1404), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1437), 1, anon_sym_PERCENT, - ACTIONS(1406), 1, + ACTIONS(1439), 1, anon_sym_STAR_STAR, - ACTIONS(1414), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1416), 1, - sym_ternary_qmark, - ACTIONS(1218), 2, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1384), 2, + ACTIONS(1417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1394), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1402), 2, + ACTIONS(1435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1410), 2, + ACTIONS(1457), 8, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1412), 2, + ACTIONS(1455), 19, + sym_ternary_qmark, + anon_sym_SEMI, + 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_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(614), 2, - sym_template_string, - sym_arguments, - ACTIONS(1386), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1408), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(1298), 4, - sym_automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - [15388] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1156), 1, + anon_sym_BQUOTE, + [14976] = 4, + ACTIONS(1257), 1, anon_sym_EQ, - ACTIONS(1149), 12, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1250), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1151), 26, - sym_automatic_semicolon, + ACTIONS(1252), 27, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -42659,483 +48738,356 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15437] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, - anon_sym_BQUOTE, - ACTIONS(1210), 1, + [15027] = 22, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1212), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1214), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1216), 1, - anon_sym_QMARK_DOT, - ACTIONS(1388), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1421), 1, anon_sym_AMP_AMP, - ACTIONS(1390), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1392), 1, + ACTIONS(1425), 1, anon_sym_GT_GT, - ACTIONS(1396), 1, + ACTIONS(1429), 1, anon_sym_AMP, - ACTIONS(1398), 1, + ACTIONS(1431), 1, anon_sym_CARET, - ACTIONS(1400), 1, + ACTIONS(1433), 1, anon_sym_PIPE, - ACTIONS(1404), 1, + ACTIONS(1437), 1, anon_sym_PERCENT, - ACTIONS(1406), 1, + ACTIONS(1439), 1, anon_sym_STAR_STAR, - ACTIONS(1414), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1416), 1, - sym_ternary_qmark, - ACTIONS(1218), 2, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1384), 2, + ACTIONS(1417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1394), 2, + ACTIONS(1427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1402), 2, + ACTIONS(1435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1410), 2, + ACTIONS(1443), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1412), 2, + ACTIONS(1445), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(614), 2, - sym_template_string, - sym_arguments, - ACTIONS(1386), 3, + ACTIONS(1419), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1408), 3, + anon_sym_LT, + ACTIONS(1441), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1246), 4, - sym_automatic_semicolon, + ACTIONS(1455), 10, + sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, - [15530] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - ACTIONS(1210), 1, + [15114] = 25, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1212), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1214), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1216), 1, - anon_sym_QMARK_DOT, - ACTIONS(1388), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1421), 1, anon_sym_AMP_AMP, - ACTIONS(1390), 1, + ACTIONS(1423), 1, anon_sym_PIPE_PIPE, - ACTIONS(1392), 1, + ACTIONS(1425), 1, anon_sym_GT_GT, - ACTIONS(1396), 1, + ACTIONS(1429), 1, anon_sym_AMP, - ACTIONS(1398), 1, + ACTIONS(1431), 1, anon_sym_CARET, - ACTIONS(1400), 1, + ACTIONS(1433), 1, anon_sym_PIPE, - ACTIONS(1404), 1, + ACTIONS(1437), 1, anon_sym_PERCENT, - ACTIONS(1406), 1, + ACTIONS(1439), 1, anon_sym_STAR_STAR, - ACTIONS(1414), 1, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - ACTIONS(1416), 1, + ACTIONS(1449), 1, sym_ternary_qmark, - ACTIONS(1218), 2, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1384), 2, + ACTIONS(1417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1394), 2, + ACTIONS(1427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1402), 2, + ACTIONS(1435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1410), 2, + ACTIONS(1443), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1412), 2, + ACTIONS(1445), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(614), 2, - sym_template_string, - sym_arguments, - ACTIONS(1386), 3, + ACTIONS(1419), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1408), 3, + anon_sym_LT, + ACTIONS(1441), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1360), 4, - sym_automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - [15623] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1374), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1376), 27, - sym_automatic_semicolon, - sym_ternary_qmark, + ACTIONS(1383), 7, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, + anon_sym_RPAREN, 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, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [15670] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, + anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(1210), 1, + [15207] = 25, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1212), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1214), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1216), 1, - anon_sym_QMARK_DOT, - ACTIONS(1422), 1, - anon_sym_in, - ACTIONS(1427), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1421), 1, anon_sym_AMP_AMP, - ACTIONS(1429), 1, + ACTIONS(1423), 1, anon_sym_PIPE_PIPE, - ACTIONS(1431), 1, + ACTIONS(1425), 1, anon_sym_GT_GT, - ACTIONS(1435), 1, + ACTIONS(1429), 1, anon_sym_AMP, - ACTIONS(1437), 1, + ACTIONS(1431), 1, anon_sym_CARET, - ACTIONS(1439), 1, + ACTIONS(1433), 1, anon_sym_PIPE, - ACTIONS(1443), 1, + ACTIONS(1437), 1, anon_sym_PERCENT, - ACTIONS(1445), 1, + ACTIONS(1439), 1, anon_sym_STAR_STAR, - ACTIONS(1453), 1, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - ACTIONS(1455), 1, + ACTIONS(1449), 1, sym_ternary_qmark, - ACTIONS(1218), 2, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1418), 2, + ACTIONS(1417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1425), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1433), 2, + ACTIONS(1427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1441), 2, + ACTIONS(1435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1449), 2, + ACTIONS(1443), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1451), 2, + ACTIONS(1445), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(614), 2, - sym_template_string, - sym_arguments, - ACTIONS(1447), 3, + ACTIONS(1419), 3, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1441), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1420), 4, - sym_automatic_semicolon, + ACTIONS(1463), 7, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_of, - [15765] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(1121), 1, + [15300] = 25, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1180), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1421), 1, anon_sym_AMP_AMP, - ACTIONS(1182), 1, + ACTIONS(1423), 1, anon_sym_PIPE_PIPE, - ACTIONS(1184), 1, + ACTIONS(1425), 1, anon_sym_GT_GT, - ACTIONS(1188), 1, + ACTIONS(1429), 1, anon_sym_AMP, - ACTIONS(1190), 1, + ACTIONS(1431), 1, anon_sym_CARET, - ACTIONS(1192), 1, + ACTIONS(1433), 1, anon_sym_PIPE, - ACTIONS(1196), 1, + ACTIONS(1437), 1, anon_sym_PERCENT, - ACTIONS(1198), 1, + ACTIONS(1439), 1, anon_sym_STAR_STAR, - ACTIONS(1206), 1, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - ACTIONS(1208), 1, + ACTIONS(1449), 1, sym_ternary_qmark, - ACTIONS(1129), 2, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1174), 2, + ACTIONS(1417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1186), 2, + ACTIONS(1427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1194), 2, + ACTIONS(1435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1202), 2, + ACTIONS(1443), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1204), 2, + ACTIONS(1445), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1178), 3, + ACTIONS(1419), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1200), 3, + anon_sym_LT, + ACTIONS(1441), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1457), 4, + ACTIONS(1395), 7, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, + anon_sym_COLON, anon_sym_RBRACK, - [15858] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, anon_sym_BQUOTE, - ACTIONS(1210), 1, + [15393] = 7, + ACTIONS(81), 1, + anon_sym_BQUOTE, + ACTIONS(1409), 1, anon_sym_LPAREN, - ACTIONS(1212), 1, - anon_sym_LBRACK, - ACTIONS(1214), 1, - anon_sym_DOT, - ACTIONS(1216), 1, - anon_sym_QMARK_DOT, - ACTIONS(1388), 1, - anon_sym_AMP_AMP, - ACTIONS(1390), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1392), 1, + STATE(562), 1, + sym_arguments, + STATE(605), 1, + sym_template_string, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1210), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, anon_sym_GT_GT, - ACTIONS(1396), 1, anon_sym_AMP, - ACTIONS(1398), 1, - anon_sym_CARET, - ACTIONS(1400), 1, anon_sym_PIPE, - ACTIONS(1404), 1, - anon_sym_PERCENT, - ACTIONS(1406), 1, - anon_sym_STAR_STAR, - ACTIONS(1414), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1416), 1, - sym_ternary_qmark, - ACTIONS(1218), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1384), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1394), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1410), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1412), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(614), 2, - sym_template_string, - sym_arguments, - ACTIONS(1386), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1408), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1314), 4, + ACTIONS(1212), 24, sym_automatic_semicolon, + sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, - [15951] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, - anon_sym_BQUOTE, - ACTIONS(1210), 1, - anon_sym_LPAREN, - ACTIONS(1212), 1, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(1214), 1, anon_sym_DOT, - ACTIONS(1216), 1, - anon_sym_QMARK_DOT, - ACTIONS(1388), 1, + sym_optional_chain, anon_sym_AMP_AMP, - ACTIONS(1390), 1, anon_sym_PIPE_PIPE, - ACTIONS(1392), 1, - anon_sym_GT_GT, - ACTIONS(1396), 1, - anon_sym_AMP, - ACTIONS(1398), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1400), 1, - anon_sym_PIPE, - ACTIONS(1404), 1, anon_sym_PERCENT, - ACTIONS(1406), 1, anon_sym_STAR_STAR, - ACTIONS(1414), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1416), 1, - sym_ternary_qmark, - ACTIONS(1218), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1384), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1394), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1402), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1410), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1412), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(614), 2, - sym_template_string, - sym_arguments, - ACTIONS(1386), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1408), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(1322), 4, - sym_automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - [16044] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(462), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [15450] = 4, + ACTIONS(510), 1, anon_sym_EQ, - ACTIONS(466), 1, - sym_automatic_semicolon, - ACTIONS(456), 12, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(506), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(454), 25, + ACTIONS(508), 27, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -43152,226 +49104,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16095] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, - anon_sym_BQUOTE, - ACTIONS(1210), 1, + [15501] = 21, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1212), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1214), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1216), 1, - anon_sym_QMARK_DOT, - ACTIONS(1388), 1, - anon_sym_AMP_AMP, - ACTIONS(1390), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1392), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1425), 1, anon_sym_GT_GT, - ACTIONS(1396), 1, + ACTIONS(1429), 1, anon_sym_AMP, - ACTIONS(1398), 1, + ACTIONS(1431), 1, anon_sym_CARET, - ACTIONS(1400), 1, + ACTIONS(1433), 1, anon_sym_PIPE, - ACTIONS(1404), 1, + ACTIONS(1437), 1, anon_sym_PERCENT, - ACTIONS(1406), 1, + ACTIONS(1439), 1, anon_sym_STAR_STAR, - ACTIONS(1414), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1416), 1, - sym_ternary_qmark, - ACTIONS(1218), 2, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1384), 2, + ACTIONS(1417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1394), 2, + ACTIONS(1427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1402), 2, + ACTIONS(1435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1410), 2, + ACTIONS(1443), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1412), 2, + ACTIONS(1445), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(614), 2, - sym_template_string, - sym_arguments, - ACTIONS(1386), 3, + ACTIONS(1419), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1408), 3, + anon_sym_LT, + ACTIONS(1441), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1302), 4, - sym_automatic_semicolon, + ACTIONS(1455), 11, + sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, - [16188] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, - anon_sym_BQUOTE, - ACTIONS(1210), 1, - anon_sym_LPAREN, - ACTIONS(1212), 1, - anon_sym_LBRACK, - ACTIONS(1214), 1, - anon_sym_DOT, - ACTIONS(1216), 1, - anon_sym_QMARK_DOT, - ACTIONS(1388), 1, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, - ACTIONS(1390), 1, anon_sym_PIPE_PIPE, - ACTIONS(1392), 1, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [15586] = 4, + ACTIONS(842), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(756), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, anon_sym_GT_GT, - ACTIONS(1396), 1, anon_sym_AMP, - ACTIONS(1398), 1, - anon_sym_CARET, - ACTIONS(1400), 1, anon_sym_PIPE, - ACTIONS(1404), 1, - anon_sym_PERCENT, - ACTIONS(1406), 1, - anon_sym_STAR_STAR, - ACTIONS(1414), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1416), 1, - sym_ternary_qmark, - ACTIONS(1218), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1384), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1394), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1410), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1412), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(614), 2, - sym_template_string, - sym_arguments, - ACTIONS(1386), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1408), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1250), 4, - sym_automatic_semicolon, + ACTIONS(739), 27, + sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, - [16281] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(1125), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1180), 1, + sym_optional_chain, anon_sym_AMP_AMP, - ACTIONS(1182), 1, anon_sym_PIPE_PIPE, - ACTIONS(1184), 1, - anon_sym_GT_GT, - ACTIONS(1188), 1, - anon_sym_AMP, - ACTIONS(1190), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1192), 1, - anon_sym_PIPE, - ACTIONS(1196), 1, anon_sym_PERCENT, - ACTIONS(1198), 1, anon_sym_STAR_STAR, - ACTIONS(1206), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1208), 1, - sym_ternary_qmark, - ACTIONS(1129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1174), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1186), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1194), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1204), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1178), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1200), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(1459), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - [16374] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1172), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [15637] = 4, + ACTIONS(1257), 1, anon_sym_EQ, - ACTIONS(1165), 12, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1250), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1167), 26, + ACTIONS(1252), 26, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, @@ -43381,7 +49244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -43398,104 +49261,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16423] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, - anon_sym_BQUOTE, - ACTIONS(1210), 1, + [15687] = 25, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1212), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1214), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1216), 1, - anon_sym_QMARK_DOT, - ACTIONS(1388), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1421), 1, anon_sym_AMP_AMP, - ACTIONS(1390), 1, + ACTIONS(1423), 1, anon_sym_PIPE_PIPE, - ACTIONS(1392), 1, + ACTIONS(1425), 1, anon_sym_GT_GT, - ACTIONS(1396), 1, + ACTIONS(1429), 1, anon_sym_AMP, - ACTIONS(1398), 1, + ACTIONS(1431), 1, anon_sym_CARET, - ACTIONS(1400), 1, + ACTIONS(1433), 1, anon_sym_PIPE, - ACTIONS(1404), 1, + ACTIONS(1437), 1, anon_sym_PERCENT, - ACTIONS(1406), 1, + ACTIONS(1439), 1, anon_sym_STAR_STAR, - ACTIONS(1414), 1, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - ACTIONS(1416), 1, + ACTIONS(1449), 1, sym_ternary_qmark, - ACTIONS(1461), 1, - anon_sym_COMMA, - ACTIONS(1464), 1, - anon_sym_RBRACE, - ACTIONS(1218), 2, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1246), 2, - sym_automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1384), 2, + ACTIONS(1417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1394), 2, + ACTIONS(1427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1402), 2, + ACTIONS(1435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1410), 2, + ACTIONS(1443), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1412), 2, + ACTIONS(1445), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(614), 2, - sym_template_string, - sym_arguments, - ACTIONS(1386), 3, + ACTIONS(1419), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1408), 3, + anon_sym_LT, + ACTIONS(1441), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [16520] = 4, - ACTIONS(3), 1, + ACTIONS(1465), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [15779] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1156), 1, - anon_sym_EQ, - ACTIONS(1149), 12, + ACTIONS(1341), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1151), 26, + ACTIONS(1343), 27, + sym_automatic_semicolon, sym_ternary_qmark, + anon_sym_SEMI, 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, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -43512,35 +49373,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16569] = 4, - ACTIONS(3), 1, + [15827] = 9, + ACTIONS(1409), 1, + anon_sym_LPAREN, + ACTIONS(1411), 1, + anon_sym_LBRACK, + ACTIONS(1413), 1, + anon_sym_DOT, + ACTIONS(1467), 1, + sym_optional_chain, + STATE(600), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1172), 1, - anon_sym_EQ, - ACTIONS(1165), 12, + ACTIONS(1469), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1236), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1167), 26, + ACTIONS(1238), 20, + sym_automatic_semicolon, sym_ternary_qmark, + anon_sym_SEMI, 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_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -43554,38 +49423,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16618] = 4, - ACTIONS(3), 1, + [15887] = 8, + ACTIONS(81), 1, + anon_sym_BQUOTE, + ACTIONS(1411), 1, + anon_sym_LBRACK, + ACTIONS(1413), 1, + anon_sym_DOT, + ACTIONS(1415), 1, + sym_optional_chain, + STATE(605), 1, + sym_template_string, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(462), 1, - anon_sym_EQ, - ACTIONS(458), 12, + ACTIONS(1240), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(460), 26, + ACTIONS(1242), 22, + sym_automatic_semicolon, sym_ternary_qmark, + anon_sym_SEMI, 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_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -43601,36 +49474,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [16667] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(796), 1, + [15945] = 6, + ACTIONS(510), 1, anon_sym_EQ, - ACTIONS(694), 12, + ACTIONS(512), 1, + sym_automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(490), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(506), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(677), 26, - sym_automatic_semicolon, + ACTIONS(508), 23, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -43647,35 +49522,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16716] = 4, - ACTIONS(3), 1, + [15999] = 9, + ACTIONS(1409), 1, + anon_sym_LPAREN, + ACTIONS(1411), 1, + anon_sym_LBRACK, + ACTIONS(1413), 1, + anon_sym_DOT, + ACTIONS(1467), 1, + sym_optional_chain, + STATE(600), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(462), 1, - anon_sym_EQ, - ACTIONS(458), 12, + ACTIONS(1469), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1224), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(460), 26, + ACTIONS(1226), 20, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -43689,105 +49572,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [16765] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, anon_sym_BQUOTE, - ACTIONS(1210), 1, + [16059] = 8, + ACTIONS(1409), 1, anon_sym_LPAREN, - ACTIONS(1212), 1, + ACTIONS(1411), 1, anon_sym_LBRACK, - ACTIONS(1214), 1, + ACTIONS(1413), 1, anon_sym_DOT, - ACTIONS(1216), 1, - anon_sym_QMARK_DOT, - ACTIONS(1388), 1, - anon_sym_AMP_AMP, - ACTIONS(1390), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1392), 1, + ACTIONS(1467), 1, + sym_optional_chain, + STATE(600), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1232), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, anon_sym_GT_GT, - ACTIONS(1396), 1, anon_sym_AMP, - ACTIONS(1398), 1, - anon_sym_CARET, - ACTIONS(1400), 1, anon_sym_PIPE, - ACTIONS(1404), 1, - anon_sym_PERCENT, - ACTIONS(1406), 1, - anon_sym_STAR_STAR, - ACTIONS(1414), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1416), 1, - sym_ternary_qmark, - ACTIONS(1218), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1384), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1394), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1410), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1412), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(614), 2, - sym_template_string, - sym_arguments, - ACTIONS(1386), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1408), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1176), 4, + ACTIONS(1234), 22, sym_automatic_semicolon, + sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, - [16858] = 4, - ACTIONS(3), 1, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [16117] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(802), 1, - anon_sym_EQ, - ACTIONS(694), 12, + ACTIONS(1304), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(677), 26, + ACTIONS(1306), 27, + sym_automatic_semicolon, sym_ternary_qmark, + anon_sym_SEMI, 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, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -43804,1310 +49668,970 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16907] = 26, - ACTIONS(3), 1, + [16165] = 4, + ACTIONS(1311), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(77), 1, - anon_sym_BQUOTE, - ACTIONS(1210), 1, + ACTIONS(1259), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1261), 26, + sym_automatic_semicolon, + sym_ternary_qmark, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1212), 1, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(1214), 1, anon_sym_DOT, - ACTIONS(1216), 1, - anon_sym_QMARK_DOT, - ACTIONS(1427), 1, + sym_optional_chain, anon_sym_AMP_AMP, - ACTIONS(1429), 1, anon_sym_PIPE_PIPE, - ACTIONS(1431), 1, - anon_sym_GT_GT, - ACTIONS(1435), 1, - anon_sym_AMP, - ACTIONS(1437), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1439), 1, - anon_sym_PIPE, - ACTIONS(1443), 1, anon_sym_PERCENT, - ACTIONS(1445), 1, anon_sym_STAR_STAR, - ACTIONS(1453), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1455), 1, - sym_ternary_qmark, - ACTIONS(1218), 2, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1418), 2, + anon_sym_BQUOTE, + [16215] = 4, + ACTIONS(848), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(756), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1441), 2, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1449), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1451), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(614), 2, - sym_template_string, - sym_arguments, - ACTIONS(1425), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1447), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1246), 4, + ACTIONS(739), 26, sym_automatic_semicolon, + sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_of, - [17000] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, - anon_sym_BQUOTE, - ACTIONS(1210), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1212), 1, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(1214), 1, anon_sym_DOT, - ACTIONS(1216), 1, - anon_sym_QMARK_DOT, - ACTIONS(1427), 1, + sym_optional_chain, anon_sym_AMP_AMP, - ACTIONS(1429), 1, anon_sym_PIPE_PIPE, - ACTIONS(1431), 1, - anon_sym_GT_GT, - ACTIONS(1435), 1, - anon_sym_AMP, - ACTIONS(1437), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1439), 1, - anon_sym_PIPE, - ACTIONS(1443), 1, anon_sym_PERCENT, - ACTIONS(1445), 1, anon_sym_STAR_STAR, - ACTIONS(1453), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1455), 1, - sym_ternary_qmark, - ACTIONS(1218), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1418), 2, + anon_sym_BQUOTE, + [16265] = 5, + ACTIONS(494), 1, + sym_automatic_semicolon, + ACTIONS(510), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(492), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1441), 2, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1449), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1451), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(614), 2, - sym_template_string, - sym_arguments, - ACTIONS(1425), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1447), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1250), 4, - sym_automatic_semicolon, + ACTIONS(490), 25, + sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_of, - [17093] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, - anon_sym_BQUOTE, - ACTIONS(1210), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1212), 1, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(1214), 1, anon_sym_DOT, - ACTIONS(1216), 1, - anon_sym_QMARK_DOT, - ACTIONS(1388), 1, + sym_optional_chain, anon_sym_AMP_AMP, - ACTIONS(1390), 1, anon_sym_PIPE_PIPE, - ACTIONS(1392), 1, - anon_sym_GT_GT, - ACTIONS(1396), 1, - anon_sym_AMP, - ACTIONS(1398), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1400), 1, - anon_sym_PIPE, - ACTIONS(1404), 1, anon_sym_PERCENT, - ACTIONS(1406), 1, anon_sym_STAR_STAR, - ACTIONS(1218), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1384), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1394), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1402), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1410), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1412), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(614), 2, - sym_template_string, - sym_arguments, - ACTIONS(1386), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1408), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1119), 6, - sym_automatic_semicolon, - sym_ternary_qmark, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_QMARK_QMARK, - [17182] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, - anon_sym_BQUOTE, - ACTIONS(1210), 1, - anon_sym_LPAREN, - ACTIONS(1212), 1, - anon_sym_LBRACK, - ACTIONS(1214), 1, - anon_sym_DOT, - ACTIONS(1216), 1, - anon_sym_QMARK_DOT, - ACTIONS(1445), 1, - anon_sym_STAR_STAR, - ACTIONS(1218), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(614), 2, + anon_sym_BQUOTE, + [16317] = 5, + ACTIONS(81), 1, + anon_sym_BQUOTE, + STATE(605), 1, sym_template_string, - sym_arguments, - ACTIONS(1117), 12, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1240), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1119), 17, + ACTIONS(1242), 25, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [17245] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, - anon_sym_BQUOTE, - ACTIONS(1210), 1, - anon_sym_LPAREN, - ACTIONS(1212), 1, - anon_sym_LBRACK, - ACTIONS(1214), 1, - anon_sym_DOT, - ACTIONS(1216), 1, - anon_sym_QMARK_DOT, - ACTIONS(1431), 1, - anon_sym_GT_GT, - ACTIONS(1443), 1, - anon_sym_PERCENT, - ACTIONS(1445), 1, - anon_sym_STAR_STAR, - ACTIONS(1218), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1418), 2, + [16369] = 4, + ACTIONS(510), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(506), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1441), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(614), 2, - sym_template_string, - sym_arguments, - ACTIONS(1117), 7, anon_sym_in, - anon_sym_LT, anon_sym_GT, + anon_sym_LT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1119), 14, + ACTIONS(508), 26, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [17318] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1210), 1, + [16419] = 23, + ACTIONS(1409), 1, anon_sym_LPAREN, - ACTIONS(1212), 1, + ACTIONS(1411), 1, anon_sym_LBRACK, - ACTIONS(1214), 1, + ACTIONS(1413), 1, anon_sym_DOT, - ACTIONS(1216), 1, - anon_sym_QMARK_DOT, - ACTIONS(1431), 1, + ACTIONS(1467), 1, + sym_optional_chain, + ACTIONS(1475), 1, + anon_sym_AMP_AMP, + ACTIONS(1477), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1479), 1, anon_sym_GT_GT, - ACTIONS(1435), 1, + ACTIONS(1483), 1, anon_sym_AMP, - ACTIONS(1437), 1, + ACTIONS(1485), 1, anon_sym_CARET, - ACTIONS(1439), 1, + ACTIONS(1487), 1, anon_sym_PIPE, - ACTIONS(1443), 1, + ACTIONS(1491), 1, anon_sym_PERCENT, - ACTIONS(1445), 1, + ACTIONS(1493), 1, anon_sym_STAR_STAR, - ACTIONS(1218), 2, + STATE(600), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1469), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1418), 2, + ACTIONS(1471), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1433), 2, + ACTIONS(1481), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1441), 2, + ACTIONS(1489), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1449), 2, + ACTIONS(1497), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1451), 2, + ACTIONS(1499), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(614), 2, - sym_template_string, - sym_arguments, - ACTIONS(1425), 3, + ACTIONS(1473), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1447), 3, + anon_sym_LT, + ACTIONS(1495), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1119), 8, + ACTIONS(1455), 7, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - [17403] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, anon_sym_BQUOTE, - ACTIONS(1210), 1, - anon_sym_LPAREN, - ACTIONS(1212), 1, - anon_sym_LBRACK, - ACTIONS(1214), 1, - anon_sym_DOT, - ACTIONS(1216), 1, - anon_sym_QMARK_DOT, - ACTIONS(1427), 1, - anon_sym_AMP_AMP, - ACTIONS(1431), 1, + [16506] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1329), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, anon_sym_GT_GT, - ACTIONS(1435), 1, anon_sym_AMP, - ACTIONS(1437), 1, - anon_sym_CARET, - ACTIONS(1439), 1, anon_sym_PIPE, - ACTIONS(1443), 1, - anon_sym_PERCENT, - ACTIONS(1445), 1, - anon_sym_STAR_STAR, - ACTIONS(1218), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1418), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1441), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1449), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1451), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(614), 2, - sym_template_string, - sym_arguments, - ACTIONS(1425), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1447), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1119), 7, + ACTIONS(1331), 26, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_of, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [17490] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, - anon_sym_BQUOTE, - ACTIONS(1210), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1212), 1, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(1214), 1, anon_sym_DOT, - ACTIONS(1216), 1, - anon_sym_QMARK_DOT, - ACTIONS(1443), 1, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(1445), 1, anon_sym_STAR_STAR, - ACTIONS(1218), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1418), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1441), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(614), 2, - sym_template_string, - sym_arguments, - ACTIONS(1117), 8, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [16553] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1266), 12, + anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1119), 16, + ACTIONS(1268), 26, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [17559] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1210), 1, - anon_sym_LPAREN, - ACTIONS(1212), 1, - anon_sym_LBRACK, - ACTIONS(1214), 1, - anon_sym_DOT, - ACTIONS(1216), 1, - anon_sym_QMARK_DOT, - ACTIONS(1431), 1, + [16600] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1278), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, anon_sym_GT_GT, - ACTIONS(1443), 1, - anon_sym_PERCENT, - ACTIONS(1445), 1, - anon_sym_STAR_STAR, - ACTIONS(1117), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1218), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1418), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1441), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1449), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1451), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(614), 2, - sym_template_string, - sym_arguments, - ACTIONS(1425), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1447), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1119), 9, + ACTIONS(1280), 26, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - anon_sym_QMARK_QMARK, - [17640] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, - anon_sym_BQUOTE, - ACTIONS(1117), 1, - anon_sym_PIPE, - ACTIONS(1210), 1, - anon_sym_LPAREN, - ACTIONS(1212), 1, - anon_sym_LBRACK, - ACTIONS(1214), 1, - anon_sym_DOT, - ACTIONS(1216), 1, - anon_sym_QMARK_DOT, - ACTIONS(1431), 1, - anon_sym_GT_GT, - ACTIONS(1435), 1, - anon_sym_AMP, - ACTIONS(1443), 1, anon_sym_PERCENT, - ACTIONS(1445), 1, anon_sym_STAR_STAR, - ACTIONS(1218), 2, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1418), 2, + anon_sym_BQUOTE, + [16647] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1282), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1441), 2, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1449), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1451), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(614), 2, - sym_template_string, - sym_arguments, - ACTIONS(1425), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1447), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1119), 9, + ACTIONS(1284), 26, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [17723] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1117), 1, + [16694] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1286), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1210), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1288), 26, + sym_automatic_semicolon, + sym_ternary_qmark, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1212), 1, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(1214), 1, anon_sym_DOT, - ACTIONS(1216), 1, - anon_sym_QMARK_DOT, - ACTIONS(1431), 1, - anon_sym_GT_GT, - ACTIONS(1435), 1, - anon_sym_AMP, - ACTIONS(1437), 1, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1443), 1, anon_sym_PERCENT, - ACTIONS(1445), 1, anon_sym_STAR_STAR, - ACTIONS(1218), 2, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1418), 2, + anon_sym_BQUOTE, + [16741] = 4, + ACTIONS(1501), 1, + sym_regex_flags, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1290), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1441), 2, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1449), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1451), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(614), 2, - sym_template_string, - sym_arguments, - ACTIONS(1425), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1447), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1119), 8, + ACTIONS(1292), 24, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [17808] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, - anon_sym_BQUOTE, - ACTIONS(1210), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1212), 1, anon_sym_LBRACK, - ACTIONS(1214), 1, anon_sym_DOT, - ACTIONS(1216), 1, - anon_sym_QMARK_DOT, - ACTIONS(1443), 1, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(1445), 1, anon_sym_STAR_STAR, - ACTIONS(1218), 2, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1418), 2, + anon_sym_BQUOTE, + [16790] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1296), 12, anon_sym_STAR, - anon_sym_SLASH, - STATE(614), 2, - sym_template_string, - sym_arguments, - ACTIONS(1117), 10, anon_sym_in, - anon_sym_LT, anon_sym_GT, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1119), 16, + ACTIONS(1298), 26, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [17875] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1210), 1, + [16837] = 15, + ACTIONS(1409), 1, anon_sym_LPAREN, - ACTIONS(1212), 1, + ACTIONS(1411), 1, anon_sym_LBRACK, - ACTIONS(1214), 1, + ACTIONS(1413), 1, anon_sym_DOT, - ACTIONS(1216), 1, - anon_sym_QMARK_DOT, - ACTIONS(1431), 1, + ACTIONS(1467), 1, + sym_optional_chain, + ACTIONS(1505), 1, anon_sym_GT_GT, - ACTIONS(1443), 1, + ACTIONS(1511), 1, anon_sym_PERCENT, - ACTIONS(1445), 1, + ACTIONS(1513), 1, anon_sym_STAR_STAR, - ACTIONS(1218), 2, + STATE(600), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1469), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1418), 2, + ACTIONS(1503), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1433), 2, + ACTIONS(1507), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1441), 2, + ACTIONS(1509), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(614), 2, - sym_template_string, - sym_arguments, - ACTIONS(1425), 3, + ACTIONS(1457), 7, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1447), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1117), 4, + anon_sym_LT, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1119), 11, + ACTIONS(1455), 15, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [17952] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, + anon_sym_instanceof, anon_sym_BQUOTE, - ACTIONS(1210), 1, - anon_sym_LPAREN, - ACTIONS(1212), 1, - anon_sym_LBRACK, - ACTIONS(1214), 1, - anon_sym_DOT, - ACTIONS(1216), 1, - anon_sym_QMARK_DOT, - ACTIONS(1427), 1, - anon_sym_AMP_AMP, - ACTIONS(1429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1431), 1, + [16908] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1300), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, anon_sym_GT_GT, - ACTIONS(1435), 1, anon_sym_AMP, - ACTIONS(1437), 1, - anon_sym_CARET, - ACTIONS(1439), 1, anon_sym_PIPE, - ACTIONS(1443), 1, - anon_sym_PERCENT, - ACTIONS(1445), 1, - anon_sym_STAR_STAR, - ACTIONS(1218), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1418), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1441), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1449), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1451), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(614), 2, - sym_template_string, - sym_arguments, - ACTIONS(1425), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1447), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1119), 6, + ACTIONS(1302), 26, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_of, - anon_sym_QMARK_QMARK, - [18041] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, - anon_sym_BQUOTE, - ACTIONS(1210), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1212), 1, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(1214), 1, anon_sym_DOT, - ACTIONS(1216), 1, - anon_sym_QMARK_DOT, - ACTIONS(1427), 1, + sym_optional_chain, anon_sym_AMP_AMP, - ACTIONS(1429), 1, anon_sym_PIPE_PIPE, - ACTIONS(1431), 1, - anon_sym_GT_GT, - ACTIONS(1435), 1, - anon_sym_AMP, - ACTIONS(1437), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1439), 1, - anon_sym_PIPE, - ACTIONS(1443), 1, anon_sym_PERCENT, - ACTIONS(1445), 1, anon_sym_STAR_STAR, - ACTIONS(1453), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1455), 1, - sym_ternary_qmark, - ACTIONS(1218), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1418), 2, + anon_sym_BQUOTE, + [16955] = 5, + ACTIONS(866), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(864), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(756), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1441), 2, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1449), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1451), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(614), 2, - sym_template_string, - sym_arguments, - ACTIONS(1425), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1447), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1298), 4, - sym_automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_of, - [18134] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, - anon_sym_BQUOTE, - ACTIONS(1210), 1, + ACTIONS(739), 21, + sym_ternary_qmark, anon_sym_LPAREN, - ACTIONS(1212), 1, anon_sym_LBRACK, - ACTIONS(1214), 1, anon_sym_DOT, - ACTIONS(1216), 1, - anon_sym_QMARK_DOT, - ACTIONS(1427), 1, + sym_optional_chain, anon_sym_AMP_AMP, - ACTIONS(1429), 1, anon_sym_PIPE_PIPE, - ACTIONS(1431), 1, - anon_sym_GT_GT, - ACTIONS(1435), 1, - anon_sym_AMP, - ACTIONS(1437), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1439), 1, - anon_sym_PIPE, - ACTIONS(1443), 1, anon_sym_PERCENT, - ACTIONS(1445), 1, anon_sym_STAR_STAR, - ACTIONS(1453), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1455), 1, - sym_ternary_qmark, - ACTIONS(1218), 2, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [17006] = 10, + ACTIONS(1409), 1, + anon_sym_LPAREN, + ACTIONS(1411), 1, + anon_sym_LBRACK, + ACTIONS(1413), 1, + anon_sym_DOT, + ACTIONS(1467), 1, + sym_optional_chain, + ACTIONS(1513), 1, + anon_sym_STAR_STAR, + STATE(600), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1469), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1418), 2, + ACTIONS(1457), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1441), 2, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1449), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1451), 2, + ACTIONS(1455), 18, + sym_automatic_semicolon, + sym_ternary_qmark, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(614), 2, - sym_template_string, - sym_arguments, - ACTIONS(1425), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1447), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(1302), 4, - sym_automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_of, - [18227] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, anon_sym_BQUOTE, - ACTIONS(1210), 1, + [17067] = 21, + ACTIONS(1409), 1, anon_sym_LPAREN, - ACTIONS(1212), 1, + ACTIONS(1411), 1, anon_sym_LBRACK, - ACTIONS(1214), 1, + ACTIONS(1413), 1, anon_sym_DOT, - ACTIONS(1216), 1, - anon_sym_QMARK_DOT, - ACTIONS(1427), 1, - anon_sym_AMP_AMP, - ACTIONS(1429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1431), 1, + ACTIONS(1467), 1, + sym_optional_chain, + ACTIONS(1505), 1, anon_sym_GT_GT, - ACTIONS(1435), 1, + ACTIONS(1511), 1, + anon_sym_PERCENT, + ACTIONS(1513), 1, + anon_sym_STAR_STAR, + ACTIONS(1517), 1, anon_sym_AMP, - ACTIONS(1437), 1, + ACTIONS(1519), 1, anon_sym_CARET, - ACTIONS(1439), 1, + ACTIONS(1521), 1, anon_sym_PIPE, - ACTIONS(1443), 1, - anon_sym_PERCENT, - ACTIONS(1445), 1, - anon_sym_STAR_STAR, - ACTIONS(1453), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1455), 1, - sym_ternary_qmark, - ACTIONS(1218), 2, + STATE(600), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1469), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1418), 2, + ACTIONS(1503), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1433), 2, + ACTIONS(1507), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1441), 2, + ACTIONS(1509), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1449), 2, + ACTIONS(1525), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1451), 2, + ACTIONS(1527), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(614), 2, - sym_template_string, - sym_arguments, - ACTIONS(1425), 3, + ACTIONS(1515), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1447), 3, + anon_sym_LT, + ACTIONS(1523), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1314), 4, + ACTIONS(1455), 9, sym_automatic_semicolon, + sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_of, - [18320] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, + anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - ACTIONS(1210), 1, + [17150] = 22, + ACTIONS(1409), 1, anon_sym_LPAREN, - ACTIONS(1212), 1, + ACTIONS(1411), 1, anon_sym_LBRACK, - ACTIONS(1214), 1, + ACTIONS(1413), 1, anon_sym_DOT, - ACTIONS(1216), 1, - anon_sym_QMARK_DOT, - ACTIONS(1427), 1, - anon_sym_AMP_AMP, - ACTIONS(1429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1431), 1, + ACTIONS(1467), 1, + sym_optional_chain, + ACTIONS(1505), 1, anon_sym_GT_GT, - ACTIONS(1435), 1, + ACTIONS(1511), 1, + anon_sym_PERCENT, + ACTIONS(1513), 1, + anon_sym_STAR_STAR, + ACTIONS(1517), 1, anon_sym_AMP, - ACTIONS(1437), 1, + ACTIONS(1519), 1, anon_sym_CARET, - ACTIONS(1439), 1, + ACTIONS(1521), 1, anon_sym_PIPE, - ACTIONS(1443), 1, - anon_sym_PERCENT, - ACTIONS(1445), 1, - anon_sym_STAR_STAR, - ACTIONS(1453), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1455), 1, - sym_ternary_qmark, - ACTIONS(1218), 2, + ACTIONS(1529), 1, + anon_sym_AMP_AMP, + STATE(600), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1469), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1418), 2, + ACTIONS(1503), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1433), 2, + ACTIONS(1507), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1441), 2, + ACTIONS(1509), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1449), 2, + ACTIONS(1525), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1451), 2, + ACTIONS(1527), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(614), 2, - sym_template_string, - sym_arguments, - ACTIONS(1425), 3, + ACTIONS(1515), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1447), 3, + anon_sym_LT, + ACTIONS(1523), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1322), 4, + ACTIONS(1455), 8, sym_automatic_semicolon, + sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_of, - [18413] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, + anon_sym_RBRACE, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - ACTIONS(1210), 1, + [17235] = 13, + ACTIONS(1409), 1, anon_sym_LPAREN, - ACTIONS(1212), 1, + ACTIONS(1411), 1, anon_sym_LBRACK, - ACTIONS(1214), 1, + ACTIONS(1413), 1, anon_sym_DOT, - ACTIONS(1216), 1, - anon_sym_QMARK_DOT, - ACTIONS(1427), 1, - anon_sym_AMP_AMP, - ACTIONS(1429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1431), 1, - anon_sym_GT_GT, - ACTIONS(1435), 1, - anon_sym_AMP, - ACTIONS(1437), 1, - anon_sym_CARET, - ACTIONS(1439), 1, - anon_sym_PIPE, - ACTIONS(1443), 1, + ACTIONS(1467), 1, + sym_optional_chain, + ACTIONS(1511), 1, anon_sym_PERCENT, - ACTIONS(1445), 1, + ACTIONS(1513), 1, anon_sym_STAR_STAR, - ACTIONS(1453), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1455), 1, - sym_ternary_qmark, - ACTIONS(1218), 2, + STATE(600), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1469), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1418), 2, + ACTIONS(1503), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1441), 2, + ACTIONS(1509), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1449), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1451), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(614), 2, - sym_template_string, - sym_arguments, - ACTIONS(1425), 3, + ACTIONS(1457), 8, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1447), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1360), 4, - sym_automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_of, - [18506] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, - anon_sym_BQUOTE, - ACTIONS(1210), 1, - anon_sym_LPAREN, - ACTIONS(1212), 1, - anon_sym_LBRACK, - ACTIONS(1214), 1, - anon_sym_DOT, - ACTIONS(1216), 1, - anon_sym_QMARK_DOT, - ACTIONS(1427), 1, - anon_sym_AMP_AMP, - ACTIONS(1429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1431), 1, - anon_sym_GT_GT, - ACTIONS(1435), 1, - anon_sym_AMP, - ACTIONS(1437), 1, - anon_sym_CARET, - ACTIONS(1439), 1, - anon_sym_PIPE, - ACTIONS(1443), 1, - anon_sym_PERCENT, - ACTIONS(1445), 1, - anon_sym_STAR_STAR, - ACTIONS(1453), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1455), 1, - sym_ternary_qmark, - ACTIONS(1218), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1418), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1449), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1451), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(614), 2, - sym_template_string, - sym_arguments, - ACTIONS(1425), 3, - anon_sym_in, anon_sym_LT, - anon_sym_GT, - ACTIONS(1447), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1224), 4, - sym_automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_of, - [18599] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, - anon_sym_BQUOTE, - ACTIONS(1210), 1, - anon_sym_LPAREN, - ACTIONS(1212), 1, - anon_sym_LBRACK, - ACTIONS(1214), 1, - anon_sym_DOT, - ACTIONS(1216), 1, - anon_sym_QMARK_DOT, - ACTIONS(1392), 1, anon_sym_GT_GT, - ACTIONS(1404), 1, - anon_sym_PERCENT, - ACTIONS(1406), 1, - anon_sym_STAR_STAR, - ACTIONS(1218), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1384), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1394), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1402), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(614), 2, - sym_template_string, - sym_arguments, - ACTIONS(1386), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1408), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1117), 4, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1119), 11, + ACTIONS(1455), 17, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, @@ -45115,285 +50639,281 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [18676] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, + anon_sym_instanceof, anon_sym_BQUOTE, - ACTIONS(1210), 1, - anon_sym_LPAREN, - ACTIONS(1212), 1, - anon_sym_LBRACK, - ACTIONS(1214), 1, - anon_sym_DOT, - ACTIONS(1216), 1, - anon_sym_QMARK_DOT, - ACTIONS(1406), 1, - anon_sym_STAR_STAR, - ACTIONS(1218), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(614), 2, - sym_template_string, - sym_arguments, - ACTIONS(1117), 12, + [17302] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1259), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1119), 17, + ACTIONS(1261), 26, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [18739] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, - anon_sym_BQUOTE, - ACTIONS(1210), 1, - anon_sym_LPAREN, - ACTIONS(1212), 1, - anon_sym_LBRACK, - ACTIONS(1214), 1, - anon_sym_DOT, - ACTIONS(1216), 1, - anon_sym_QMARK_DOT, - ACTIONS(1392), 1, - anon_sym_GT_GT, - ACTIONS(1404), 1, - anon_sym_PERCENT, - ACTIONS(1406), 1, - anon_sym_STAR_STAR, - ACTIONS(1218), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1384), 2, + anon_sym_BQUOTE, + [17349] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1381), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1394), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1402), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(614), 2, - sym_template_string, - sym_arguments, - ACTIONS(1117), 7, anon_sym_in, - anon_sym_LT, anon_sym_GT, + anon_sym_LT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1119), 14, + ACTIONS(1383), 26, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [18812] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1210), 1, + [17396] = 25, + ACTIONS(1409), 1, anon_sym_LPAREN, - ACTIONS(1212), 1, + ACTIONS(1411), 1, anon_sym_LBRACK, - ACTIONS(1214), 1, + ACTIONS(1413), 1, anon_sym_DOT, - ACTIONS(1216), 1, - anon_sym_QMARK_DOT, - ACTIONS(1392), 1, + ACTIONS(1467), 1, + sym_optional_chain, + ACTIONS(1505), 1, anon_sym_GT_GT, - ACTIONS(1396), 1, + ACTIONS(1511), 1, + anon_sym_PERCENT, + ACTIONS(1513), 1, + anon_sym_STAR_STAR, + ACTIONS(1517), 1, anon_sym_AMP, - ACTIONS(1398), 1, + ACTIONS(1519), 1, anon_sym_CARET, - ACTIONS(1400), 1, + ACTIONS(1521), 1, anon_sym_PIPE, - ACTIONS(1404), 1, - anon_sym_PERCENT, - ACTIONS(1406), 1, - anon_sym_STAR_STAR, - ACTIONS(1218), 2, + ACTIONS(1529), 1, + anon_sym_AMP_AMP, + ACTIONS(1531), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1533), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1535), 1, + sym_ternary_qmark, + STATE(600), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1469), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1384), 2, + ACTIONS(1503), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1394), 2, + ACTIONS(1507), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1402), 2, + ACTIONS(1509), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1410), 2, + ACTIONS(1525), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1412), 2, + ACTIONS(1527), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(614), 2, - sym_template_string, - sym_arguments, - ACTIONS(1386), 3, + ACTIONS(1515), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1408), 3, + anon_sym_LT, + ACTIONS(1523), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1119), 8, + ACTIONS(1383), 5, sym_automatic_semicolon, - sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [18897] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, anon_sym_BQUOTE, - ACTIONS(1210), 1, + [17487] = 19, + ACTIONS(1409), 1, anon_sym_LPAREN, - ACTIONS(1212), 1, + ACTIONS(1411), 1, anon_sym_LBRACK, - ACTIONS(1214), 1, + ACTIONS(1413), 1, anon_sym_DOT, - ACTIONS(1216), 1, - anon_sym_QMARK_DOT, - ACTIONS(1388), 1, - anon_sym_AMP_AMP, - ACTIONS(1392), 1, + ACTIONS(1467), 1, + sym_optional_chain, + ACTIONS(1505), 1, anon_sym_GT_GT, - ACTIONS(1396), 1, - anon_sym_AMP, - ACTIONS(1398), 1, - anon_sym_CARET, - ACTIONS(1400), 1, - anon_sym_PIPE, - ACTIONS(1404), 1, + ACTIONS(1511), 1, anon_sym_PERCENT, - ACTIONS(1406), 1, + ACTIONS(1513), 1, anon_sym_STAR_STAR, - ACTIONS(1218), 2, + STATE(600), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1457), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1469), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1384), 2, + ACTIONS(1503), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1394), 2, + ACTIONS(1507), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1402), 2, + ACTIONS(1509), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1410), 2, + ACTIONS(1525), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1412), 2, + ACTIONS(1527), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(614), 2, - sym_template_string, - sym_arguments, - ACTIONS(1386), 3, + ACTIONS(1515), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1408), 3, + anon_sym_LT, + ACTIONS(1523), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1119), 7, + ACTIONS(1455), 10, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_QMARK_QMARK, - [18984] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, anon_sym_BQUOTE, - ACTIONS(1210), 1, + [17566] = 20, + ACTIONS(1409), 1, anon_sym_LPAREN, - ACTIONS(1212), 1, + ACTIONS(1411), 1, anon_sym_LBRACK, - ACTIONS(1214), 1, + ACTIONS(1413), 1, anon_sym_DOT, - ACTIONS(1216), 1, - anon_sym_QMARK_DOT, - ACTIONS(1404), 1, + ACTIONS(1457), 1, + anon_sym_PIPE, + ACTIONS(1467), 1, + sym_optional_chain, + ACTIONS(1505), 1, + anon_sym_GT_GT, + ACTIONS(1511), 1, anon_sym_PERCENT, - ACTIONS(1406), 1, + ACTIONS(1513), 1, anon_sym_STAR_STAR, - ACTIONS(1218), 2, + ACTIONS(1517), 1, + anon_sym_AMP, + STATE(600), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1469), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1384), 2, + ACTIONS(1503), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1402), 2, + ACTIONS(1507), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1509), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(614), 2, - sym_template_string, - sym_arguments, - ACTIONS(1117), 8, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(1525), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1119), 16, + ACTIONS(1527), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1515), 3, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1523), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1455), 10, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, @@ -45401,67 +50921,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [19053] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, anon_sym_BQUOTE, - ACTIONS(1210), 1, + [17647] = 21, + ACTIONS(1409), 1, anon_sym_LPAREN, - ACTIONS(1212), 1, + ACTIONS(1411), 1, anon_sym_LBRACK, - ACTIONS(1214), 1, + ACTIONS(1413), 1, anon_sym_DOT, - ACTIONS(1216), 1, - anon_sym_QMARK_DOT, - ACTIONS(1392), 1, + ACTIONS(1457), 1, + anon_sym_PIPE, + ACTIONS(1467), 1, + sym_optional_chain, + ACTIONS(1505), 1, anon_sym_GT_GT, - ACTIONS(1404), 1, + ACTIONS(1511), 1, anon_sym_PERCENT, - ACTIONS(1406), 1, + ACTIONS(1513), 1, anon_sym_STAR_STAR, - ACTIONS(1117), 2, + ACTIONS(1517), 1, anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1218), 2, + ACTIONS(1519), 1, + anon_sym_CARET, + STATE(600), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1469), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1384), 2, + ACTIONS(1503), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1394), 2, + ACTIONS(1507), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1402), 2, + ACTIONS(1509), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1410), 2, + ACTIONS(1525), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1412), 2, + ACTIONS(1527), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(614), 2, - sym_template_string, - sym_arguments, - ACTIONS(1386), 3, + ACTIONS(1515), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1408), 3, + anon_sym_LT, + ACTIONS(1523), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1119), 9, + ACTIONS(1455), 9, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, @@ -45469,338 +50984,224 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_QMARK_QMARK, - [19134] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, anon_sym_BQUOTE, - ACTIONS(1117), 1, + [17730] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1389), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1210), 1, - anon_sym_LPAREN, - ACTIONS(1212), 1, - anon_sym_LBRACK, - ACTIONS(1214), 1, - anon_sym_DOT, - ACTIONS(1216), 1, - anon_sym_QMARK_DOT, - ACTIONS(1392), 1, - anon_sym_GT_GT, - ACTIONS(1396), 1, - anon_sym_AMP, - ACTIONS(1404), 1, - anon_sym_PERCENT, - ACTIONS(1406), 1, - anon_sym_STAR_STAR, - ACTIONS(1218), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1384), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1394), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1410), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1412), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(614), 2, - sym_template_string, - sym_arguments, - ACTIONS(1386), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1408), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1119), 9, + ACTIONS(1391), 26, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [19217] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, - anon_sym_BQUOTE, - ACTIONS(1117), 1, - anon_sym_PIPE, - ACTIONS(1210), 1, anon_sym_LPAREN, - ACTIONS(1212), 1, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(1214), 1, anon_sym_DOT, - ACTIONS(1216), 1, - anon_sym_QMARK_DOT, - ACTIONS(1392), 1, - anon_sym_GT_GT, - ACTIONS(1396), 1, - anon_sym_AMP, - ACTIONS(1398), 1, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1404), 1, anon_sym_PERCENT, - ACTIONS(1406), 1, anon_sym_STAR_STAR, - ACTIONS(1218), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1384), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1394), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1402), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1410), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1412), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(614), 2, - sym_template_string, - sym_arguments, - ACTIONS(1386), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1408), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1119), 8, - sym_automatic_semicolon, - sym_ternary_qmark, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - [19302] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, - anon_sym_BQUOTE, - ACTIONS(1210), 1, - anon_sym_LPAREN, - ACTIONS(1212), 1, - anon_sym_LBRACK, - ACTIONS(1214), 1, - anon_sym_DOT, - ACTIONS(1216), 1, - anon_sym_QMARK_DOT, - ACTIONS(1404), 1, - anon_sym_PERCENT, - ACTIONS(1406), 1, - anon_sym_STAR_STAR, - ACTIONS(1218), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1384), 2, + anon_sym_BQUOTE, + [17777] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1393), 12, anon_sym_STAR, - anon_sym_SLASH, - STATE(614), 2, - sym_template_string, - sym_arguments, - ACTIONS(1117), 10, anon_sym_in, - anon_sym_LT, anon_sym_GT, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1119), 16, + ACTIONS(1395), 26, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [19369] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1210), 1, + [17824] = 25, + ACTIONS(1409), 1, anon_sym_LPAREN, - ACTIONS(1212), 1, + ACTIONS(1411), 1, anon_sym_LBRACK, - ACTIONS(1214), 1, + ACTIONS(1413), 1, anon_sym_DOT, - ACTIONS(1216), 1, - anon_sym_QMARK_DOT, - ACTIONS(1388), 1, - anon_sym_AMP_AMP, - ACTIONS(1390), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1392), 1, + ACTIONS(1467), 1, + sym_optional_chain, + ACTIONS(1505), 1, anon_sym_GT_GT, - ACTIONS(1396), 1, + ACTIONS(1511), 1, + anon_sym_PERCENT, + ACTIONS(1513), 1, + anon_sym_STAR_STAR, + ACTIONS(1517), 1, anon_sym_AMP, - ACTIONS(1398), 1, + ACTIONS(1519), 1, anon_sym_CARET, - ACTIONS(1400), 1, + ACTIONS(1521), 1, anon_sym_PIPE, - ACTIONS(1404), 1, - anon_sym_PERCENT, - ACTIONS(1406), 1, - anon_sym_STAR_STAR, - ACTIONS(1414), 1, + ACTIONS(1529), 1, + anon_sym_AMP_AMP, + ACTIONS(1531), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1533), 1, anon_sym_QMARK_QMARK, - ACTIONS(1416), 1, + ACTIONS(1535), 1, sym_ternary_qmark, - ACTIONS(1218), 2, + STATE(600), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1469), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1384), 2, + ACTIONS(1503), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1394), 2, + ACTIONS(1507), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1402), 2, + ACTIONS(1509), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1410), 2, + ACTIONS(1525), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1412), 2, + ACTIONS(1527), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(614), 2, - sym_template_string, - sym_arguments, - ACTIONS(1386), 3, + ACTIONS(1515), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1408), 3, + anon_sym_LT, + ACTIONS(1523), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1224), 4, + ACTIONS(1395), 5, sym_automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, - [19462] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, anon_sym_BQUOTE, - ACTIONS(1210), 1, + [17915] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1274), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1276), 26, + sym_automatic_semicolon, + sym_ternary_qmark, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1212), 1, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(1214), 1, anon_sym_DOT, - ACTIONS(1216), 1, - anon_sym_QMARK_DOT, - ACTIONS(1427), 1, + sym_optional_chain, anon_sym_AMP_AMP, - ACTIONS(1429), 1, anon_sym_PIPE_PIPE, - ACTIONS(1431), 1, - anon_sym_GT_GT, - ACTIONS(1435), 1, - anon_sym_AMP, - ACTIONS(1437), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1439), 1, - anon_sym_PIPE, - ACTIONS(1443), 1, anon_sym_PERCENT, - ACTIONS(1445), 1, anon_sym_STAR_STAR, - ACTIONS(1453), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1455), 1, - sym_ternary_qmark, - ACTIONS(1218), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1418), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1449), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1451), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(614), 2, - sym_template_string, - sym_arguments, - ACTIONS(1425), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1447), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(1176), 4, - sym_automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_of, - [19555] = 3, - ACTIONS(3), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [17962] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1336), 12, + ACTIONS(1313), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1338), 26, + ACTIONS(1315), 26, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, @@ -45810,7 +51211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -45827,202 +51228,194 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19601] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, - anon_sym_BQUOTE, - ACTIONS(1210), 1, + [18009] = 12, + ACTIONS(1409), 1, anon_sym_LPAREN, - ACTIONS(1212), 1, + ACTIONS(1411), 1, anon_sym_LBRACK, - ACTIONS(1214), 1, + ACTIONS(1413), 1, anon_sym_DOT, - ACTIONS(1216), 1, - anon_sym_QMARK_DOT, - ACTIONS(1388), 1, - anon_sym_AMP_AMP, - ACTIONS(1390), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1392), 1, - anon_sym_GT_GT, - ACTIONS(1396), 1, - anon_sym_AMP, - ACTIONS(1398), 1, - anon_sym_CARET, - ACTIONS(1400), 1, - anon_sym_PIPE, - ACTIONS(1404), 1, + ACTIONS(1467), 1, + sym_optional_chain, + ACTIONS(1511), 1, anon_sym_PERCENT, - ACTIONS(1406), 1, + ACTIONS(1513), 1, anon_sym_STAR_STAR, - ACTIONS(1414), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1416), 1, - sym_ternary_qmark, - ACTIONS(1468), 1, - anon_sym_COMMA, - ACTIONS(1218), 2, + STATE(600), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1469), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1384), 2, + ACTIONS(1503), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1394), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1402), 2, + ACTIONS(1457), 10, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1410), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1412), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1466), 2, + ACTIONS(1455), 17, sym_automatic_semicolon, + sym_ternary_qmark, anon_sym_SEMI, - STATE(614), 2, - sym_template_string, - sym_arguments, - ACTIONS(1386), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1408), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [19695] = 5, - ACTIONS(3), 1, + anon_sym_BQUOTE, + [18074] = 10, + ACTIONS(1409), 1, + anon_sym_LPAREN, + ACTIONS(1411), 1, + anon_sym_LBRACK, + ACTIONS(1413), 1, + anon_sym_DOT, + ACTIONS(1467), 1, + sym_optional_chain, + ACTIONS(1513), 1, + anon_sym_STAR_STAR, + STATE(600), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(508), 1, - sym_automatic_semicolon, - ACTIONS(500), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(504), 12, + ACTIONS(1469), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1457), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(506), 23, + ACTIONS(1455), 18, + sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19745] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, - anon_sym_BQUOTE, - ACTIONS(1210), 1, + [18135] = 25, + ACTIONS(1409), 1, anon_sym_LPAREN, - ACTIONS(1212), 1, + ACTIONS(1411), 1, anon_sym_LBRACK, - ACTIONS(1214), 1, + ACTIONS(1413), 1, anon_sym_DOT, - ACTIONS(1216), 1, - anon_sym_QMARK_DOT, - ACTIONS(1388), 1, - anon_sym_AMP_AMP, - ACTIONS(1390), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1392), 1, + ACTIONS(1467), 1, + sym_optional_chain, + ACTIONS(1505), 1, anon_sym_GT_GT, - ACTIONS(1396), 1, + ACTIONS(1511), 1, + anon_sym_PERCENT, + ACTIONS(1513), 1, + anon_sym_STAR_STAR, + ACTIONS(1517), 1, anon_sym_AMP, - ACTIONS(1398), 1, + ACTIONS(1519), 1, anon_sym_CARET, - ACTIONS(1400), 1, + ACTIONS(1521), 1, anon_sym_PIPE, - ACTIONS(1404), 1, - anon_sym_PERCENT, - ACTIONS(1406), 1, - anon_sym_STAR_STAR, - ACTIONS(1414), 1, + ACTIONS(1529), 1, + anon_sym_AMP_AMP, + ACTIONS(1531), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1533), 1, anon_sym_QMARK_QMARK, - ACTIONS(1416), 1, + ACTIONS(1535), 1, sym_ternary_qmark, - ACTIONS(1468), 1, - anon_sym_COMMA, - ACTIONS(1218), 2, + STATE(600), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1469), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1384), 2, + ACTIONS(1503), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1394), 2, + ACTIONS(1507), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1402), 2, + ACTIONS(1509), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1410), 2, + ACTIONS(1525), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1412), 2, + ACTIONS(1527), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1470), 2, - sym_automatic_semicolon, - anon_sym_SEMI, - STATE(614), 2, - sym_template_string, - sym_arguments, - ACTIONS(1386), 3, + ACTIONS(1515), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1408), 3, + anon_sym_LT, + ACTIONS(1523), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [19839] = 3, - ACTIONS(3), 1, + ACTIONS(1463), 5, + sym_automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_BQUOTE, + [18226] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1348), 12, + ACTIONS(1401), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1350), 26, + ACTIONS(1403), 26, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, @@ -46032,7 +51425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -46049,111 +51442,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19885] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(796), 1, - anon_sym_EQ, - ACTIONS(836), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(694), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(677), 21, - sym_ternary_qmark, + [18273] = 17, + ACTIONS(1409), 1, anon_sym_LPAREN, + ACTIONS(1411), 1, anon_sym_LBRACK, + ACTIONS(1413), 1, 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(1467), 1, + sym_optional_chain, + ACTIONS(1505), 1, + anon_sym_GT_GT, + ACTIONS(1511), 1, anon_sym_PERCENT, + ACTIONS(1513), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + STATE(600), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1469), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [19935] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 12, + ACTIONS(1503), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1507), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1509), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1515), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + anon_sym_LT, + ACTIONS(1523), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1457), 4, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1306), 26, + ACTIONS(1455), 12, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [18348] = 23, + ACTIONS(1409), 1, anon_sym_LPAREN, - anon_sym_of, + ACTIONS(1411), 1, anon_sym_LBRACK, + ACTIONS(1413), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(1467), 1, + sym_optional_chain, + ACTIONS(1505), 1, + anon_sym_GT_GT, + ACTIONS(1511), 1, + anon_sym_PERCENT, + ACTIONS(1513), 1, + anon_sym_STAR_STAR, + ACTIONS(1517), 1, + anon_sym_AMP, + ACTIONS(1519), 1, + anon_sym_CARET, + ACTIONS(1521), 1, + anon_sym_PIPE, + ACTIONS(1529), 1, anon_sym_AMP_AMP, + ACTIONS(1531), 1, anon_sym_PIPE_PIPE, + STATE(600), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1469), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1503), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1507), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1509), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1525), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1527), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1515), 3, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1523), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(1455), 7, + sym_automatic_semicolon, + sym_ternary_qmark, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [19981] = 3, - ACTIONS(3), 1, + [18435] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1352), 12, + ACTIONS(1317), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1354), 26, + ACTIONS(1319), 26, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, @@ -46163,7 +51591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -46180,23 +51608,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20027] = 3, - ACTIONS(3), 1, + [18482] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1294), 12, + ACTIONS(1349), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1296), 26, + ACTIONS(1351), 26, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, @@ -46206,7 +51635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -46223,23 +51652,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20073] = 3, - ACTIONS(3), 1, + [18529] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1356), 12, + ACTIONS(1405), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1358), 26, + ACTIONS(1407), 26, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, @@ -46249,7 +51679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -46266,33 +51696,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20119] = 3, - ACTIONS(3), 1, + [18576] = 5, + ACTIONS(848), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1356), 12, + ACTIONS(893), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(756), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1358), 26, - sym_automatic_semicolon, + ACTIONS(739), 21, sym_ternary_qmark, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -46309,23 +51742,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20165] = 3, - ACTIONS(3), 1, + [18627] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1356), 12, + ACTIONS(1353), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1358), 26, + ACTIONS(1355), 26, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, @@ -46335,7 +51769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -46352,35 +51786,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20211] = 5, - ACTIONS(3), 1, + [18674] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(518), 1, - sym_automatic_semicolon, - ACTIONS(510), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(514), 12, + ACTIONS(1357), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(516), 23, + ACTIONS(1359), 26, + sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -46397,23 +51830,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20261] = 3, - ACTIONS(3), 1, + [18721] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(504), 12, + ACTIONS(1405), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(506), 26, + ACTIONS(1407), 26, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, @@ -46423,7 +51857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -46440,66 +51874,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20307] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(484), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(486), 26, - sym_automatic_semicolon, - sym_ternary_qmark, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, + [18768] = 25, + ACTIONS(1409), 1, anon_sym_LPAREN, - anon_sym_of, + ACTIONS(1411), 1, anon_sym_LBRACK, + ACTIONS(1413), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(1467), 1, + sym_optional_chain, + ACTIONS(1505), 1, + anon_sym_GT_GT, + ACTIONS(1511), 1, + anon_sym_PERCENT, + ACTIONS(1513), 1, + anon_sym_STAR_STAR, + ACTIONS(1517), 1, + anon_sym_AMP, + ACTIONS(1519), 1, + anon_sym_CARET, + ACTIONS(1521), 1, + anon_sym_PIPE, + ACTIONS(1529), 1, anon_sym_AMP_AMP, + ACTIONS(1531), 1, anon_sym_PIPE_PIPE, + ACTIONS(1533), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1535), 1, + sym_ternary_qmark, + STATE(600), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1469), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1503), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1507), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1509), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1525), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1527), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1515), 3, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1523), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(1459), 5, + sym_automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_BQUOTE, - [20353] = 3, - ACTIONS(3), 1, + [18859] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(514), 12, + ACTIONS(1405), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(516), 26, + ACTIONS(1407), 26, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, @@ -46509,7 +51967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -46526,35 +51984,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20399] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(498), 1, - sym_automatic_semicolon, - ACTIONS(490), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(494), 12, + [18906] = 25, + ACTIONS(1409), 1, + anon_sym_LPAREN, + ACTIONS(1411), 1, + anon_sym_LBRACK, + ACTIONS(1413), 1, + anon_sym_DOT, + ACTIONS(1467), 1, + sym_optional_chain, + ACTIONS(1505), 1, + anon_sym_GT_GT, + ACTIONS(1511), 1, + anon_sym_PERCENT, + ACTIONS(1513), 1, + anon_sym_STAR_STAR, + ACTIONS(1517), 1, + anon_sym_AMP, + ACTIONS(1519), 1, + anon_sym_CARET, + ACTIONS(1521), 1, + anon_sym_PIPE, + ACTIONS(1529), 1, + anon_sym_AMP_AMP, + ACTIONS(1531), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1533), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1535), 1, + sym_ternary_qmark, + STATE(600), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1469), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1503), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1507), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1509), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1525), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1527), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1515), 3, anon_sym_in, + anon_sym_GT, anon_sym_LT, + ACTIONS(1523), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1451), 5, + sym_automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_BQUOTE, + [18997] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1405), 12, + anon_sym_STAR, + anon_sym_in, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(496), 23, + ACTIONS(1407), 26, + sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -46571,35 +52094,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20449] = 5, - ACTIONS(3), 1, + [19044] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(528), 1, - sym_automatic_semicolon, - ACTIONS(520), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(524), 12, + ACTIONS(1321), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(526), 23, + ACTIONS(1323), 26, + sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -46616,23 +52138,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20499] = 3, - ACTIONS(3), 1, + [19091] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(494), 12, + ACTIONS(1325), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(496), 26, + ACTIONS(1327), 26, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, @@ -46642,7 +52165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -46659,23 +52182,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20545] = 3, - ACTIONS(3), 1, + [19138] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1356), 12, + ACTIONS(1365), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1358), 26, + ACTIONS(1367), 26, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, @@ -46685,7 +52209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -46702,103 +52226,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20591] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(637), 1, - anon_sym_COMMA, - ACTIONS(1121), 1, + [19185] = 25, + ACTIONS(1409), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1411), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1413), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1180), 1, - anon_sym_AMP_AMP, - ACTIONS(1182), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1184), 1, + ACTIONS(1467), 1, + sym_optional_chain, + ACTIONS(1505), 1, anon_sym_GT_GT, - ACTIONS(1188), 1, + ACTIONS(1511), 1, + anon_sym_PERCENT, + ACTIONS(1513), 1, + anon_sym_STAR_STAR, + ACTIONS(1517), 1, anon_sym_AMP, - ACTIONS(1190), 1, + ACTIONS(1519), 1, anon_sym_CARET, - ACTIONS(1192), 1, + ACTIONS(1521), 1, anon_sym_PIPE, - ACTIONS(1196), 1, - anon_sym_PERCENT, - ACTIONS(1198), 1, - anon_sym_STAR_STAR, - ACTIONS(1206), 1, + ACTIONS(1529), 1, + anon_sym_AMP_AMP, + ACTIONS(1531), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1533), 1, anon_sym_QMARK_QMARK, - ACTIONS(1208), 1, + ACTIONS(1535), 1, sym_ternary_qmark, - ACTIONS(1472), 1, - anon_sym_RBRACK, - STATE(1112), 1, - aux_sym_array_repeat1, - ACTIONS(1129), 2, + STATE(600), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1469), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1174), 2, + ACTIONS(1503), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1186), 2, + ACTIONS(1507), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1194), 2, + ACTIONS(1509), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1202), 2, + ACTIONS(1525), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1204), 2, + ACTIONS(1527), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1178), 3, + ACTIONS(1515), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1200), 3, + anon_sym_LT, + ACTIONS(1523), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [20687] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1156), 1, - anon_sym_EQ, - ACTIONS(1474), 4, + ACTIONS(1367), 5, + sym_automatic_semicolon, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1149), 12, + anon_sym_BQUOTE, + [19276] = 5, + ACTIONS(542), 1, + sym_automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(534), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(538), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1151), 21, + ACTIONS(540), 23, sym_ternary_qmark, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -46815,23 +52338,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20737] = 3, - ACTIONS(3), 1, + [19327] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1300), 12, + ACTIONS(1321), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1302), 26, + ACTIONS(1323), 26, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, @@ -46841,7 +52365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -46858,35 +52382,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20783] = 5, - ACTIONS(3), 1, + [19374] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1172), 1, - anon_sym_EQ, - ACTIONS(1476), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1165), 12, + ACTIONS(1373), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1167), 21, + ACTIONS(1375), 26, + sym_automatic_semicolon, sym_ternary_qmark, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -46903,23 +52426,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20833] = 3, - ACTIONS(3), 1, + [19421] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1308), 12, + ACTIONS(1337), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1310), 26, + ACTIONS(1339), 26, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, @@ -46929,7 +52453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -46946,35 +52470,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20879] = 5, - ACTIONS(3), 1, + [19468] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(462), 1, - anon_sym_EQ, - ACTIONS(1478), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(458), 12, + ACTIONS(1333), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(460), 21, + ACTIONS(1335), 26, + sym_automatic_semicolon, sym_ternary_qmark, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -46991,35 +52514,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20929] = 4, - ACTIONS(3), 1, + [19515] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1480), 1, - sym_regex_flags, - ACTIONS(1256), 14, + ACTIONS(756), 12, anon_sym_STAR, anon_sym_in, - anon_sym_of, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(1258), 23, + ACTIONS(739), 26, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -47032,36 +52554,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20977] = 3, - ACTIONS(3), 1, + [19562] = 4, + ACTIONS(827), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1312), 12, + ACTIONS(756), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1314), 26, + ACTIONS(739), 25, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -47078,23 +52603,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [21023] = 3, - ACTIONS(3), 1, + [19611] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1362), 12, + ACTIONS(1240), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1364), 26, + ACTIONS(1242), 26, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, @@ -47104,7 +52630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -47121,23 +52647,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [21069] = 3, - ACTIONS(3), 1, + [19658] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1366), 12, + ACTIONS(1397), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1368), 26, + ACTIONS(1399), 26, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, @@ -47147,7 +52674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -47164,23 +52691,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [21115] = 3, - ACTIONS(3), 1, + [19705] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1230), 12, + ACTIONS(1377), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1232), 26, + ACTIONS(1379), 26, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, @@ -47190,7 +52718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -47207,36 +52735,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [21161] = 6, - ACTIONS(3), 1, + [19752] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1156), 1, - anon_sym_EQ, - ACTIONS(1474), 1, - anon_sym_of, - ACTIONS(1482), 1, - anon_sym_in, - ACTIONS(1149), 11, + ACTIONS(1385), 12, anon_sym_STAR, - anon_sym_LT, + anon_sym_in, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1151), 24, + ACTIONS(1387), 26, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -47253,36 +52779,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [21213] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1172), 1, - anon_sym_EQ, - ACTIONS(1476), 1, - anon_sym_of, + [19799] = 25, + ACTIONS(1409), 1, + anon_sym_LPAREN, + ACTIONS(1411), 1, + anon_sym_LBRACK, + ACTIONS(1413), 1, + anon_sym_DOT, + ACTIONS(1467), 1, + sym_optional_chain, + ACTIONS(1475), 1, + anon_sym_AMP_AMP, + ACTIONS(1477), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1479), 1, + anon_sym_GT_GT, + ACTIONS(1483), 1, + anon_sym_AMP, ACTIONS(1485), 1, - anon_sym_in, - ACTIONS(1165), 11, + anon_sym_CARET, + ACTIONS(1487), 1, + anon_sym_PIPE, + ACTIONS(1491), 1, + anon_sym_PERCENT, + ACTIONS(1493), 1, + anon_sym_STAR_STAR, + ACTIONS(1537), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1539), 1, + sym_ternary_qmark, + STATE(600), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1469), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1471), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1481), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1489), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1497), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1499), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1473), 3, + anon_sym_in, + anon_sym_GT, anon_sym_LT, + ACTIONS(1495), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1463), 5, + sym_automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_of, + anon_sym_BQUOTE, + [19890] = 4, + ACTIONS(852), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(756), 12, + anon_sym_STAR, + anon_sym_in, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1167), 24, + ACTIONS(739), 25, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -47299,36 +52890,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [21265] = 6, - ACTIONS(3), 1, + [19939] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(462), 1, - anon_sym_EQ, - ACTIONS(1478), 1, - anon_sym_of, - ACTIONS(1488), 1, - anon_sym_in, - ACTIONS(458), 11, + ACTIONS(1369), 12, anon_sym_STAR, - anon_sym_LT, + anon_sym_in, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(460), 24, + ACTIONS(1371), 26, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -47345,256 +52934,364 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [21317] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1165), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + [19986] = 25, + ACTIONS(1409), 1, + anon_sym_LPAREN, + ACTIONS(1411), 1, + anon_sym_LBRACK, + ACTIONS(1413), 1, + anon_sym_DOT, + ACTIONS(1467), 1, + sym_optional_chain, + ACTIONS(1505), 1, anon_sym_GT_GT, + ACTIONS(1511), 1, + anon_sym_PERCENT, + ACTIONS(1513), 1, + anon_sym_STAR_STAR, + ACTIONS(1517), 1, anon_sym_AMP, + ACTIONS(1519), 1, + anon_sym_CARET, + ACTIONS(1521), 1, anon_sym_PIPE, + ACTIONS(1529), 1, + anon_sym_AMP_AMP, + ACTIONS(1531), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1533), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1535), 1, + sym_ternary_qmark, + STATE(600), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1469), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1503), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1507), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1509), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1525), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1167), 26, + ACTIONS(1527), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1515), 3, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1523), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1453), 5, sym_automatic_semicolon, - sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_BQUOTE, + [20077] = 25, + ACTIONS(1409), 1, anon_sym_LPAREN, - anon_sym_of, + ACTIONS(1411), 1, anon_sym_LBRACK, + ACTIONS(1413), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(1467), 1, + sym_optional_chain, + ACTIONS(1475), 1, anon_sym_AMP_AMP, + ACTIONS(1477), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1479), 1, + anon_sym_GT_GT, + ACTIONS(1483), 1, + anon_sym_AMP, + ACTIONS(1485), 1, anon_sym_CARET, + ACTIONS(1487), 1, + anon_sym_PIPE, + ACTIONS(1491), 1, anon_sym_PERCENT, + ACTIONS(1493), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1537), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1539), 1, + sym_ternary_qmark, + STATE(600), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1469), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1471), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1481), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1489), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1497), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1499), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1473), 3, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1495), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [21363] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(637), 1, + ACTIONS(1459), 5, + sym_automatic_semicolon, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(1121), 1, + anon_sym_of, + anon_sym_BQUOTE, + [20168] = 25, + ACTIONS(1409), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1411), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1413), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1180), 1, + ACTIONS(1467), 1, + sym_optional_chain, + ACTIONS(1475), 1, anon_sym_AMP_AMP, - ACTIONS(1182), 1, + ACTIONS(1477), 1, anon_sym_PIPE_PIPE, - ACTIONS(1184), 1, + ACTIONS(1479), 1, anon_sym_GT_GT, - ACTIONS(1188), 1, + ACTIONS(1483), 1, anon_sym_AMP, - ACTIONS(1190), 1, + ACTIONS(1485), 1, anon_sym_CARET, - ACTIONS(1192), 1, + ACTIONS(1487), 1, anon_sym_PIPE, - ACTIONS(1196), 1, + ACTIONS(1491), 1, anon_sym_PERCENT, - ACTIONS(1198), 1, + ACTIONS(1493), 1, anon_sym_STAR_STAR, - ACTIONS(1206), 1, + ACTIONS(1537), 1, anon_sym_QMARK_QMARK, - ACTIONS(1208), 1, + ACTIONS(1539), 1, sym_ternary_qmark, - ACTIONS(1491), 1, - anon_sym_RBRACK, - STATE(1151), 1, - aux_sym_array_repeat1, - ACTIONS(1129), 2, + STATE(600), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1469), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1174), 2, + ACTIONS(1471), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1186), 2, + ACTIONS(1481), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1194), 2, + ACTIONS(1489), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1202), 2, + ACTIONS(1497), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1204), 2, + ACTIONS(1499), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1178), 3, + ACTIONS(1473), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1200), 3, + anon_sym_LT, + ACTIONS(1495), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [21459] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(694), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(677), 26, + ACTIONS(1395), 5, sym_automatic_semicolon, - sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_of, + anon_sym_BQUOTE, + [20259] = 25, + ACTIONS(1409), 1, + anon_sym_LPAREN, + ACTIONS(1411), 1, anon_sym_LBRACK, + ACTIONS(1413), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(1467), 1, + sym_optional_chain, + ACTIONS(1475), 1, anon_sym_AMP_AMP, + ACTIONS(1477), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1479), 1, + anon_sym_GT_GT, + ACTIONS(1483), 1, + anon_sym_AMP, + ACTIONS(1485), 1, anon_sym_CARET, + ACTIONS(1487), 1, + anon_sym_PIPE, + ACTIONS(1491), 1, anon_sym_PERCENT, + ACTIONS(1493), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1537), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1539), 1, + sym_ternary_qmark, + STATE(600), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1469), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1471), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1481), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1489), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1497), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1499), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1473), 3, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1495), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [21505] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(637), 1, + ACTIONS(1383), 5, + sym_automatic_semicolon, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(1121), 1, + anon_sym_of, + anon_sym_BQUOTE, + [20350] = 25, + ACTIONS(1409), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1411), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1413), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1180), 1, + ACTIONS(1467), 1, + sym_optional_chain, + ACTIONS(1475), 1, anon_sym_AMP_AMP, - ACTIONS(1182), 1, + ACTIONS(1477), 1, anon_sym_PIPE_PIPE, - ACTIONS(1184), 1, + ACTIONS(1479), 1, anon_sym_GT_GT, - ACTIONS(1188), 1, + ACTIONS(1483), 1, anon_sym_AMP, - ACTIONS(1190), 1, + ACTIONS(1485), 1, anon_sym_CARET, - ACTIONS(1192), 1, + ACTIONS(1487), 1, anon_sym_PIPE, - ACTIONS(1196), 1, + ACTIONS(1491), 1, anon_sym_PERCENT, - ACTIONS(1198), 1, + ACTIONS(1493), 1, anon_sym_STAR_STAR, - ACTIONS(1206), 1, + ACTIONS(1537), 1, anon_sym_QMARK_QMARK, - ACTIONS(1208), 1, + ACTIONS(1539), 1, sym_ternary_qmark, - ACTIONS(1493), 1, - anon_sym_RPAREN, - STATE(1069), 1, - aux_sym_array_repeat1, - ACTIONS(1129), 2, + STATE(600), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1469), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1174), 2, + ACTIONS(1471), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1186), 2, + ACTIONS(1481), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1194), 2, + ACTIONS(1489), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1202), 2, + ACTIONS(1497), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1204), 2, + ACTIONS(1499), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1178), 3, + ACTIONS(1473), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1200), 3, + anon_sym_LT, + ACTIONS(1495), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [21601] = 4, - ACTIONS(3), 1, + ACTIONS(1367), 5, + sym_automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_of, + anon_sym_BQUOTE, + [20441] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(759), 1, - anon_sym_EQ, - ACTIONS(694), 12, + ACTIONS(538), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(677), 25, + ACTIONS(540), 26, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -47611,36 +53308,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [21649] = 6, - ACTIONS(3), 1, + [20488] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(759), 1, - anon_sym_EQ, - ACTIONS(821), 1, - anon_sym_in, - ACTIONS(1089), 1, - anon_sym_of, - ACTIONS(694), 11, + ACTIONS(1361), 12, anon_sym_STAR, - anon_sym_LT, + anon_sym_in, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(677), 24, + ACTIONS(1363), 26, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -47657,23 +53352,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [21701] = 3, - ACTIONS(3), 1, + [20535] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1316), 12, + ACTIONS(1270), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1318), 26, + ACTIONS(1272), 26, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, @@ -47683,7 +53379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -47700,249 +53396,199 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [21747] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, - anon_sym_BQUOTE, - ACTIONS(1210), 1, + [20582] = 25, + ACTIONS(1409), 1, anon_sym_LPAREN, - ACTIONS(1212), 1, + ACTIONS(1411), 1, anon_sym_LBRACK, - ACTIONS(1214), 1, + ACTIONS(1413), 1, anon_sym_DOT, - ACTIONS(1216), 1, - anon_sym_QMARK_DOT, - ACTIONS(1388), 1, + ACTIONS(1467), 1, + sym_optional_chain, + ACTIONS(1475), 1, anon_sym_AMP_AMP, - ACTIONS(1390), 1, + ACTIONS(1477), 1, anon_sym_PIPE_PIPE, - ACTIONS(1392), 1, + ACTIONS(1479), 1, anon_sym_GT_GT, - ACTIONS(1396), 1, + ACTIONS(1483), 1, anon_sym_AMP, - ACTIONS(1398), 1, + ACTIONS(1485), 1, anon_sym_CARET, - ACTIONS(1400), 1, + ACTIONS(1487), 1, anon_sym_PIPE, - ACTIONS(1404), 1, + ACTIONS(1491), 1, anon_sym_PERCENT, - ACTIONS(1406), 1, + ACTIONS(1493), 1, anon_sym_STAR_STAR, - ACTIONS(1414), 1, + ACTIONS(1537), 1, anon_sym_QMARK_QMARK, - ACTIONS(1416), 1, + ACTIONS(1539), 1, sym_ternary_qmark, - ACTIONS(1468), 1, - anon_sym_COMMA, - ACTIONS(1218), 2, + STATE(600), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1469), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1384), 2, + ACTIONS(1471), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1394), 2, + ACTIONS(1481), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1402), 2, + ACTIONS(1489), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1410), 2, + ACTIONS(1497), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1412), 2, + ACTIONS(1499), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1495), 2, - sym_automatic_semicolon, - anon_sym_SEMI, - STATE(614), 2, - sym_template_string, - sym_arguments, - ACTIONS(1386), 3, + ACTIONS(1473), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1408), 3, + anon_sym_LT, + ACTIONS(1495), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [21841] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1212), 1, + ACTIONS(1451), 5, + sym_automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_of, + anon_sym_BQUOTE, + [20673] = 17, + ACTIONS(1409), 1, + anon_sym_LPAREN, + ACTIONS(1411), 1, anon_sym_LBRACK, - ACTIONS(1214), 1, + ACTIONS(1413), 1, anon_sym_DOT, - ACTIONS(1382), 1, - anon_sym_QMARK_DOT, - ACTIONS(1220), 12, + ACTIONS(1467), 1, + sym_optional_chain, + ACTIONS(1479), 1, + anon_sym_GT_GT, + ACTIONS(1491), 1, + anon_sym_PERCENT, + ACTIONS(1493), 1, + anon_sym_STAR_STAR, + STATE(600), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1469), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1471), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1481), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1489), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1473), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + anon_sym_LT, + ACTIONS(1495), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1457), 4, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1222), 23, + ACTIONS(1455), 12, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [21893] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, anon_sym_BQUOTE, - ACTIONS(637), 1, - anon_sym_COMMA, - ACTIONS(1121), 1, + [20748] = 10, + ACTIONS(1409), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1411), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1413), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1180), 1, - anon_sym_AMP_AMP, - ACTIONS(1182), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1184), 1, - anon_sym_GT_GT, - ACTIONS(1188), 1, - anon_sym_AMP, - ACTIONS(1190), 1, - anon_sym_CARET, - ACTIONS(1192), 1, - anon_sym_PIPE, - ACTIONS(1196), 1, - anon_sym_PERCENT, - ACTIONS(1198), 1, + ACTIONS(1467), 1, + sym_optional_chain, + ACTIONS(1493), 1, anon_sym_STAR_STAR, - ACTIONS(1206), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1208), 1, - sym_ternary_qmark, - ACTIONS(1497), 1, - anon_sym_RPAREN, - STATE(1095), 1, - aux_sym_array_repeat1, - ACTIONS(1129), 2, + STATE(600), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1469), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1174), 2, + ACTIONS(1457), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1186), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1194), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1204), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1178), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1200), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [21989] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(807), 1, - anon_sym_EQ, - ACTIONS(804), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(694), 12, - anon_sym_STAR, - anon_sym_in, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(677), 21, + ACTIONS(1455), 18, + sym_automatic_semicolon, sym_ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22039] = 3, - ACTIONS(3), 1, + [20809] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1220), 12, + ACTIONS(1246), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1222), 26, + ACTIONS(1248), 26, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, @@ -47952,7 +53598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -47969,33 +53615,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22085] = 3, - ACTIONS(3), 1, + [20856] = 5, + ACTIONS(510), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1320), 12, + ACTIONS(1541), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(506), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1322), 26, - sym_automatic_semicolon, + ACTIONS(508), 21, sym_ternary_qmark, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -48012,99 +53661,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22131] = 26, - ACTIONS(3), 1, + [20907] = 5, + ACTIONS(1311), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, + ACTIONS(1543), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1259), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1261), 21, + sym_ternary_qmark, anon_sym_LPAREN, - ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1180), 1, + sym_optional_chain, anon_sym_AMP_AMP, - ACTIONS(1182), 1, anon_sym_PIPE_PIPE, - ACTIONS(1184), 1, - anon_sym_GT_GT, - ACTIONS(1188), 1, - anon_sym_AMP, - ACTIONS(1190), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1192), 1, - anon_sym_PIPE, - ACTIONS(1196), 1, anon_sym_PERCENT, - ACTIONS(1198), 1, anon_sym_STAR_STAR, - ACTIONS(1206), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1208), 1, - sym_ternary_qmark, - ACTIONS(1129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1174), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1186), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1194), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1204), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1178), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1200), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(1499), 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [20958] = 5, + ACTIONS(1257), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1545), 4, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, - [22223] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1252), 12, + ACTIONS(1250), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 26, - sym_automatic_semicolon, + ACTIONS(1252), 21, sym_ternary_qmark, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -48121,17 +53753,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22269] = 4, - ACTIONS(3), 1, + [21009] = 12, + ACTIONS(1409), 1, + anon_sym_LPAREN, + ACTIONS(1411), 1, + anon_sym_LBRACK, + ACTIONS(1413), 1, + anon_sym_DOT, + ACTIONS(1467), 1, + sym_optional_chain, + ACTIONS(1491), 1, + anon_sym_PERCENT, + ACTIONS(1493), 1, + anon_sym_STAR_STAR, + STATE(600), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1480), 1, - sym_regex_flags, - ACTIONS(1256), 13, + ACTIONS(1469), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1471), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1457), 10, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -48139,49 +53788,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(1258), 24, + ACTIONS(1455), 17, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_instanceof, anon_sym_BQUOTE, - [22317] = 3, - ACTIONS(3), 1, + [21074] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1370), 12, + ACTIONS(1345), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1372), 26, + ACTIONS(1347), 26, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, @@ -48191,7 +53833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -48208,144 +53850,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22363] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(637), 1, - anon_sym_COMMA, - ACTIONS(1121), 1, + [21121] = 21, + ACTIONS(1409), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1411), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1413), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1180), 1, - anon_sym_AMP_AMP, - ACTIONS(1182), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1184), 1, + ACTIONS(1457), 1, + anon_sym_PIPE, + ACTIONS(1467), 1, + sym_optional_chain, + ACTIONS(1479), 1, anon_sym_GT_GT, - ACTIONS(1188), 1, + ACTIONS(1483), 1, anon_sym_AMP, - ACTIONS(1190), 1, + ACTIONS(1485), 1, anon_sym_CARET, - ACTIONS(1192), 1, - anon_sym_PIPE, - ACTIONS(1196), 1, + ACTIONS(1491), 1, anon_sym_PERCENT, - ACTIONS(1198), 1, + ACTIONS(1493), 1, anon_sym_STAR_STAR, - ACTIONS(1206), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1208), 1, - sym_ternary_qmark, - ACTIONS(1501), 1, - anon_sym_RBRACK, - STATE(1112), 1, - aux_sym_array_repeat1, - ACTIONS(1129), 2, + STATE(600), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1469), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1174), 2, + ACTIONS(1471), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1186), 2, + ACTIONS(1481), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1194), 2, + ACTIONS(1489), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1202), 2, + ACTIONS(1497), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1204), 2, + ACTIONS(1499), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1178), 3, + ACTIONS(1473), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1200), 3, + anon_sym_LT, + ACTIONS(1495), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [22459] = 3, - ACTIONS(3), 1, + ACTIONS(1455), 9, + sym_automatic_semicolon, + sym_ternary_qmark, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [21204] = 20, + ACTIONS(1409), 1, + anon_sym_LPAREN, + ACTIONS(1411), 1, + anon_sym_LBRACK, + ACTIONS(1413), 1, + anon_sym_DOT, + ACTIONS(1457), 1, + anon_sym_PIPE, + ACTIONS(1467), 1, + sym_optional_chain, + ACTIONS(1479), 1, + anon_sym_GT_GT, + ACTIONS(1483), 1, + anon_sym_AMP, + ACTIONS(1491), 1, + anon_sym_PERCENT, + ACTIONS(1493), 1, + anon_sym_STAR_STAR, + STATE(600), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1234), 12, + ACTIONS(1469), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1471), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(1481), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1489), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1497), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1236), 26, + ACTIONS(1499), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1473), 3, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1495), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1455), 10, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_of, - 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, - [22505] = 3, - ACTIONS(3), 1, + [21285] = 4, + ACTIONS(1501), 1, + sym_regex_flags, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1324), 12, + ACTIONS(1290), 14, anon_sym_STAR, anon_sym_in, - anon_sym_LT, + anon_sym_of, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1326), 26, + anon_sym_instanceof, + ACTIONS(1292), 23, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -48358,252 +54015,395 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22551] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1328), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + [21334] = 25, + ACTIONS(1409), 1, + anon_sym_LPAREN, + ACTIONS(1411), 1, + anon_sym_LBRACK, + ACTIONS(1413), 1, + anon_sym_DOT, + ACTIONS(1467), 1, + sym_optional_chain, + ACTIONS(1505), 1, anon_sym_GT_GT, + ACTIONS(1511), 1, + anon_sym_PERCENT, + ACTIONS(1513), 1, + anon_sym_STAR_STAR, + ACTIONS(1517), 1, anon_sym_AMP, + ACTIONS(1519), 1, + anon_sym_CARET, + ACTIONS(1521), 1, anon_sym_PIPE, + ACTIONS(1529), 1, + anon_sym_AMP_AMP, + ACTIONS(1531), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1533), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1535), 1, + sym_ternary_qmark, + STATE(600), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1469), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1503), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1507), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1509), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1525), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1330), 26, + ACTIONS(1527), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1515), 3, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1523), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1347), 5, sym_automatic_semicolon, - sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_BQUOTE, + [21425] = 19, + ACTIONS(1409), 1, anon_sym_LPAREN, - anon_sym_of, + ACTIONS(1411), 1, anon_sym_LBRACK, + ACTIONS(1413), 1, 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(1467), 1, + sym_optional_chain, + ACTIONS(1479), 1, + anon_sym_GT_GT, + ACTIONS(1491), 1, anon_sym_PERCENT, + ACTIONS(1493), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + STATE(600), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1457), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1469), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [22597] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1238), 12, + ACTIONS(1471), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(1481), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1489), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1497), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1240), 26, + ACTIONS(1499), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1473), 3, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1495), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1455), 10, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_of, - 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_QMARK_QMARK, + anon_sym_BQUOTE, + [21504] = 13, + ACTIONS(1409), 1, + anon_sym_LPAREN, + ACTIONS(1411), 1, + anon_sym_LBRACK, + ACTIONS(1413), 1, + anon_sym_DOT, + ACTIONS(1467), 1, + sym_optional_chain, + ACTIONS(1491), 1, anon_sym_PERCENT, + ACTIONS(1493), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + STATE(600), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1469), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [22643] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1332), 12, + ACTIONS(1471), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1489), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1457), 8, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, 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(1334), 26, + ACTIONS(1455), 17, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_of, - 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, - [22689] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1340), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + [21571] = 22, + ACTIONS(1409), 1, + anon_sym_LPAREN, + ACTIONS(1411), 1, + anon_sym_LBRACK, + ACTIONS(1413), 1, + anon_sym_DOT, + ACTIONS(1467), 1, + sym_optional_chain, + ACTIONS(1475), 1, + anon_sym_AMP_AMP, + ACTIONS(1479), 1, anon_sym_GT_GT, + ACTIONS(1483), 1, anon_sym_AMP, + ACTIONS(1485), 1, + anon_sym_CARET, + ACTIONS(1487), 1, anon_sym_PIPE, + ACTIONS(1491), 1, + anon_sym_PERCENT, + ACTIONS(1493), 1, + anon_sym_STAR_STAR, + STATE(600), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1469), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1471), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1481), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1489), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1497), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1342), 26, + ACTIONS(1499), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1473), 3, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1495), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1455), 8, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_of, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [21656] = 21, + ACTIONS(1409), 1, + anon_sym_LPAREN, + ACTIONS(1411), 1, anon_sym_LBRACK, + ACTIONS(1413), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1467), 1, + sym_optional_chain, + ACTIONS(1479), 1, + anon_sym_GT_GT, + ACTIONS(1483), 1, + anon_sym_AMP, + ACTIONS(1485), 1, anon_sym_CARET, + ACTIONS(1487), 1, + anon_sym_PIPE, + ACTIONS(1491), 1, anon_sym_PERCENT, + ACTIONS(1493), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + STATE(600), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1469), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1471), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1481), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1489), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1497), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1499), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1473), 3, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1495), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(1455), 9, + sym_automatic_semicolon, + sym_ternary_qmark, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [22735] = 3, - ACTIONS(3), 1, + [21739] = 10, + ACTIONS(1409), 1, + anon_sym_LPAREN, + ACTIONS(1411), 1, + anon_sym_LBRACK, + ACTIONS(1413), 1, + anon_sym_DOT, + ACTIONS(1467), 1, + sym_optional_chain, + ACTIONS(1493), 1, + anon_sym_STAR_STAR, + STATE(600), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1111), 12, + ACTIONS(1469), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1457), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1107), 26, + ACTIONS(1455), 18, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_of, - 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, - [22781] = 3, - ACTIONS(3), 1, + [21800] = 5, + ACTIONS(532), 1, + sym_automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1242), 12, + ACTIONS(524), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(528), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1244), 26, - sym_automatic_semicolon, + ACTIONS(530), 23, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -48620,78 +54420,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22827] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(524), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + [21851] = 15, + ACTIONS(1409), 1, + anon_sym_LPAREN, + ACTIONS(1411), 1, + anon_sym_LBRACK, + ACTIONS(1413), 1, + anon_sym_DOT, + ACTIONS(1467), 1, + sym_optional_chain, + ACTIONS(1479), 1, + anon_sym_GT_GT, + ACTIONS(1491), 1, + anon_sym_PERCENT, + ACTIONS(1493), 1, + anon_sym_STAR_STAR, + STATE(600), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1469), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1471), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1481), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1489), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1457), 7, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(526), 26, + ACTIONS(1455), 15, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_of, - 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, - [22873] = 5, - ACTIONS(3), 1, + [21922] = 5, + ACTIONS(592), 1, + sym_automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(814), 1, - anon_sym_EQ, - ACTIONS(812), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(694), 12, + ACTIONS(584), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(588), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(677), 21, + ACTIONS(590), 23, sym_ternary_qmark, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -48708,33 +54522,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22923] = 3, - ACTIONS(3), 1, + [21973] = 25, + ACTIONS(1409), 1, + anon_sym_LPAREN, + ACTIONS(1411), 1, + anon_sym_LBRACK, + ACTIONS(1413), 1, + anon_sym_DOT, + ACTIONS(1467), 1, + sym_optional_chain, + ACTIONS(1475), 1, + anon_sym_AMP_AMP, + ACTIONS(1477), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1479), 1, + anon_sym_GT_GT, + ACTIONS(1483), 1, + anon_sym_AMP, + ACTIONS(1485), 1, + anon_sym_CARET, + ACTIONS(1487), 1, + anon_sym_PIPE, + ACTIONS(1491), 1, + anon_sym_PERCENT, + ACTIONS(1493), 1, + anon_sym_STAR_STAR, + ACTIONS(1537), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1539), 1, + sym_ternary_qmark, + STATE(600), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1344), 12, + ACTIONS(1469), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1471), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1481), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1489), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1497), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1499), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1473), 3, anon_sym_in, + anon_sym_GT, anon_sym_LT, + ACTIONS(1495), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1461), 5, + sym_automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_of, + anon_sym_BQUOTE, + [22064] = 5, + ACTIONS(582), 1, + sym_automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(574), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(578), 12, + anon_sym_STAR, + anon_sym_in, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1346), 26, - sym_automatic_semicolon, + ACTIONS(580), 23, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -48751,23 +54634,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22969] = 3, - ACTIONS(3), 1, + [22115] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1262), 12, + ACTIONS(528), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1264), 26, + ACTIONS(530), 26, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, @@ -48777,7 +54661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -48794,34 +54678,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [23015] = 4, - ACTIONS(3), 1, + [22162] = 25, + ACTIONS(1409), 1, + anon_sym_LPAREN, + ACTIONS(1411), 1, + anon_sym_LBRACK, + ACTIONS(1413), 1, + anon_sym_DOT, + ACTIONS(1467), 1, + sym_optional_chain, + ACTIONS(1505), 1, + anon_sym_GT_GT, + ACTIONS(1511), 1, + anon_sym_PERCENT, + ACTIONS(1513), 1, + anon_sym_STAR_STAR, + ACTIONS(1517), 1, + anon_sym_AMP, + ACTIONS(1519), 1, + anon_sym_CARET, + ACTIONS(1521), 1, + anon_sym_PIPE, + ACTIONS(1529), 1, + anon_sym_AMP_AMP, + ACTIONS(1531), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1533), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1535), 1, + sym_ternary_qmark, + STATE(600), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(832), 1, - anon_sym_EQ, - ACTIONS(694), 12, + ACTIONS(1469), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1503), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1507), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1509), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1525), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1527), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1515), 3, anon_sym_in, + anon_sym_GT, anon_sym_LT, + ACTIONS(1523), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1461), 5, + sym_automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_BQUOTE, + [22253] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(588), 12, + anon_sym_STAR, + anon_sym_in, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(677), 25, + ACTIONS(590), 26, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -48838,23 +54788,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [23063] = 3, - ACTIONS(3), 1, + [22300] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1266), 12, + ACTIONS(578), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1268), 26, + ACTIONS(580), 26, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, @@ -48864,7 +54815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -48881,33 +54832,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [23109] = 3, - ACTIONS(3), 1, + [22347] = 5, + ACTIONS(882), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1270), 12, + ACTIONS(879), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(756), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1272), 26, - sym_automatic_semicolon, + ACTIONS(739), 21, sym_ternary_qmark, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -48924,23 +54878,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [23155] = 3, - ACTIONS(3), 1, + [22398] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1274), 12, + ACTIONS(558), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1276), 26, + ACTIONS(560), 26, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, @@ -48950,7 +54905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -48967,33 +54922,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [23201] = 3, - ACTIONS(3), 1, + [22445] = 5, + ACTIONS(562), 1, + sym_automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1226), 12, + ACTIONS(554), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(558), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1228), 26, - sym_automatic_semicolon, + ACTIONS(560), 23, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -49010,23 +54968,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [23247] = 3, - ACTIONS(3), 1, + [22496] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1278), 12, + ACTIONS(548), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1280), 26, + ACTIONS(550), 26, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, @@ -49036,7 +54995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -49053,90 +55012,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [23293] = 27, - ACTIONS(3), 1, + [22543] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(77), 1, - anon_sym_BQUOTE, - ACTIONS(1210), 1, - anon_sym_LPAREN, - ACTIONS(1212), 1, - anon_sym_LBRACK, - ACTIONS(1214), 1, - anon_sym_DOT, - ACTIONS(1216), 1, - anon_sym_QMARK_DOT, - ACTIONS(1388), 1, - anon_sym_AMP_AMP, - ACTIONS(1390), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1392), 1, - anon_sym_GT_GT, - ACTIONS(1396), 1, - anon_sym_AMP, - ACTIONS(1398), 1, - anon_sym_CARET, - ACTIONS(1400), 1, - anon_sym_PIPE, - ACTIONS(1404), 1, - anon_sym_PERCENT, - ACTIONS(1406), 1, - anon_sym_STAR_STAR, - ACTIONS(1414), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1416), 1, - sym_ternary_qmark, - ACTIONS(1468), 1, - anon_sym_COMMA, - ACTIONS(1218), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1284), 2, - sym_automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1384), 2, + ACTIONS(518), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1394), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1402), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1410), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1412), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(614), 2, - sym_template_string, - sym_arguments, - ACTIONS(1386), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1408), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [23387] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1286), 12, - anon_sym_STAR, - anon_sym_in, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1288), 26, + ACTIONS(520), 26, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, @@ -49146,7 +55039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -49163,136 +55056,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [23433] = 28, - ACTIONS(3), 1, + [22590] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(637), 1, - anon_sym_COMMA, - ACTIONS(1121), 1, - anon_sym_LPAREN, - ACTIONS(1123), 1, - anon_sym_LBRACK, - ACTIONS(1125), 1, - anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1180), 1, - anon_sym_AMP_AMP, - ACTIONS(1182), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1184), 1, - anon_sym_GT_GT, - ACTIONS(1188), 1, - anon_sym_AMP, - ACTIONS(1190), 1, - anon_sym_CARET, - ACTIONS(1192), 1, - anon_sym_PIPE, - ACTIONS(1196), 1, - anon_sym_PERCENT, - ACTIONS(1198), 1, - anon_sym_STAR_STAR, - ACTIONS(1206), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1208), 1, - sym_ternary_qmark, - ACTIONS(1503), 1, - anon_sym_RPAREN, - STATE(1139), 1, - aux_sym_array_repeat1, - ACTIONS(1129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1174), 2, + ACTIONS(568), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1186), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1194), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1204), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1178), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1200), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [23529] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(538), 1, - sym_automatic_semicolon, - ACTIONS(530), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(534), 12, - anon_sym_STAR, - anon_sym_in, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(536), 23, - sym_ternary_qmark, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, - 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, - [23579] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1248), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1250), 26, + ACTIONS(570), 26, sym_automatic_semicolon, sym_ternary_qmark, anon_sym_SEMI, @@ -49302,7 +55083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -49319,35 +55100,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [23625] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(548), 1, + [22637] = 5, + ACTIONS(552), 1, sym_automatic_semicolon, - ACTIONS(540), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(544), 2, anon_sym_else, anon_sym_while, - ACTIONS(544), 12, + ACTIONS(548), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(546), 23, + ACTIONS(550), 23, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -49364,187 +55146,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [23675] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1290), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1292), 26, - sym_automatic_semicolon, - sym_ternary_qmark, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, + [22688] = 25, + ACTIONS(1409), 1, anon_sym_LPAREN, - anon_sym_of, + ACTIONS(1411), 1, anon_sym_LBRACK, + ACTIONS(1413), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(1467), 1, + sym_optional_chain, + ACTIONS(1475), 1, anon_sym_AMP_AMP, + ACTIONS(1477), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1479), 1, + anon_sym_GT_GT, + ACTIONS(1483), 1, + anon_sym_AMP, + ACTIONS(1485), 1, anon_sym_CARET, + ACTIONS(1487), 1, + anon_sym_PIPE, + ACTIONS(1491), 1, anon_sym_PERCENT, + ACTIONS(1493), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1537), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(1539), 1, + sym_ternary_qmark, + STATE(600), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1469), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [23721] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(558), 1, - sym_automatic_semicolon, - ACTIONS(550), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(554), 12, + ACTIONS(1471), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(1481), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1489), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1497), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(556), 23, - sym_ternary_qmark, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, - 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, + ACTIONS(1499), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1473), 3, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1495), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [23771] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, + ACTIONS(1347), 5, + sym_automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_of, anon_sym_BQUOTE, - ACTIONS(1210), 1, + [22779] = 25, + ACTIONS(1409), 1, anon_sym_LPAREN, - ACTIONS(1212), 1, + ACTIONS(1411), 1, anon_sym_LBRACK, - ACTIONS(1214), 1, + ACTIONS(1413), 1, anon_sym_DOT, - ACTIONS(1216), 1, - anon_sym_QMARK_DOT, - ACTIONS(1388), 1, + ACTIONS(1467), 1, + sym_optional_chain, + ACTIONS(1475), 1, anon_sym_AMP_AMP, - ACTIONS(1390), 1, + ACTIONS(1477), 1, anon_sym_PIPE_PIPE, - ACTIONS(1392), 1, + ACTIONS(1479), 1, anon_sym_GT_GT, - ACTIONS(1396), 1, + ACTIONS(1483), 1, anon_sym_AMP, - ACTIONS(1398), 1, + ACTIONS(1485), 1, anon_sym_CARET, - ACTIONS(1400), 1, + ACTIONS(1487), 1, anon_sym_PIPE, - ACTIONS(1404), 1, + ACTIONS(1491), 1, anon_sym_PERCENT, - ACTIONS(1406), 1, + ACTIONS(1493), 1, anon_sym_STAR_STAR, - ACTIONS(1414), 1, + ACTIONS(1537), 1, anon_sym_QMARK_QMARK, - ACTIONS(1416), 1, + ACTIONS(1539), 1, sym_ternary_qmark, - ACTIONS(1218), 2, + STATE(600), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1469), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1384), 2, + ACTIONS(1471), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1394), 2, + ACTIONS(1481), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1402), 2, + ACTIONS(1489), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1410), 2, + ACTIONS(1497), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1412), 2, + ACTIONS(1499), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(614), 2, - sym_template_string, - sym_arguments, - ACTIONS(1386), 3, + ACTIONS(1473), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1408), 3, + anon_sym_LT, + ACTIONS(1495), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1420), 3, + ACTIONS(1453), 5, sym_automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [23863] = 3, - ACTIONS(3), 1, + anon_sym_of, + anon_sym_BQUOTE, + [22870] = 5, + ACTIONS(522), 1, + sym_automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(534), 12, + ACTIONS(514), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(518), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(536), 26, - sym_automatic_semicolon, + ACTIONS(520), 23, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -49561,33 +55324,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [23909] = 3, - ACTIONS(3), 1, + [22921] = 5, + ACTIONS(572), 1, + sym_automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(544), 12, + ACTIONS(564), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(568), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(546), 26, - sym_automatic_semicolon, + ACTIONS(570), 23, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -49604,33 +55370,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [23955] = 3, - ACTIONS(3), 1, + [22972] = 6, + ACTIONS(1257), 1, + anon_sym_EQ, + ACTIONS(1545), 1, + anon_sym_of, + ACTIONS(1547), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(554), 12, + ACTIONS(1250), 11, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(556), 26, - sym_automatic_semicolon, + ACTIONS(1252), 23, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -49647,35 +55416,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24001] = 5, - ACTIONS(3), 1, + [23024] = 6, + ACTIONS(842), 1, + anon_sym_EQ, + ACTIONS(895), 1, + anon_sym_in, + ACTIONS(1208), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(488), 1, - sym_automatic_semicolon, - ACTIONS(480), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(484), 12, + ACTIONS(756), 11, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(486), 23, + ACTIONS(739), 23, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -49692,166 +55462,232 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24051] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, + [23076] = 25, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1180), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1421), 1, anon_sym_AMP_AMP, - ACTIONS(1182), 1, + ACTIONS(1423), 1, anon_sym_PIPE_PIPE, - ACTIONS(1184), 1, + ACTIONS(1425), 1, anon_sym_GT_GT, - ACTIONS(1188), 1, + ACTIONS(1429), 1, anon_sym_AMP, - ACTIONS(1190), 1, + ACTIONS(1431), 1, anon_sym_CARET, - ACTIONS(1192), 1, + ACTIONS(1433), 1, anon_sym_PIPE, - ACTIONS(1196), 1, + ACTIONS(1437), 1, anon_sym_PERCENT, - ACTIONS(1198), 1, + ACTIONS(1439), 1, anon_sym_STAR_STAR, - ACTIONS(1206), 1, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - ACTIONS(1208), 1, + ACTIONS(1449), 1, sym_ternary_qmark, - ACTIONS(1282), 1, - anon_sym_COMMA, - ACTIONS(1505), 1, - anon_sym_COLON, - ACTIONS(1129), 2, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1174), 2, + ACTIONS(1417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1186), 2, + ACTIONS(1427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1194), 2, + ACTIONS(1435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1202), 2, + ACTIONS(1443), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1204), 2, + ACTIONS(1445), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1178), 3, + ACTIONS(1419), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1200), 3, + anon_sym_LT, + ACTIONS(1441), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [24144] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, + ACTIONS(1550), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + [23166] = 27, + ACTIONS(1409), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1411), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1413), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1180), 1, - anon_sym_AMP_AMP, - ACTIONS(1182), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1184), 1, + ACTIONS(1467), 1, + sym_optional_chain, + ACTIONS(1505), 1, anon_sym_GT_GT, - ACTIONS(1188), 1, + ACTIONS(1511), 1, + anon_sym_PERCENT, + ACTIONS(1513), 1, + anon_sym_STAR_STAR, + ACTIONS(1517), 1, anon_sym_AMP, - ACTIONS(1190), 1, + ACTIONS(1519), 1, anon_sym_CARET, - ACTIONS(1192), 1, + ACTIONS(1521), 1, anon_sym_PIPE, - ACTIONS(1196), 1, - anon_sym_PERCENT, - ACTIONS(1198), 1, - anon_sym_STAR_STAR, - ACTIONS(1206), 1, + ACTIONS(1529), 1, + anon_sym_AMP_AMP, + ACTIONS(1531), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1533), 1, anon_sym_QMARK_QMARK, - ACTIONS(1208), 1, + ACTIONS(1535), 1, sym_ternary_qmark, - ACTIONS(1282), 1, + ACTIONS(1554), 1, anon_sym_COMMA, - ACTIONS(1507), 1, - anon_sym_RPAREN, - ACTIONS(1129), 2, + STATE(600), 1, + sym_arguments, + STATE(1147), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1469), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1174), 2, + ACTIONS(1503), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1186), 2, + ACTIONS(1507), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1194), 2, + ACTIONS(1509), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1202), 2, + ACTIONS(1525), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1204), 2, + ACTIONS(1527), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1178), 3, + ACTIONS(1552), 2, + sym_automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1515), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1200), 3, + anon_sym_LT, + ACTIONS(1523), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [24237] = 5, - ACTIONS(3), 1, + [23260] = 25, + ACTIONS(1214), 1, + anon_sym_LPAREN, + ACTIONS(1216), 1, + anon_sym_LBRACK, + ACTIONS(1218), 1, + anon_sym_DOT, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1421), 1, + anon_sym_AMP_AMP, + ACTIONS(1423), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1425), 1, + anon_sym_GT_GT, + ACTIONS(1429), 1, + anon_sym_AMP, + ACTIONS(1431), 1, + anon_sym_CARET, + ACTIONS(1433), 1, + anon_sym_PIPE, + ACTIONS(1437), 1, + anon_sym_PERCENT, + ACTIONS(1439), 1, + anon_sym_STAR_STAR, + ACTIONS(1447), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1449), 1, + sym_ternary_qmark, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(802), 1, + ACTIONS(1230), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1417), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1427), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1435), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1443), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1445), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1419), 3, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1441), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1556), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + [23350] = 5, + ACTIONS(842), 1, anon_sym_EQ, - ACTIONS(846), 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(900), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RBRACK, - ACTIONS(694), 12, + ACTIONS(756), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(677), 21, + ACTIONS(739), 21, sym_ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -49868,297 +55704,215 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24286] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, + [23400] = 5, + ACTIONS(751), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, - anon_sym_LBRACK, - ACTIONS(1125), 1, - anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1180), 1, - anon_sym_AMP_AMP, - ACTIONS(1182), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1184), 1, + ACTIONS(1558), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(756), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, anon_sym_GT_GT, - ACTIONS(1188), 1, anon_sym_AMP, - ACTIONS(1190), 1, - anon_sym_CARET, - ACTIONS(1192), 1, anon_sym_PIPE, - ACTIONS(1196), 1, - anon_sym_PERCENT, - ACTIONS(1198), 1, - anon_sym_STAR_STAR, - ACTIONS(1206), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1208), 1, - sym_ternary_qmark, - ACTIONS(1129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1174), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1186), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1194), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1202), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1204), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1509), 2, + ACTIONS(739), 23, + sym_automatic_semicolon, + sym_ternary_qmark, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACE, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1178), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1200), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [24377] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, - anon_sym_LPAREN, - ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1180), 1, + sym_optional_chain, anon_sym_AMP_AMP, - ACTIONS(1182), 1, anon_sym_PIPE_PIPE, - ACTIONS(1184), 1, - anon_sym_GT_GT, - ACTIONS(1188), 1, - anon_sym_AMP, - ACTIONS(1190), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1192), 1, - anon_sym_PIPE, - ACTIONS(1196), 1, anon_sym_PERCENT, - ACTIONS(1198), 1, anon_sym_STAR_STAR, - ACTIONS(1206), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1208), 1, - sym_ternary_qmark, - ACTIONS(1282), 1, - anon_sym_COMMA, - ACTIONS(1511), 1, - anon_sym_RBRACE, - ACTIONS(1129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1174), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1186), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1194), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1204), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1178), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1200), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [24470] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1121), 1, + [23450] = 27, + ACTIONS(1409), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1411), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1413), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1180), 1, - anon_sym_AMP_AMP, - ACTIONS(1182), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1184), 1, + ACTIONS(1467), 1, + sym_optional_chain, + ACTIONS(1505), 1, anon_sym_GT_GT, - ACTIONS(1188), 1, + ACTIONS(1511), 1, + anon_sym_PERCENT, + ACTIONS(1513), 1, + anon_sym_STAR_STAR, + ACTIONS(1517), 1, anon_sym_AMP, - ACTIONS(1190), 1, + ACTIONS(1519), 1, anon_sym_CARET, - ACTIONS(1192), 1, + ACTIONS(1521), 1, anon_sym_PIPE, - ACTIONS(1196), 1, - anon_sym_PERCENT, - ACTIONS(1198), 1, - anon_sym_STAR_STAR, - ACTIONS(1206), 1, + ACTIONS(1529), 1, + anon_sym_AMP_AMP, + ACTIONS(1531), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1533), 1, anon_sym_QMARK_QMARK, - ACTIONS(1208), 1, + ACTIONS(1535), 1, sym_ternary_qmark, - ACTIONS(1282), 1, + ACTIONS(1554), 1, anon_sym_COMMA, - ACTIONS(1513), 1, - anon_sym_RPAREN, - ACTIONS(1129), 2, + STATE(600), 1, + sym_arguments, + STATE(1147), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1469), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1174), 2, + ACTIONS(1503), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1186), 2, + ACTIONS(1507), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1194), 2, + ACTIONS(1509), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1202), 2, + ACTIONS(1525), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1204), 2, + ACTIONS(1527), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1178), 3, + ACTIONS(1560), 2, + sym_automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1515), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1200), 3, + anon_sym_LT, + ACTIONS(1523), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [24563] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, + [23544] = 27, + ACTIONS(1409), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1411), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1413), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1180), 1, - anon_sym_AMP_AMP, - ACTIONS(1182), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1184), 1, + ACTIONS(1467), 1, + sym_optional_chain, + ACTIONS(1505), 1, anon_sym_GT_GT, - ACTIONS(1188), 1, + ACTIONS(1511), 1, + anon_sym_PERCENT, + ACTIONS(1513), 1, + anon_sym_STAR_STAR, + ACTIONS(1517), 1, anon_sym_AMP, - ACTIONS(1190), 1, + ACTIONS(1519), 1, anon_sym_CARET, - ACTIONS(1192), 1, + ACTIONS(1521), 1, anon_sym_PIPE, - ACTIONS(1196), 1, - anon_sym_PERCENT, - ACTIONS(1198), 1, - anon_sym_STAR_STAR, - ACTIONS(1206), 1, + ACTIONS(1529), 1, + anon_sym_AMP_AMP, + ACTIONS(1531), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1533), 1, anon_sym_QMARK_QMARK, - ACTIONS(1208), 1, + ACTIONS(1535), 1, sym_ternary_qmark, - ACTIONS(1282), 1, + ACTIONS(1562), 1, anon_sym_COMMA, - ACTIONS(1515), 1, - anon_sym_RBRACK, - ACTIONS(1129), 2, + ACTIONS(1565), 1, + anon_sym_RBRACE, + STATE(600), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1453), 2, + sym_automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1469), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1174), 2, + ACTIONS(1503), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1186), 2, + ACTIONS(1507), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1194), 2, + ACTIONS(1509), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1202), 2, + ACTIONS(1525), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1204), 2, + ACTIONS(1527), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1178), 3, + ACTIONS(1515), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1200), 3, + anon_sym_LT, + ACTIONS(1523), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [24656] = 5, - ACTIONS(3), 1, + [23638] = 6, + ACTIONS(1311), 1, + anon_sym_EQ, + ACTIONS(1543), 1, + anon_sym_of, + ACTIONS(1567), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1517), 1, - anon_sym_LPAREN, - ACTIONS(1520), 1, - anon_sym_COLON, - ACTIONS(1252), 12, + ACTIONS(1259), 11, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 23, - sym_automatic_semicolon, + ACTIONS(1261), 23, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -50175,165 +55929,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24705] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, + [23690] = 27, + ACTIONS(1409), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1411), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1413), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1526), 1, - anon_sym_AMP_AMP, - ACTIONS(1528), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1530), 1, + ACTIONS(1467), 1, + sym_optional_chain, + ACTIONS(1505), 1, anon_sym_GT_GT, - ACTIONS(1534), 1, + ACTIONS(1511), 1, + anon_sym_PERCENT, + ACTIONS(1513), 1, + anon_sym_STAR_STAR, + ACTIONS(1517), 1, anon_sym_AMP, - ACTIONS(1536), 1, + ACTIONS(1519), 1, anon_sym_CARET, - ACTIONS(1538), 1, + ACTIONS(1521), 1, anon_sym_PIPE, - ACTIONS(1542), 1, - anon_sym_PERCENT, - ACTIONS(1544), 1, - anon_sym_STAR_STAR, - ACTIONS(1552), 1, + ACTIONS(1529), 1, + anon_sym_AMP_AMP, + ACTIONS(1531), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1533), 1, anon_sym_QMARK_QMARK, - ACTIONS(1554), 1, + ACTIONS(1535), 1, sym_ternary_qmark, - ACTIONS(1129), 2, + ACTIONS(1554), 1, + anon_sym_COMMA, + STATE(600), 1, + sym_arguments, + STATE(1147), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1469), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1246), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1522), 2, + ACTIONS(1503), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1532), 2, + ACTIONS(1507), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1540), 2, + ACTIONS(1509), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1548), 2, + ACTIONS(1525), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 2, + ACTIONS(1527), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1524), 3, + ACTIONS(1570), 2, + sym_automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1515), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1546), 3, + anon_sym_LT, + ACTIONS(1523), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [24796] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, + [23784] = 26, + ACTIONS(1409), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1411), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1413), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1180), 1, + ACTIONS(1467), 1, + sym_optional_chain, + ACTIONS(1475), 1, anon_sym_AMP_AMP, - ACTIONS(1182), 1, + ACTIONS(1477), 1, anon_sym_PIPE_PIPE, - ACTIONS(1184), 1, + ACTIONS(1479), 1, anon_sym_GT_GT, - ACTIONS(1188), 1, + ACTIONS(1483), 1, anon_sym_AMP, - ACTIONS(1190), 1, + ACTIONS(1485), 1, anon_sym_CARET, - ACTIONS(1192), 1, + ACTIONS(1487), 1, anon_sym_PIPE, - ACTIONS(1196), 1, + ACTIONS(1491), 1, anon_sym_PERCENT, - ACTIONS(1198), 1, + ACTIONS(1493), 1, anon_sym_STAR_STAR, - ACTIONS(1206), 1, + ACTIONS(1537), 1, anon_sym_QMARK_QMARK, - ACTIONS(1208), 1, + ACTIONS(1539), 1, sym_ternary_qmark, - ACTIONS(1282), 1, - anon_sym_COMMA, - ACTIONS(1556), 1, - anon_sym_RBRACE, - ACTIONS(1129), 2, + ACTIONS(1574), 1, + anon_sym_in, + STATE(600), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1469), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1174), 2, + ACTIONS(1471), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1186), 2, + ACTIONS(1473), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1481), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1194), 2, + ACTIONS(1489), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1202), 2, + ACTIONS(1497), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1204), 2, + ACTIONS(1499), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1178), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1200), 3, + ACTIONS(1495), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [24889] = 5, - ACTIONS(3), 1, + ACTIONS(1572), 4, + sym_automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_of, + [23876] = 6, + ACTIONS(510), 1, + anon_sym_EQ, + ACTIONS(1541), 1, + anon_sym_of, + ACTIONS(1577), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(689), 1, - anon_sym_LPAREN, - ACTIONS(1558), 1, - anon_sym_COLON, - ACTIONS(694), 12, + ACTIONS(506), 11, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(677), 23, - sym_automatic_semicolon, + ACTIONS(508), 23, sym_ternary_qmark, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -50350,1020 +56108,904 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24938] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, + [23928] = 5, + ACTIONS(1580), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, - anon_sym_LBRACK, - ACTIONS(1125), 1, - anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1526), 1, - anon_sym_AMP_AMP, - ACTIONS(1528), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1530), 1, + ACTIONS(1583), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1270), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, anon_sym_GT_GT, - ACTIONS(1534), 1, anon_sym_AMP, - ACTIONS(1536), 1, - anon_sym_CARET, - ACTIONS(1538), 1, anon_sym_PIPE, - ACTIONS(1542), 1, - anon_sym_PERCENT, - ACTIONS(1544), 1, - anon_sym_STAR_STAR, - ACTIONS(1552), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1554), 1, - sym_ternary_qmark, - ACTIONS(1129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1250), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1522), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1532), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1540), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1548), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 2, + ACTIONS(1272), 23, + sym_automatic_semicolon, + sym_ternary_qmark, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1524), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1546), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [25029] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1121), 1, + [23978] = 25, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1526), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1589), 1, anon_sym_AMP_AMP, - ACTIONS(1528), 1, + ACTIONS(1591), 1, anon_sym_PIPE_PIPE, - ACTIONS(1530), 1, + ACTIONS(1593), 1, anon_sym_GT_GT, - ACTIONS(1534), 1, + ACTIONS(1597), 1, anon_sym_AMP, - ACTIONS(1536), 1, + ACTIONS(1599), 1, anon_sym_CARET, - ACTIONS(1538), 1, + ACTIONS(1601), 1, anon_sym_PIPE, - ACTIONS(1542), 1, + ACTIONS(1605), 1, anon_sym_PERCENT, - ACTIONS(1544), 1, + ACTIONS(1607), 1, anon_sym_STAR_STAR, - ACTIONS(1552), 1, + ACTIONS(1615), 1, anon_sym_QMARK_QMARK, - ACTIONS(1554), 1, + ACTIONS(1617), 1, sym_ternary_qmark, - ACTIONS(1129), 2, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1176), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1522), 2, + ACTIONS(1585), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1532), 2, + ACTIONS(1595), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1540), 2, + ACTIONS(1603), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1548), 2, + ACTIONS(1611), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 2, + ACTIONS(1613), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1524), 3, + ACTIONS(1459), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(1587), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1546), 3, + anon_sym_LT, + ACTIONS(1609), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [25120] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, + [24067] = 25, + ACTIONS(1409), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1411), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1413), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1544), 1, - anon_sym_STAR_STAR, - ACTIONS(1129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1117), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(1467), 1, + sym_optional_chain, + ACTIONS(1505), 1, anon_sym_GT_GT, + ACTIONS(1511), 1, + anon_sym_PERCENT, + ACTIONS(1513), 1, + anon_sym_STAR_STAR, + ACTIONS(1517), 1, anon_sym_AMP, + ACTIONS(1519), 1, + anon_sym_CARET, + ACTIONS(1521), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1119), 15, - sym_ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, + ACTIONS(1529), 1, anon_sym_AMP_AMP, + ACTIONS(1531), 1, 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, + ACTIONS(1533), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [25181] = 16, - ACTIONS(3), 1, + ACTIONS(1535), 1, + sym_ternary_qmark, + STATE(600), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, - anon_sym_LPAREN, - ACTIONS(1123), 1, - anon_sym_LBRACK, - ACTIONS(1125), 1, - anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1530), 1, - anon_sym_GT_GT, - ACTIONS(1542), 1, - anon_sym_PERCENT, - ACTIONS(1544), 1, - anon_sym_STAR_STAR, - ACTIONS(1129), 2, + ACTIONS(1469), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1522), 2, + ACTIONS(1503), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1532), 2, + ACTIONS(1507), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1540), 2, + ACTIONS(1509), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1117), 7, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(1525), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1119), 12, - sym_ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(1527), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1465), 3, + sym_automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(1515), 3, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1523), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [25252] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, + [24156] = 27, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1530), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1421), 1, + anon_sym_AMP_AMP, + ACTIONS(1423), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1425), 1, anon_sym_GT_GT, - ACTIONS(1534), 1, + ACTIONS(1429), 1, anon_sym_AMP, - ACTIONS(1536), 1, + ACTIONS(1431), 1, anon_sym_CARET, - ACTIONS(1538), 1, + ACTIONS(1433), 1, anon_sym_PIPE, - ACTIONS(1542), 1, + ACTIONS(1437), 1, anon_sym_PERCENT, - ACTIONS(1544), 1, + ACTIONS(1439), 1, anon_sym_STAR_STAR, - ACTIONS(1129), 2, + ACTIONS(1447), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1449), 1, + sym_ternary_qmark, + ACTIONS(1619), 1, + anon_sym_COMMA, + ACTIONS(1621), 1, + anon_sym_RPAREN, + STATE(487), 1, + sym_arguments, + STATE(1028), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1522), 2, + ACTIONS(1417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1532), 2, + ACTIONS(1427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1540), 2, + ACTIONS(1435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1548), 2, + ACTIONS(1443), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 2, + ACTIONS(1445), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1524), 3, + ACTIONS(1419), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1546), 3, + anon_sym_LT, + ACTIONS(1441), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1119), 6, - sym_ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [25335] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, + [24249] = 25, + ACTIONS(1409), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1411), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1413), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1180), 1, - anon_sym_AMP_AMP, - ACTIONS(1182), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1184), 1, + ACTIONS(1467), 1, + sym_optional_chain, + ACTIONS(1505), 1, anon_sym_GT_GT, - ACTIONS(1188), 1, + ACTIONS(1511), 1, + anon_sym_PERCENT, + ACTIONS(1513), 1, + anon_sym_STAR_STAR, + ACTIONS(1517), 1, anon_sym_AMP, - ACTIONS(1190), 1, + ACTIONS(1519), 1, anon_sym_CARET, - ACTIONS(1192), 1, + ACTIONS(1521), 1, anon_sym_PIPE, - ACTIONS(1196), 1, - anon_sym_PERCENT, - ACTIONS(1198), 1, - anon_sym_STAR_STAR, - ACTIONS(1206), 1, + ACTIONS(1529), 1, + anon_sym_AMP_AMP, + ACTIONS(1531), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1533), 1, anon_sym_QMARK_QMARK, - ACTIONS(1208), 1, + ACTIONS(1535), 1, sym_ternary_qmark, - ACTIONS(1282), 1, - anon_sym_COMMA, - ACTIONS(1560), 1, - anon_sym_RBRACK, - ACTIONS(1129), 2, + STATE(600), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1469), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1174), 2, + ACTIONS(1503), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1186), 2, + ACTIONS(1507), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1194), 2, + ACTIONS(1509), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1202), 2, + ACTIONS(1525), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1204), 2, + ACTIONS(1527), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1178), 3, + ACTIONS(1515), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1200), 3, + anon_sym_LT, + ACTIONS(1523), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [25428] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, - anon_sym_BQUOTE, - ACTIONS(1210), 1, + ACTIONS(1572), 3, + sym_automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + [24338] = 27, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1212), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1214), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1216), 1, - anon_sym_QMARK_DOT, - ACTIONS(1388), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1421), 1, anon_sym_AMP_AMP, - ACTIONS(1390), 1, + ACTIONS(1423), 1, anon_sym_PIPE_PIPE, - ACTIONS(1392), 1, + ACTIONS(1425), 1, anon_sym_GT_GT, - ACTIONS(1396), 1, + ACTIONS(1429), 1, anon_sym_AMP, - ACTIONS(1398), 1, + ACTIONS(1431), 1, anon_sym_CARET, - ACTIONS(1400), 1, + ACTIONS(1433), 1, anon_sym_PIPE, - ACTIONS(1404), 1, + ACTIONS(1437), 1, anon_sym_PERCENT, - ACTIONS(1406), 1, + ACTIONS(1439), 1, anon_sym_STAR_STAR, - ACTIONS(1414), 1, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - ACTIONS(1416), 1, + ACTIONS(1449), 1, sym_ternary_qmark, - ACTIONS(1562), 1, - anon_sym_SEMI, - ACTIONS(1564), 1, - sym_automatic_semicolon, - ACTIONS(1218), 2, + ACTIONS(1619), 1, + anon_sym_COMMA, + ACTIONS(1623), 1, + anon_sym_RPAREN, + STATE(487), 1, + sym_arguments, + STATE(1028), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1384), 2, + ACTIONS(1417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1394), 2, + ACTIONS(1427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1402), 2, + ACTIONS(1435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1410), 2, + ACTIONS(1443), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1412), 2, + ACTIONS(1445), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(614), 2, - sym_template_string, - sym_arguments, - ACTIONS(1386), 3, + ACTIONS(1419), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1408), 3, + anon_sym_LT, + ACTIONS(1441), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [25521] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, + [24431] = 10, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1526), 1, - anon_sym_AMP_AMP, - ACTIONS(1530), 1, - anon_sym_GT_GT, - ACTIONS(1534), 1, - anon_sym_AMP, - ACTIONS(1536), 1, - anon_sym_CARET, - ACTIONS(1538), 1, - anon_sym_PIPE, - ACTIONS(1542), 1, - anon_sym_PERCENT, - ACTIONS(1544), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1607), 1, anon_sym_STAR_STAR, - ACTIONS(1129), 2, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1522), 2, + ACTIONS(1457), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1532), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1540), 2, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1548), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1524), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1546), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1119), 5, + ACTIONS(1455), 16, sym_ternary_qmark, anon_sym_LBRACE, anon_sym_COLON, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [25606] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, + anon_sym_instanceof, anon_sym_BQUOTE, - ACTIONS(1121), 1, + [24490] = 27, + ACTIONS(675), 1, + anon_sym_COMMA, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1180), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1421), 1, anon_sym_AMP_AMP, - ACTIONS(1182), 1, + ACTIONS(1423), 1, anon_sym_PIPE_PIPE, - ACTIONS(1184), 1, + ACTIONS(1425), 1, anon_sym_GT_GT, - ACTIONS(1188), 1, + ACTIONS(1429), 1, anon_sym_AMP, - ACTIONS(1190), 1, + ACTIONS(1431), 1, anon_sym_CARET, - ACTIONS(1192), 1, + ACTIONS(1433), 1, anon_sym_PIPE, - ACTIONS(1196), 1, + ACTIONS(1437), 1, anon_sym_PERCENT, - ACTIONS(1198), 1, + ACTIONS(1439), 1, anon_sym_STAR_STAR, - ACTIONS(1206), 1, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - ACTIONS(1208), 1, + ACTIONS(1449), 1, sym_ternary_qmark, - ACTIONS(1282), 1, - anon_sym_COMMA, - ACTIONS(1566), 1, + ACTIONS(1625), 1, anon_sym_RPAREN, - ACTIONS(1129), 2, + STATE(487), 1, + sym_arguments, + STATE(1219), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1174), 2, + ACTIONS(1417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1186), 2, + ACTIONS(1427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1194), 2, + ACTIONS(1435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1202), 2, + ACTIONS(1443), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1204), 2, + ACTIONS(1445), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1178), 3, + ACTIONS(1419), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1200), 3, + anon_sym_LT, + ACTIONS(1441), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [25699] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, - anon_sym_BQUOTE, - ACTIONS(1210), 1, + [24583] = 25, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1212), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1214), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1216), 1, - anon_sym_QMARK_DOT, - ACTIONS(1388), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1421), 1, anon_sym_AMP_AMP, - ACTIONS(1390), 1, + ACTIONS(1423), 1, anon_sym_PIPE_PIPE, - ACTIONS(1392), 1, + ACTIONS(1425), 1, anon_sym_GT_GT, - ACTIONS(1396), 1, + ACTIONS(1429), 1, anon_sym_AMP, - ACTIONS(1398), 1, + ACTIONS(1431), 1, anon_sym_CARET, - ACTIONS(1400), 1, + ACTIONS(1433), 1, anon_sym_PIPE, - ACTIONS(1404), 1, + ACTIONS(1437), 1, anon_sym_PERCENT, - ACTIONS(1406), 1, + ACTIONS(1439), 1, anon_sym_STAR_STAR, - ACTIONS(1414), 1, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - ACTIONS(1416), 1, + ACTIONS(1449), 1, sym_ternary_qmark, - ACTIONS(1218), 2, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1384), 2, + ACTIONS(1417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1394), 2, + ACTIONS(1427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1402), 2, + ACTIONS(1435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1410), 2, + ACTIONS(1443), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1412), 2, + ACTIONS(1445), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1568), 2, - sym_automatic_semicolon, - anon_sym_SEMI, - STATE(614), 2, - sym_template_string, - sym_arguments, - ACTIONS(1386), 3, + ACTIONS(1419), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1408), 3, + anon_sym_LT, + ACTIONS(1441), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [25790] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, + ACTIONS(1627), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [24672] = 27, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1526), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1421), 1, anon_sym_AMP_AMP, - ACTIONS(1528), 1, + ACTIONS(1423), 1, anon_sym_PIPE_PIPE, - ACTIONS(1530), 1, + ACTIONS(1425), 1, anon_sym_GT_GT, - ACTIONS(1534), 1, + ACTIONS(1429), 1, anon_sym_AMP, - ACTIONS(1536), 1, + ACTIONS(1431), 1, anon_sym_CARET, - ACTIONS(1538), 1, + ACTIONS(1433), 1, anon_sym_PIPE, - ACTIONS(1542), 1, + ACTIONS(1437), 1, anon_sym_PERCENT, - ACTIONS(1544), 1, + ACTIONS(1439), 1, anon_sym_STAR_STAR, - ACTIONS(1552), 1, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - ACTIONS(1554), 1, + ACTIONS(1449), 1, sym_ternary_qmark, - ACTIONS(1129), 2, + ACTIONS(1619), 1, + anon_sym_COMMA, + ACTIONS(1629), 1, + anon_sym_RPAREN, + STATE(487), 1, + sym_arguments, + STATE(1028), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1224), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1522), 2, + ACTIONS(1417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1532), 2, + ACTIONS(1427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1540), 2, + ACTIONS(1435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1548), 2, + ACTIONS(1443), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 2, + ACTIONS(1445), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1524), 3, + ACTIONS(1419), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1546), 3, + anon_sym_LT, + ACTIONS(1441), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [25881] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, + [24765] = 23, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1542), 1, - anon_sym_PERCENT, - ACTIONS(1544), 1, - anon_sym_STAR_STAR, - ACTIONS(1129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1522), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1540), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1117), 8, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1119), 14, - sym_ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1589), 1, anon_sym_AMP_AMP, + ACTIONS(1591), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [25948] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, - anon_sym_LPAREN, - ACTIONS(1123), 1, - anon_sym_LBRACK, - ACTIONS(1125), 1, - anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1530), 1, + ACTIONS(1593), 1, anon_sym_GT_GT, - ACTIONS(1542), 1, - anon_sym_PERCENT, - ACTIONS(1544), 1, - anon_sym_STAR_STAR, - ACTIONS(1117), 2, + ACTIONS(1597), 1, anon_sym_AMP, + ACTIONS(1599), 1, + anon_sym_CARET, + ACTIONS(1601), 1, anon_sym_PIPE, - ACTIONS(1129), 2, + ACTIONS(1605), 1, + anon_sym_PERCENT, + ACTIONS(1607), 1, + anon_sym_STAR_STAR, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1522), 2, + ACTIONS(1585), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1532), 2, + ACTIONS(1595), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1540), 2, + ACTIONS(1603), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1548), 2, + ACTIONS(1611), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 2, + ACTIONS(1613), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1524), 3, + ACTIONS(1587), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1546), 3, + anon_sym_LT, + ACTIONS(1609), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1119), 7, + ACTIONS(1455), 5, sym_ternary_qmark, anon_sym_LBRACE, anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_QMARK_QMARK, - [26027] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, anon_sym_BQUOTE, - ACTIONS(1121), 1, + [24850] = 25, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1180), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1589), 1, anon_sym_AMP_AMP, - ACTIONS(1182), 1, + ACTIONS(1591), 1, anon_sym_PIPE_PIPE, - ACTIONS(1184), 1, + ACTIONS(1593), 1, anon_sym_GT_GT, - ACTIONS(1188), 1, + ACTIONS(1597), 1, anon_sym_AMP, - ACTIONS(1190), 1, + ACTIONS(1599), 1, anon_sym_CARET, - ACTIONS(1192), 1, + ACTIONS(1601), 1, anon_sym_PIPE, - ACTIONS(1196), 1, + ACTIONS(1605), 1, anon_sym_PERCENT, - ACTIONS(1198), 1, + ACTIONS(1607), 1, anon_sym_STAR_STAR, - ACTIONS(1206), 1, + ACTIONS(1615), 1, anon_sym_QMARK_QMARK, - ACTIONS(1208), 1, + ACTIONS(1617), 1, sym_ternary_qmark, - ACTIONS(1129), 2, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1174), 2, + ACTIONS(1585), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1186), 2, + ACTIONS(1595), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1194), 2, + ACTIONS(1603), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1202), 2, + ACTIONS(1611), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1204), 2, + ACTIONS(1613), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1464), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1178), 3, + ACTIONS(1451), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(1587), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1200), 3, + anon_sym_LT, + ACTIONS(1609), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [26118] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1117), 1, - anon_sym_PIPE, - ACTIONS(1121), 1, + [24939] = 27, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1530), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1421), 1, + anon_sym_AMP_AMP, + ACTIONS(1423), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1425), 1, anon_sym_GT_GT, - ACTIONS(1534), 1, + ACTIONS(1429), 1, anon_sym_AMP, - ACTIONS(1542), 1, + ACTIONS(1431), 1, + anon_sym_CARET, + ACTIONS(1433), 1, + anon_sym_PIPE, + ACTIONS(1437), 1, anon_sym_PERCENT, - ACTIONS(1544), 1, + ACTIONS(1439), 1, anon_sym_STAR_STAR, - ACTIONS(1129), 2, + ACTIONS(1447), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1449), 1, + sym_ternary_qmark, + ACTIONS(1619), 1, + anon_sym_COMMA, + ACTIONS(1631), 1, + anon_sym_RPAREN, + STATE(487), 1, + sym_arguments, + STATE(1028), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1522), 2, + ACTIONS(1417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1532), 2, + ACTIONS(1427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1540), 2, + ACTIONS(1435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1548), 2, + ACTIONS(1443), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 2, + ACTIONS(1445), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1524), 3, + ACTIONS(1419), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1546), 3, + anon_sym_LT, + ACTIONS(1441), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1119), 7, - sym_ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [26199] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1117), 1, - anon_sym_PIPE, - ACTIONS(1121), 1, + [25032] = 25, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1530), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1589), 1, + anon_sym_AMP_AMP, + ACTIONS(1591), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1593), 1, anon_sym_GT_GT, - ACTIONS(1534), 1, + ACTIONS(1597), 1, anon_sym_AMP, - ACTIONS(1536), 1, + ACTIONS(1599), 1, anon_sym_CARET, - ACTIONS(1542), 1, + ACTIONS(1601), 1, + anon_sym_PIPE, + ACTIONS(1605), 1, anon_sym_PERCENT, - ACTIONS(1544), 1, + ACTIONS(1607), 1, anon_sym_STAR_STAR, - ACTIONS(1129), 2, + ACTIONS(1615), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1617), 1, + sym_ternary_qmark, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1522), 2, + ACTIONS(1585), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1532), 2, + ACTIONS(1595), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1540), 2, + ACTIONS(1603), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1548), 2, + ACTIONS(1611), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 2, + ACTIONS(1613), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1524), 3, + ACTIONS(1367), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(1587), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1546), 3, + anon_sym_LT, + ACTIONS(1609), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1119), 6, - sym_ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [26282] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, + [25121] = 12, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1542), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1605), 1, anon_sym_PERCENT, - ACTIONS(1544), 1, + ACTIONS(1607), 1, anon_sym_STAR_STAR, - ACTIONS(1129), 2, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1522), 2, + ACTIONS(1585), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1117), 10, + ACTIONS(1457), 10, anon_sym_in, - anon_sym_LT, anon_sym_GT, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -51371,7 +57013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1119), 14, + ACTIONS(1455), 15, sym_ternary_qmark, anon_sym_LBRACE, anon_sym_COLON, @@ -51386,1461 +57028,1545 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [26347] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, anon_sym_BQUOTE, - ACTIONS(1121), 1, + [25184] = 21, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1530), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1457), 1, + anon_sym_PIPE, + ACTIONS(1593), 1, anon_sym_GT_GT, - ACTIONS(1542), 1, + ACTIONS(1597), 1, + anon_sym_AMP, + ACTIONS(1599), 1, + anon_sym_CARET, + ACTIONS(1605), 1, anon_sym_PERCENT, - ACTIONS(1544), 1, + ACTIONS(1607), 1, anon_sym_STAR_STAR, - ACTIONS(1129), 2, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1522), 2, + ACTIONS(1585), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1532), 2, + ACTIONS(1595), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1540), 2, + ACTIONS(1603), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1524), 3, + ACTIONS(1611), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1613), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1587), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1546), 3, + anon_sym_LT, + ACTIONS(1609), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1117), 4, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1119), 9, + ACTIONS(1455), 7, sym_ternary_qmark, anon_sym_LBRACE, anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_QMARK_QMARK, - [26422] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, anon_sym_BQUOTE, - ACTIONS(1121), 1, + [25265] = 27, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1180), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1421), 1, anon_sym_AMP_AMP, - ACTIONS(1182), 1, + ACTIONS(1423), 1, anon_sym_PIPE_PIPE, - ACTIONS(1184), 1, + ACTIONS(1425), 1, anon_sym_GT_GT, - ACTIONS(1188), 1, + ACTIONS(1429), 1, anon_sym_AMP, - ACTIONS(1190), 1, + ACTIONS(1431), 1, anon_sym_CARET, - ACTIONS(1192), 1, + ACTIONS(1433), 1, anon_sym_PIPE, - ACTIONS(1196), 1, + ACTIONS(1437), 1, anon_sym_PERCENT, - ACTIONS(1198), 1, + ACTIONS(1439), 1, anon_sym_STAR_STAR, - ACTIONS(1206), 1, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - ACTIONS(1208), 1, + ACTIONS(1449), 1, sym_ternary_qmark, - ACTIONS(1282), 1, + ACTIONS(1619), 1, anon_sym_COMMA, - ACTIONS(1570), 1, - anon_sym_RBRACE, - ACTIONS(1129), 2, + ACTIONS(1633), 1, + anon_sym_COLON, + STATE(487), 1, + sym_arguments, + STATE(1028), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1174), 2, + ACTIONS(1417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1186), 2, + ACTIONS(1427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1194), 2, + ACTIONS(1435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1202), 2, + ACTIONS(1443), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1204), 2, + ACTIONS(1445), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1178), 3, + ACTIONS(1419), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1200), 3, + anon_sym_LT, + ACTIONS(1441), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [26515] = 24, - ACTIONS(3), 1, + [25358] = 6, + ACTIONS(864), 1, + anon_sym_COMMA, + ACTIONS(879), 1, + anon_sym_RBRACK, + ACTIONS(882), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, + ACTIONS(756), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(739), 21, + sym_ternary_qmark, anon_sym_LPAREN, - ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1526), 1, + sym_optional_chain, anon_sym_AMP_AMP, - ACTIONS(1528), 1, anon_sym_PIPE_PIPE, - ACTIONS(1530), 1, - anon_sym_GT_GT, - ACTIONS(1534), 1, - anon_sym_AMP, - ACTIONS(1536), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1538), 1, - anon_sym_PIPE, - ACTIONS(1542), 1, anon_sym_PERCENT, - ACTIONS(1544), 1, anon_sym_STAR_STAR, - ACTIONS(1129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1522), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1532), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1540), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1548), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1550), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1524), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1546), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1119), 4, - sym_ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, anon_sym_QMARK_QMARK, - [26602] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1121), 1, + [25409] = 27, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1180), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1421), 1, anon_sym_AMP_AMP, - ACTIONS(1182), 1, + ACTIONS(1423), 1, anon_sym_PIPE_PIPE, - ACTIONS(1184), 1, + ACTIONS(1425), 1, anon_sym_GT_GT, - ACTIONS(1188), 1, + ACTIONS(1429), 1, anon_sym_AMP, - ACTIONS(1190), 1, + ACTIONS(1431), 1, anon_sym_CARET, - ACTIONS(1192), 1, + ACTIONS(1433), 1, anon_sym_PIPE, - ACTIONS(1196), 1, + ACTIONS(1437), 1, anon_sym_PERCENT, - ACTIONS(1198), 1, + ACTIONS(1439), 1, anon_sym_STAR_STAR, - ACTIONS(1206), 1, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - ACTIONS(1208), 1, + ACTIONS(1449), 1, sym_ternary_qmark, - ACTIONS(1282), 1, + ACTIONS(1619), 1, anon_sym_COMMA, - ACTIONS(1572), 1, + ACTIONS(1635), 1, anon_sym_RPAREN, - ACTIONS(1129), 2, + STATE(487), 1, + sym_arguments, + STATE(1028), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1174), 2, + ACTIONS(1417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1186), 2, + ACTIONS(1427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1194), 2, + ACTIONS(1435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1202), 2, + ACTIONS(1443), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1204), 2, + ACTIONS(1445), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1178), 3, + ACTIONS(1419), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1200), 3, + anon_sym_LT, + ACTIONS(1441), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [26695] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, + [25502] = 27, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1526), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1421), 1, anon_sym_AMP_AMP, - ACTIONS(1528), 1, + ACTIONS(1423), 1, anon_sym_PIPE_PIPE, - ACTIONS(1530), 1, + ACTIONS(1425), 1, anon_sym_GT_GT, - ACTIONS(1534), 1, + ACTIONS(1429), 1, anon_sym_AMP, - ACTIONS(1536), 1, + ACTIONS(1431), 1, anon_sym_CARET, - ACTIONS(1538), 1, + ACTIONS(1433), 1, anon_sym_PIPE, - ACTIONS(1542), 1, + ACTIONS(1437), 1, anon_sym_PERCENT, - ACTIONS(1544), 1, + ACTIONS(1439), 1, anon_sym_STAR_STAR, - ACTIONS(1552), 1, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - ACTIONS(1554), 1, + ACTIONS(1449), 1, sym_ternary_qmark, - ACTIONS(1129), 2, + ACTIONS(1619), 1, + anon_sym_COMMA, + ACTIONS(1637), 1, + anon_sym_RBRACK, + STATE(487), 1, + sym_arguments, + STATE(1028), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1298), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1522), 2, + ACTIONS(1417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1532), 2, + ACTIONS(1427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1540), 2, + ACTIONS(1435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1548), 2, + ACTIONS(1443), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 2, + ACTIONS(1445), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1524), 3, + ACTIONS(1419), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1546), 3, + anon_sym_LT, + ACTIONS(1441), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [26786] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, + [25595] = 25, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1526), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1589), 1, anon_sym_AMP_AMP, - ACTIONS(1528), 1, + ACTIONS(1591), 1, anon_sym_PIPE_PIPE, - ACTIONS(1530), 1, + ACTIONS(1593), 1, anon_sym_GT_GT, - ACTIONS(1534), 1, + ACTIONS(1597), 1, anon_sym_AMP, - ACTIONS(1536), 1, + ACTIONS(1599), 1, anon_sym_CARET, - ACTIONS(1538), 1, + ACTIONS(1601), 1, anon_sym_PIPE, - ACTIONS(1542), 1, + ACTIONS(1605), 1, anon_sym_PERCENT, - ACTIONS(1544), 1, + ACTIONS(1607), 1, anon_sym_STAR_STAR, - ACTIONS(1552), 1, + ACTIONS(1615), 1, anon_sym_QMARK_QMARK, - ACTIONS(1554), 1, + ACTIONS(1617), 1, sym_ternary_qmark, - ACTIONS(1129), 2, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1302), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1522), 2, + ACTIONS(1585), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1532), 2, + ACTIONS(1595), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1540), 2, + ACTIONS(1603), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1548), 2, + ACTIONS(1611), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 2, + ACTIONS(1613), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1524), 3, + ACTIONS(1383), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(1587), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1546), 3, + anon_sym_LT, + ACTIONS(1609), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [26877] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, + [25684] = 27, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1526), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1421), 1, anon_sym_AMP_AMP, - ACTIONS(1528), 1, + ACTIONS(1423), 1, anon_sym_PIPE_PIPE, - ACTIONS(1530), 1, + ACTIONS(1425), 1, anon_sym_GT_GT, - ACTIONS(1534), 1, + ACTIONS(1429), 1, anon_sym_AMP, - ACTIONS(1536), 1, + ACTIONS(1431), 1, anon_sym_CARET, - ACTIONS(1538), 1, + ACTIONS(1433), 1, anon_sym_PIPE, - ACTIONS(1542), 1, + ACTIONS(1437), 1, anon_sym_PERCENT, - ACTIONS(1544), 1, + ACTIONS(1439), 1, anon_sym_STAR_STAR, - ACTIONS(1552), 1, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - ACTIONS(1554), 1, + ACTIONS(1449), 1, sym_ternary_qmark, - ACTIONS(1129), 2, + ACTIONS(1619), 1, + anon_sym_COMMA, + ACTIONS(1639), 1, + anon_sym_RPAREN, + STATE(487), 1, + sym_arguments, + STATE(1028), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1314), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1522), 2, + ACTIONS(1417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1532), 2, + ACTIONS(1427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1540), 2, + ACTIONS(1435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1548), 2, + ACTIONS(1443), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 2, + ACTIONS(1445), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1524), 3, + ACTIONS(1419), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1546), 3, + anon_sym_LT, + ACTIONS(1441), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [26968] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, + [25777] = 27, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1180), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1421), 1, anon_sym_AMP_AMP, - ACTIONS(1182), 1, + ACTIONS(1423), 1, anon_sym_PIPE_PIPE, - ACTIONS(1184), 1, + ACTIONS(1425), 1, anon_sym_GT_GT, - ACTIONS(1188), 1, + ACTIONS(1429), 1, anon_sym_AMP, - ACTIONS(1190), 1, + ACTIONS(1431), 1, anon_sym_CARET, - ACTIONS(1192), 1, + ACTIONS(1433), 1, anon_sym_PIPE, - ACTIONS(1196), 1, + ACTIONS(1437), 1, anon_sym_PERCENT, - ACTIONS(1198), 1, + ACTIONS(1439), 1, anon_sym_STAR_STAR, - ACTIONS(1206), 1, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - ACTIONS(1208), 1, + ACTIONS(1449), 1, sym_ternary_qmark, - ACTIONS(1282), 1, + ACTIONS(1619), 1, anon_sym_COMMA, - ACTIONS(1574), 1, - anon_sym_RPAREN, - ACTIONS(1129), 2, + ACTIONS(1641), 1, + anon_sym_SEMI, + STATE(487), 1, + sym_arguments, + STATE(1028), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1174), 2, + ACTIONS(1417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1186), 2, + ACTIONS(1427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1194), 2, + ACTIONS(1435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1202), 2, + ACTIONS(1443), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1204), 2, + ACTIONS(1445), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1178), 3, + ACTIONS(1419), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1200), 3, + anon_sym_LT, + ACTIONS(1441), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [27061] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, + [25870] = 27, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1180), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1421), 1, anon_sym_AMP_AMP, - ACTIONS(1182), 1, + ACTIONS(1423), 1, anon_sym_PIPE_PIPE, - ACTIONS(1184), 1, + ACTIONS(1425), 1, anon_sym_GT_GT, - ACTIONS(1188), 1, + ACTIONS(1429), 1, anon_sym_AMP, - ACTIONS(1190), 1, + ACTIONS(1431), 1, anon_sym_CARET, - ACTIONS(1192), 1, + ACTIONS(1433), 1, anon_sym_PIPE, - ACTIONS(1196), 1, + ACTIONS(1437), 1, anon_sym_PERCENT, - ACTIONS(1198), 1, + ACTIONS(1439), 1, anon_sym_STAR_STAR, - ACTIONS(1206), 1, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - ACTIONS(1208), 1, + ACTIONS(1449), 1, sym_ternary_qmark, - ACTIONS(1282), 1, + ACTIONS(1619), 1, anon_sym_COMMA, - ACTIONS(1576), 1, - anon_sym_RBRACK, - ACTIONS(1129), 2, + ACTIONS(1643), 1, + anon_sym_RPAREN, + STATE(487), 1, + sym_arguments, + STATE(1028), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1174), 2, + ACTIONS(1417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1186), 2, + ACTIONS(1427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1194), 2, + ACTIONS(1435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1202), 2, + ACTIONS(1443), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1204), 2, + ACTIONS(1445), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1178), 3, + ACTIONS(1419), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1200), 3, + anon_sym_LT, + ACTIONS(1441), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [27154] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, + [25963] = 27, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1526), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1421), 1, anon_sym_AMP_AMP, - ACTIONS(1528), 1, + ACTIONS(1423), 1, anon_sym_PIPE_PIPE, - ACTIONS(1530), 1, + ACTIONS(1425), 1, anon_sym_GT_GT, - ACTIONS(1534), 1, + ACTIONS(1429), 1, anon_sym_AMP, - ACTIONS(1536), 1, + ACTIONS(1431), 1, anon_sym_CARET, - ACTIONS(1538), 1, + ACTIONS(1433), 1, anon_sym_PIPE, - ACTIONS(1542), 1, + ACTIONS(1437), 1, anon_sym_PERCENT, - ACTIONS(1544), 1, + ACTIONS(1439), 1, anon_sym_STAR_STAR, - ACTIONS(1552), 1, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - ACTIONS(1554), 1, + ACTIONS(1449), 1, sym_ternary_qmark, - ACTIONS(1129), 2, + ACTIONS(1619), 1, + anon_sym_COMMA, + ACTIONS(1645), 1, + anon_sym_RPAREN, + STATE(487), 1, + sym_arguments, + STATE(1028), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1322), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1522), 2, + ACTIONS(1417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1532), 2, + ACTIONS(1427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1540), 2, + ACTIONS(1435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1548), 2, + ACTIONS(1443), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 2, + ACTIONS(1445), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1524), 3, + ACTIONS(1419), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1546), 3, + anon_sym_LT, + ACTIONS(1441), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [27245] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, + [26056] = 27, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1526), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1421), 1, anon_sym_AMP_AMP, - ACTIONS(1528), 1, + ACTIONS(1423), 1, anon_sym_PIPE_PIPE, - ACTIONS(1530), 1, + ACTIONS(1425), 1, anon_sym_GT_GT, - ACTIONS(1534), 1, + ACTIONS(1429), 1, anon_sym_AMP, - ACTIONS(1536), 1, + ACTIONS(1431), 1, anon_sym_CARET, - ACTIONS(1538), 1, + ACTIONS(1433), 1, anon_sym_PIPE, - ACTIONS(1542), 1, + ACTIONS(1437), 1, anon_sym_PERCENT, - ACTIONS(1544), 1, + ACTIONS(1439), 1, anon_sym_STAR_STAR, - ACTIONS(1552), 1, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - ACTIONS(1554), 1, + ACTIONS(1449), 1, sym_ternary_qmark, - ACTIONS(1129), 2, + ACTIONS(1619), 1, + anon_sym_COMMA, + ACTIONS(1647), 1, + anon_sym_RPAREN, + STATE(487), 1, + sym_arguments, + STATE(1028), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1360), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1522), 2, + ACTIONS(1417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1532), 2, + ACTIONS(1427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1540), 2, + ACTIONS(1435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1548), 2, + ACTIONS(1443), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 2, + ACTIONS(1445), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1524), 3, + ACTIONS(1419), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1546), 3, + anon_sym_LT, + ACTIONS(1441), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [27336] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, + [26149] = 27, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1180), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1421), 1, anon_sym_AMP_AMP, - ACTIONS(1182), 1, + ACTIONS(1423), 1, anon_sym_PIPE_PIPE, - ACTIONS(1184), 1, + ACTIONS(1425), 1, anon_sym_GT_GT, - ACTIONS(1188), 1, + ACTIONS(1429), 1, anon_sym_AMP, - ACTIONS(1190), 1, + ACTIONS(1431), 1, anon_sym_CARET, - ACTIONS(1192), 1, + ACTIONS(1433), 1, anon_sym_PIPE, - ACTIONS(1196), 1, + ACTIONS(1437), 1, anon_sym_PERCENT, - ACTIONS(1198), 1, + ACTIONS(1439), 1, anon_sym_STAR_STAR, - ACTIONS(1206), 1, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - ACTIONS(1208), 1, + ACTIONS(1449), 1, sym_ternary_qmark, - ACTIONS(1282), 1, + ACTIONS(1619), 1, anon_sym_COMMA, - ACTIONS(1578), 1, + ACTIONS(1649), 1, anon_sym_RPAREN, - ACTIONS(1129), 2, + STATE(487), 1, + sym_arguments, + STATE(1028), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1174), 2, + ACTIONS(1417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1186), 2, + ACTIONS(1427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1194), 2, + ACTIONS(1435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1202), 2, + ACTIONS(1443), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1204), 2, + ACTIONS(1445), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1178), 3, + ACTIONS(1419), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1200), 3, + anon_sym_LT, + ACTIONS(1441), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [27429] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, + [26242] = 25, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1180), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1589), 1, anon_sym_AMP_AMP, - ACTIONS(1182), 1, + ACTIONS(1591), 1, anon_sym_PIPE_PIPE, - ACTIONS(1184), 1, + ACTIONS(1593), 1, anon_sym_GT_GT, - ACTIONS(1188), 1, + ACTIONS(1597), 1, anon_sym_AMP, - ACTIONS(1190), 1, + ACTIONS(1599), 1, anon_sym_CARET, - ACTIONS(1192), 1, + ACTIONS(1601), 1, anon_sym_PIPE, - ACTIONS(1196), 1, + ACTIONS(1605), 1, anon_sym_PERCENT, - ACTIONS(1198), 1, + ACTIONS(1607), 1, anon_sym_STAR_STAR, - ACTIONS(1206), 1, + ACTIONS(1615), 1, anon_sym_QMARK_QMARK, - ACTIONS(1208), 1, + ACTIONS(1617), 1, sym_ternary_qmark, - ACTIONS(1282), 1, - anon_sym_COMMA, - ACTIONS(1580), 1, - anon_sym_RPAREN, - ACTIONS(1129), 2, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1174), 2, + ACTIONS(1585), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1186), 2, + ACTIONS(1595), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1194), 2, + ACTIONS(1603), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1202), 2, + ACTIONS(1611), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1204), 2, + ACTIONS(1613), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1178), 3, + ACTIONS(1463), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(1587), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1200), 3, + anon_sym_LT, + ACTIONS(1609), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [27522] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, + [26331] = 27, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1180), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1421), 1, anon_sym_AMP_AMP, - ACTIONS(1182), 1, + ACTIONS(1423), 1, anon_sym_PIPE_PIPE, - ACTIONS(1184), 1, + ACTIONS(1425), 1, anon_sym_GT_GT, - ACTIONS(1188), 1, + ACTIONS(1429), 1, anon_sym_AMP, - ACTIONS(1190), 1, + ACTIONS(1431), 1, anon_sym_CARET, - ACTIONS(1192), 1, + ACTIONS(1433), 1, anon_sym_PIPE, - ACTIONS(1196), 1, + ACTIONS(1437), 1, anon_sym_PERCENT, - ACTIONS(1198), 1, + ACTIONS(1439), 1, anon_sym_STAR_STAR, - ACTIONS(1206), 1, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - ACTIONS(1208), 1, + ACTIONS(1449), 1, sym_ternary_qmark, - ACTIONS(1282), 1, + ACTIONS(1619), 1, anon_sym_COMMA, - ACTIONS(1582), 1, - anon_sym_RPAREN, - ACTIONS(1129), 2, + ACTIONS(1651), 1, + anon_sym_SEMI, + STATE(487), 1, + sym_arguments, + STATE(1028), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1174), 2, + ACTIONS(1417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1186), 2, + ACTIONS(1427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1194), 2, + ACTIONS(1435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1202), 2, + ACTIONS(1443), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1204), 2, + ACTIONS(1445), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1178), 3, + ACTIONS(1419), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1200), 3, + anon_sym_LT, + ACTIONS(1441), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [27615] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, + [26424] = 20, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1180), 1, - anon_sym_AMP_AMP, - ACTIONS(1182), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1184), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1457), 1, + anon_sym_PIPE, + ACTIONS(1593), 1, anon_sym_GT_GT, - ACTIONS(1188), 1, + ACTIONS(1597), 1, anon_sym_AMP, - ACTIONS(1190), 1, - anon_sym_CARET, - ACTIONS(1192), 1, - anon_sym_PIPE, - ACTIONS(1196), 1, + ACTIONS(1605), 1, anon_sym_PERCENT, - ACTIONS(1198), 1, + ACTIONS(1607), 1, anon_sym_STAR_STAR, - ACTIONS(1206), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1208), 1, - sym_ternary_qmark, - ACTIONS(1282), 1, - anon_sym_COMMA, - ACTIONS(1584), 1, - anon_sym_RPAREN, - ACTIONS(1129), 2, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1174), 2, + ACTIONS(1585), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1186), 2, + ACTIONS(1595), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1194), 2, + ACTIONS(1603), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1202), 2, + ACTIONS(1611), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1204), 2, + ACTIONS(1613), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1178), 3, + ACTIONS(1587), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1200), 3, + anon_sym_LT, + ACTIONS(1609), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [27708] = 27, - ACTIONS(3), 1, + ACTIONS(1455), 8, + sym_ternary_qmark, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [26503] = 6, + ACTIONS(1308), 1, + anon_sym_RBRACK, + ACTIONS(1311), 1, + anon_sym_EQ, + ACTIONS(1543), 1, + anon_sym_COMMA, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(356), 1, + ACTIONS(1259), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1261), 21, + sym_ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1121), 1, + [26554] = 27, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1180), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1421), 1, anon_sym_AMP_AMP, - ACTIONS(1182), 1, + ACTIONS(1423), 1, anon_sym_PIPE_PIPE, - ACTIONS(1184), 1, + ACTIONS(1425), 1, anon_sym_GT_GT, - ACTIONS(1188), 1, + ACTIONS(1429), 1, anon_sym_AMP, - ACTIONS(1190), 1, + ACTIONS(1431), 1, anon_sym_CARET, - ACTIONS(1192), 1, + ACTIONS(1433), 1, anon_sym_PIPE, - ACTIONS(1196), 1, + ACTIONS(1437), 1, anon_sym_PERCENT, - ACTIONS(1198), 1, + ACTIONS(1439), 1, anon_sym_STAR_STAR, - ACTIONS(1206), 1, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - ACTIONS(1208), 1, + ACTIONS(1449), 1, sym_ternary_qmark, - ACTIONS(1282), 1, + ACTIONS(1619), 1, anon_sym_COMMA, - ACTIONS(1586), 1, - anon_sym_RBRACK, - ACTIONS(1129), 2, + ACTIONS(1653), 1, + anon_sym_RPAREN, + STATE(487), 1, + sym_arguments, + STATE(1028), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1174), 2, + ACTIONS(1417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1186), 2, + ACTIONS(1427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1194), 2, + ACTIONS(1435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1202), 2, + ACTIONS(1443), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1204), 2, + ACTIONS(1445), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1178), 3, + ACTIONS(1419), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1200), 3, + anon_sym_LT, + ACTIONS(1441), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [27801] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, + [26647] = 27, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1298), 1, - anon_sym_of, - ACTIONS(1592), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1421), 1, anon_sym_AMP_AMP, - ACTIONS(1594), 1, + ACTIONS(1423), 1, anon_sym_PIPE_PIPE, - ACTIONS(1596), 1, + ACTIONS(1425), 1, anon_sym_GT_GT, - ACTIONS(1600), 1, + ACTIONS(1429), 1, anon_sym_AMP, - ACTIONS(1602), 1, + ACTIONS(1431), 1, anon_sym_CARET, - ACTIONS(1604), 1, + ACTIONS(1433), 1, anon_sym_PIPE, - ACTIONS(1608), 1, + ACTIONS(1437), 1, anon_sym_PERCENT, - ACTIONS(1610), 1, + ACTIONS(1439), 1, anon_sym_STAR_STAR, - ACTIONS(1618), 1, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - ACTIONS(1620), 1, + ACTIONS(1449), 1, sym_ternary_qmark, - ACTIONS(1129), 2, + ACTIONS(1619), 1, + anon_sym_COMMA, + ACTIONS(1655), 1, + anon_sym_RBRACE, + STATE(487), 1, + sym_arguments, + STATE(1028), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1588), 2, + ACTIONS(1417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1598), 2, + ACTIONS(1427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1606), 2, + ACTIONS(1435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1614), 2, + ACTIONS(1443), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1616), 2, + ACTIONS(1445), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1590), 3, + ACTIONS(1419), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1612), 3, + anon_sym_LT, + ACTIONS(1441), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [27891] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, + [26740] = 27, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1246), 1, - anon_sym_of, - ACTIONS(1592), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1421), 1, anon_sym_AMP_AMP, - ACTIONS(1594), 1, + ACTIONS(1423), 1, anon_sym_PIPE_PIPE, - ACTIONS(1596), 1, + ACTIONS(1425), 1, anon_sym_GT_GT, - ACTIONS(1600), 1, + ACTIONS(1429), 1, anon_sym_AMP, - ACTIONS(1602), 1, + ACTIONS(1431), 1, anon_sym_CARET, - ACTIONS(1604), 1, + ACTIONS(1433), 1, anon_sym_PIPE, - ACTIONS(1608), 1, + ACTIONS(1437), 1, anon_sym_PERCENT, - ACTIONS(1610), 1, + ACTIONS(1439), 1, anon_sym_STAR_STAR, - ACTIONS(1618), 1, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - ACTIONS(1620), 1, + ACTIONS(1449), 1, sym_ternary_qmark, - ACTIONS(1129), 2, + ACTIONS(1619), 1, + anon_sym_COMMA, + ACTIONS(1657), 1, + anon_sym_SEMI, + STATE(487), 1, + sym_arguments, + STATE(1028), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1588), 2, + ACTIONS(1417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1598), 2, + ACTIONS(1427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1606), 2, + ACTIONS(1435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1614), 2, + ACTIONS(1443), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1616), 2, + ACTIONS(1445), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1590), 3, + ACTIONS(1419), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1612), 3, + anon_sym_LT, + ACTIONS(1441), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [27981] = 26, - ACTIONS(3), 1, + [26833] = 6, + ACTIONS(510), 1, + anon_sym_EQ, + ACTIONS(1263), 1, + anon_sym_RBRACK, + ACTIONS(1541), 1, + anon_sym_COMMA, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(356), 1, + ACTIONS(506), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(508), 21, + sym_ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1121), 1, + [26884] = 27, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1250), 1, - anon_sym_of, - ACTIONS(1592), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1421), 1, anon_sym_AMP_AMP, - ACTIONS(1594), 1, + ACTIONS(1423), 1, anon_sym_PIPE_PIPE, - ACTIONS(1596), 1, + ACTIONS(1425), 1, anon_sym_GT_GT, - ACTIONS(1600), 1, + ACTIONS(1429), 1, anon_sym_AMP, - ACTIONS(1602), 1, + ACTIONS(1431), 1, anon_sym_CARET, - ACTIONS(1604), 1, + ACTIONS(1433), 1, anon_sym_PIPE, - ACTIONS(1608), 1, + ACTIONS(1437), 1, anon_sym_PERCENT, - ACTIONS(1610), 1, + ACTIONS(1439), 1, anon_sym_STAR_STAR, - ACTIONS(1618), 1, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - ACTIONS(1620), 1, + ACTIONS(1449), 1, sym_ternary_qmark, - ACTIONS(1129), 2, + ACTIONS(1619), 1, + anon_sym_COMMA, + ACTIONS(1659), 1, + anon_sym_SEMI, + STATE(487), 1, + sym_arguments, + STATE(1028), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1588), 2, + ACTIONS(1417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1598), 2, + ACTIONS(1427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1606), 2, + ACTIONS(1435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1614), 2, + ACTIONS(1443), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1616), 2, + ACTIONS(1445), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1590), 3, + ACTIONS(1419), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1612), 3, + anon_sym_LT, + ACTIONS(1441), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [28071] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, + [26977] = 27, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1180), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1421), 1, anon_sym_AMP_AMP, - ACTIONS(1182), 1, + ACTIONS(1423), 1, anon_sym_PIPE_PIPE, - ACTIONS(1184), 1, + ACTIONS(1425), 1, anon_sym_GT_GT, - ACTIONS(1188), 1, + ACTIONS(1429), 1, anon_sym_AMP, - ACTIONS(1190), 1, + ACTIONS(1431), 1, anon_sym_CARET, - ACTIONS(1192), 1, + ACTIONS(1433), 1, anon_sym_PIPE, - ACTIONS(1196), 1, + ACTIONS(1437), 1, anon_sym_PERCENT, - ACTIONS(1198), 1, + ACTIONS(1439), 1, anon_sym_STAR_STAR, - ACTIONS(1206), 1, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - ACTIONS(1208), 1, + ACTIONS(1449), 1, sym_ternary_qmark, - ACTIONS(1622), 1, - anon_sym_RBRACK, - ACTIONS(1129), 2, + ACTIONS(1619), 1, + anon_sym_COMMA, + ACTIONS(1661), 1, + anon_sym_SEMI, + STATE(487), 1, + sym_arguments, + STATE(1028), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1174), 2, + ACTIONS(1417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1186), 2, + ACTIONS(1427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1194), 2, + ACTIONS(1435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1202), 2, + ACTIONS(1443), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1204), 2, + ACTIONS(1445), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1178), 3, + ACTIONS(1419), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1200), 3, + anon_sym_LT, + ACTIONS(1441), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [28161] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, + [27070] = 25, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1176), 1, - anon_sym_of, - ACTIONS(1592), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1589), 1, anon_sym_AMP_AMP, - ACTIONS(1594), 1, + ACTIONS(1591), 1, anon_sym_PIPE_PIPE, - ACTIONS(1596), 1, + ACTIONS(1593), 1, anon_sym_GT_GT, - ACTIONS(1600), 1, + ACTIONS(1597), 1, anon_sym_AMP, - ACTIONS(1602), 1, + ACTIONS(1599), 1, anon_sym_CARET, - ACTIONS(1604), 1, + ACTIONS(1601), 1, anon_sym_PIPE, - ACTIONS(1608), 1, + ACTIONS(1605), 1, anon_sym_PERCENT, - ACTIONS(1610), 1, + ACTIONS(1607), 1, anon_sym_STAR_STAR, - ACTIONS(1618), 1, + ACTIONS(1615), 1, anon_sym_QMARK_QMARK, - ACTIONS(1620), 1, + ACTIONS(1617), 1, sym_ternary_qmark, - ACTIONS(1129), 2, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1588), 2, + ACTIONS(1585), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1598), 2, + ACTIONS(1595), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1606), 2, + ACTIONS(1603), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1614), 2, + ACTIONS(1611), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1616), 2, + ACTIONS(1613), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1590), 3, + ACTIONS(1395), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(1587), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1612), 3, + anon_sym_LT, + ACTIONS(1609), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [28251] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, + [27159] = 19, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1610), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1593), 1, + anon_sym_GT_GT, + ACTIONS(1605), 1, + anon_sym_PERCENT, + ACTIONS(1607), 1, anon_sym_STAR_STAR, - ACTIONS(1129), 2, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1117), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + ACTIONS(1457), 2, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(1585), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1595), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1603), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1611), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1119), 14, - sym_ternary_qmark, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, + ACTIONS(1613), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1587), 3, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1609), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [28311] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, + ACTIONS(1455), 8, + sym_ternary_qmark, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - ACTIONS(1121), 1, + [27236] = 13, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1596), 1, - anon_sym_GT_GT, - ACTIONS(1608), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1605), 1, anon_sym_PERCENT, - ACTIONS(1610), 1, + ACTIONS(1607), 1, anon_sym_STAR_STAR, - ACTIONS(1129), 2, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1588), 2, + ACTIONS(1585), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1598), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1606), 2, + ACTIONS(1603), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1117), 7, + ACTIONS(1457), 8, anon_sym_in, - anon_sym_LT, anon_sym_GT, + anon_sym_LT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1119), 11, + ACTIONS(1455), 15, sym_ternary_qmark, - anon_sym_of, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -52848,1045 +58574,1036 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [28381] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, anon_sym_BQUOTE, - ACTIONS(1121), 1, + [27301] = 22, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1596), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1589), 1, + anon_sym_AMP_AMP, + ACTIONS(1593), 1, anon_sym_GT_GT, - ACTIONS(1600), 1, + ACTIONS(1597), 1, anon_sym_AMP, - ACTIONS(1602), 1, + ACTIONS(1599), 1, anon_sym_CARET, - ACTIONS(1604), 1, + ACTIONS(1601), 1, anon_sym_PIPE, - ACTIONS(1608), 1, + ACTIONS(1605), 1, anon_sym_PERCENT, - ACTIONS(1610), 1, + ACTIONS(1607), 1, anon_sym_STAR_STAR, - ACTIONS(1129), 2, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1588), 2, + ACTIONS(1585), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1598), 2, + ACTIONS(1595), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1606), 2, + ACTIONS(1603), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1614), 2, + ACTIONS(1611), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1616), 2, + ACTIONS(1613), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1590), 3, + ACTIONS(1587), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1612), 3, + anon_sym_LT, + ACTIONS(1609), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1119), 5, + ACTIONS(1455), 6, sym_ternary_qmark, - anon_sym_of, - anon_sym_AMP_AMP, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - [28463] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, anon_sym_BQUOTE, - ACTIONS(1121), 1, + [27384] = 21, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1592), 1, - anon_sym_AMP_AMP, - ACTIONS(1596), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1593), 1, anon_sym_GT_GT, - ACTIONS(1600), 1, + ACTIONS(1597), 1, anon_sym_AMP, - ACTIONS(1602), 1, + ACTIONS(1599), 1, anon_sym_CARET, - ACTIONS(1604), 1, + ACTIONS(1601), 1, anon_sym_PIPE, - ACTIONS(1608), 1, + ACTIONS(1605), 1, anon_sym_PERCENT, - ACTIONS(1610), 1, + ACTIONS(1607), 1, anon_sym_STAR_STAR, - ACTIONS(1129), 2, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1588), 2, + ACTIONS(1585), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1598), 2, + ACTIONS(1595), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1606), 2, + ACTIONS(1603), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1614), 2, + ACTIONS(1611), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1616), 2, + ACTIONS(1613), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1590), 3, + ACTIONS(1587), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1612), 3, + anon_sym_LT, + ACTIONS(1609), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1119), 4, + ACTIONS(1455), 7, sym_ternary_qmark, - anon_sym_of, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - [28547] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, anon_sym_BQUOTE, - ACTIONS(1121), 1, + [27465] = 27, + ACTIONS(675), 1, + anon_sym_COMMA, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1608), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1421), 1, + anon_sym_AMP_AMP, + ACTIONS(1423), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1425), 1, + anon_sym_GT_GT, + ACTIONS(1429), 1, + anon_sym_AMP, + ACTIONS(1431), 1, + anon_sym_CARET, + ACTIONS(1433), 1, + anon_sym_PIPE, + ACTIONS(1437), 1, anon_sym_PERCENT, - ACTIONS(1610), 1, + ACTIONS(1439), 1, anon_sym_STAR_STAR, - ACTIONS(1129), 2, + ACTIONS(1447), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1449), 1, + sym_ternary_qmark, + ACTIONS(1663), 1, + anon_sym_RPAREN, + STATE(487), 1, + sym_arguments, + STATE(1208), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1588), 2, + ACTIONS(1417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1606), 2, + ACTIONS(1427), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1435), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1117), 8, + ACTIONS(1443), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1445), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1419), 3, anon_sym_in, + anon_sym_GT, anon_sym_LT, + ACTIONS(1441), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [27558] = 10, + ACTIONS(1214), 1, + anon_sym_LPAREN, + ACTIONS(1216), 1, + anon_sym_LBRACK, + ACTIONS(1218), 1, + anon_sym_DOT, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1607), 1, + anon_sym_STAR_STAR, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1457), 12, + anon_sym_STAR, + anon_sym_in, anon_sym_GT, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1119), 13, + ACTIONS(1455), 16, sym_ternary_qmark, - anon_sym_of, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [28613] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, anon_sym_BQUOTE, - ACTIONS(1121), 1, + [27617] = 27, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1596), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1421), 1, + anon_sym_AMP_AMP, + ACTIONS(1423), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1425), 1, anon_sym_GT_GT, - ACTIONS(1608), 1, - anon_sym_PERCENT, - ACTIONS(1610), 1, - anon_sym_STAR_STAR, - ACTIONS(1117), 2, + ACTIONS(1429), 1, anon_sym_AMP, + ACTIONS(1431), 1, + anon_sym_CARET, + ACTIONS(1433), 1, anon_sym_PIPE, - ACTIONS(1129), 2, + ACTIONS(1437), 1, + anon_sym_PERCENT, + ACTIONS(1439), 1, + anon_sym_STAR_STAR, + ACTIONS(1447), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1449), 1, + sym_ternary_qmark, + ACTIONS(1619), 1, + anon_sym_COMMA, + ACTIONS(1665), 1, + anon_sym_RPAREN, + STATE(487), 1, + sym_arguments, + STATE(1028), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1588), 2, + ACTIONS(1417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1598), 2, + ACTIONS(1427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1606), 2, + ACTIONS(1435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1614), 2, + ACTIONS(1443), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1616), 2, + ACTIONS(1445), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1590), 3, + ACTIONS(1419), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1612), 3, + anon_sym_LT, + ACTIONS(1441), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1119), 6, - sym_ternary_qmark, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [28691] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1117), 1, - anon_sym_PIPE, - ACTIONS(1121), 1, + [27710] = 27, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1596), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1421), 1, + anon_sym_AMP_AMP, + ACTIONS(1423), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1425), 1, anon_sym_GT_GT, - ACTIONS(1600), 1, + ACTIONS(1429), 1, anon_sym_AMP, - ACTIONS(1608), 1, + ACTIONS(1431), 1, + anon_sym_CARET, + ACTIONS(1433), 1, + anon_sym_PIPE, + ACTIONS(1437), 1, anon_sym_PERCENT, - ACTIONS(1610), 1, + ACTIONS(1439), 1, anon_sym_STAR_STAR, - ACTIONS(1129), 2, + ACTIONS(1447), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1449), 1, + sym_ternary_qmark, + ACTIONS(1619), 1, + anon_sym_COMMA, + ACTIONS(1667), 1, + anon_sym_RPAREN, + STATE(487), 1, + sym_arguments, + STATE(1028), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1588), 2, + ACTIONS(1417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1598), 2, + ACTIONS(1427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1606), 2, + ACTIONS(1435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1614), 2, + ACTIONS(1443), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1616), 2, + ACTIONS(1445), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1590), 3, + ACTIONS(1419), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1612), 3, + anon_sym_LT, + ACTIONS(1441), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1119), 6, - sym_ternary_qmark, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [28771] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1117), 1, - anon_sym_PIPE, - ACTIONS(1121), 1, + [27803] = 27, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1596), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1421), 1, + anon_sym_AMP_AMP, + ACTIONS(1423), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1425), 1, anon_sym_GT_GT, - ACTIONS(1600), 1, + ACTIONS(1429), 1, anon_sym_AMP, - ACTIONS(1602), 1, + ACTIONS(1431), 1, anon_sym_CARET, - ACTIONS(1608), 1, + ACTIONS(1433), 1, + anon_sym_PIPE, + ACTIONS(1437), 1, anon_sym_PERCENT, - ACTIONS(1610), 1, + ACTIONS(1439), 1, anon_sym_STAR_STAR, - ACTIONS(1129), 2, + ACTIONS(1447), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1449), 1, + sym_ternary_qmark, + ACTIONS(1619), 1, + anon_sym_COMMA, + ACTIONS(1669), 1, + anon_sym_RBRACK, + STATE(487), 1, + sym_arguments, + STATE(1028), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1588), 2, + ACTIONS(1417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1598), 2, + ACTIONS(1427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1606), 2, + ACTIONS(1435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1614), 2, + ACTIONS(1443), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1616), 2, + ACTIONS(1445), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1590), 3, + ACTIONS(1419), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1612), 3, + anon_sym_LT, + ACTIONS(1441), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1119), 5, - sym_ternary_qmark, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [28853] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, + [27896] = 27, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1608), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1421), 1, + anon_sym_AMP_AMP, + ACTIONS(1423), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1425), 1, + anon_sym_GT_GT, + ACTIONS(1429), 1, + anon_sym_AMP, + ACTIONS(1431), 1, + anon_sym_CARET, + ACTIONS(1433), 1, + anon_sym_PIPE, + ACTIONS(1437), 1, anon_sym_PERCENT, - ACTIONS(1610), 1, + ACTIONS(1439), 1, anon_sym_STAR_STAR, - ACTIONS(1129), 2, + ACTIONS(1447), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1449), 1, + sym_ternary_qmark, + ACTIONS(1619), 1, + anon_sym_COMMA, + ACTIONS(1671), 1, + anon_sym_RBRACK, + STATE(487), 1, + sym_arguments, + STATE(1028), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1588), 2, + ACTIONS(1417), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1117), 10, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(1427), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1435), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1443), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1119), 13, - sym_ternary_qmark, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(1445), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [28917] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, - anon_sym_LPAREN, - ACTIONS(1123), 1, - anon_sym_LBRACK, - ACTIONS(1125), 1, - anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1596), 1, - anon_sym_GT_GT, - ACTIONS(1608), 1, - anon_sym_PERCENT, - ACTIONS(1610), 1, - anon_sym_STAR_STAR, - ACTIONS(1129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1588), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1598), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1606), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1590), 3, + ACTIONS(1419), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1612), 3, + anon_sym_LT, + ACTIONS(1441), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1117), 4, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1119), 8, - sym_ternary_qmark, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - [28991] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, + [27989] = 27, + ACTIONS(675), 1, + anon_sym_COMMA, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1592), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1421), 1, anon_sym_AMP_AMP, - ACTIONS(1594), 1, + ACTIONS(1423), 1, anon_sym_PIPE_PIPE, - ACTIONS(1596), 1, + ACTIONS(1425), 1, anon_sym_GT_GT, - ACTIONS(1600), 1, + ACTIONS(1429), 1, anon_sym_AMP, - ACTIONS(1602), 1, + ACTIONS(1431), 1, anon_sym_CARET, - ACTIONS(1604), 1, + ACTIONS(1433), 1, anon_sym_PIPE, - ACTIONS(1608), 1, + ACTIONS(1437), 1, anon_sym_PERCENT, - ACTIONS(1610), 1, + ACTIONS(1439), 1, anon_sym_STAR_STAR, - ACTIONS(1129), 2, + ACTIONS(1447), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1449), 1, + sym_ternary_qmark, + ACTIONS(1673), 1, + anon_sym_RBRACK, + STATE(487), 1, + sym_arguments, + STATE(1254), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1588), 2, + ACTIONS(1417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1598), 2, + ACTIONS(1427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1606), 2, + ACTIONS(1435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1614), 2, + ACTIONS(1443), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1616), 2, + ACTIONS(1445), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1119), 3, - sym_ternary_qmark, - anon_sym_of, - anon_sym_QMARK_QMARK, - ACTIONS(1590), 3, + ACTIONS(1419), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1612), 3, + anon_sym_LT, + ACTIONS(1441), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [29077] = 6, - ACTIONS(3), 1, + [28082] = 15, + ACTIONS(1214), 1, + anon_sym_LPAREN, + ACTIONS(1216), 1, + anon_sym_LBRACK, + ACTIONS(1218), 1, + anon_sym_DOT, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1593), 1, + anon_sym_GT_GT, + ACTIONS(1605), 1, + anon_sym_PERCENT, + ACTIONS(1607), 1, + anon_sym_STAR_STAR, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(804), 1, - anon_sym_RBRACK, - ACTIONS(807), 1, - anon_sym_EQ, - ACTIONS(812), 1, - anon_sym_COMMA, - ACTIONS(694), 12, + ACTIONS(1230), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1585), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1595), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1603), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1457), 7, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + anon_sym_LT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(677), 21, + ACTIONS(1455), 13, sym_ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [29127] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, + [28151] = 27, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1302), 1, - anon_sym_of, - ACTIONS(1592), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1421), 1, anon_sym_AMP_AMP, - ACTIONS(1594), 1, + ACTIONS(1423), 1, anon_sym_PIPE_PIPE, - ACTIONS(1596), 1, + ACTIONS(1425), 1, anon_sym_GT_GT, - ACTIONS(1600), 1, + ACTIONS(1429), 1, anon_sym_AMP, - ACTIONS(1602), 1, + ACTIONS(1431), 1, anon_sym_CARET, - ACTIONS(1604), 1, + ACTIONS(1433), 1, anon_sym_PIPE, - ACTIONS(1608), 1, + ACTIONS(1437), 1, anon_sym_PERCENT, - ACTIONS(1610), 1, + ACTIONS(1439), 1, anon_sym_STAR_STAR, - ACTIONS(1618), 1, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - ACTIONS(1620), 1, + ACTIONS(1449), 1, sym_ternary_qmark, - ACTIONS(1129), 2, + ACTIONS(1619), 1, + anon_sym_COMMA, + ACTIONS(1675), 1, + anon_sym_SEMI, + STATE(487), 1, + sym_arguments, + STATE(1028), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1588), 2, + ACTIONS(1417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1598), 2, + ACTIONS(1427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1606), 2, + ACTIONS(1435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1614), 2, + ACTIONS(1443), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1616), 2, + ACTIONS(1445), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1590), 3, + ACTIONS(1419), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1612), 3, + anon_sym_LT, + ACTIONS(1441), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [29217] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, + [28244] = 27, + ACTIONS(675), 1, + anon_sym_COMMA, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1314), 1, - anon_sym_of, - ACTIONS(1592), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1421), 1, anon_sym_AMP_AMP, - ACTIONS(1594), 1, + ACTIONS(1423), 1, anon_sym_PIPE_PIPE, - ACTIONS(1596), 1, + ACTIONS(1425), 1, anon_sym_GT_GT, - ACTIONS(1600), 1, + ACTIONS(1429), 1, anon_sym_AMP, - ACTIONS(1602), 1, + ACTIONS(1431), 1, anon_sym_CARET, - ACTIONS(1604), 1, + ACTIONS(1433), 1, anon_sym_PIPE, - ACTIONS(1608), 1, + ACTIONS(1437), 1, anon_sym_PERCENT, - ACTIONS(1610), 1, + ACTIONS(1439), 1, anon_sym_STAR_STAR, - ACTIONS(1618), 1, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - ACTIONS(1620), 1, + ACTIONS(1449), 1, sym_ternary_qmark, - ACTIONS(1129), 2, + ACTIONS(1677), 1, + anon_sym_RPAREN, + STATE(487), 1, + sym_arguments, + STATE(1206), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1588), 2, + ACTIONS(1417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1598), 2, + ACTIONS(1427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1606), 2, + ACTIONS(1435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1614), 2, + ACTIONS(1443), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1616), 2, + ACTIONS(1445), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1590), 3, + ACTIONS(1419), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1612), 3, + anon_sym_LT, + ACTIONS(1441), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [29307] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, + [28337] = 25, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1322), 1, - anon_sym_of, - ACTIONS(1592), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1589), 1, anon_sym_AMP_AMP, - ACTIONS(1594), 1, + ACTIONS(1591), 1, anon_sym_PIPE_PIPE, - ACTIONS(1596), 1, + ACTIONS(1593), 1, anon_sym_GT_GT, - ACTIONS(1600), 1, + ACTIONS(1597), 1, anon_sym_AMP, - ACTIONS(1602), 1, + ACTIONS(1599), 1, anon_sym_CARET, - ACTIONS(1604), 1, + ACTIONS(1601), 1, anon_sym_PIPE, - ACTIONS(1608), 1, + ACTIONS(1605), 1, anon_sym_PERCENT, - ACTIONS(1610), 1, + ACTIONS(1607), 1, anon_sym_STAR_STAR, - ACTIONS(1618), 1, + ACTIONS(1615), 1, anon_sym_QMARK_QMARK, - ACTIONS(1620), 1, + ACTIONS(1617), 1, sym_ternary_qmark, - ACTIONS(1129), 2, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1588), 2, + ACTIONS(1585), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1598), 2, + ACTIONS(1595), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1606), 2, + ACTIONS(1603), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1614), 2, + ACTIONS(1611), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1616), 2, + ACTIONS(1613), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1590), 3, + ACTIONS(1461), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(1587), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1612), 3, + anon_sym_LT, + ACTIONS(1609), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [29397] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, + [28426] = 17, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1360), 1, - anon_sym_of, - ACTIONS(1592), 1, - anon_sym_AMP_AMP, - ACTIONS(1594), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1596), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1593), 1, anon_sym_GT_GT, - ACTIONS(1600), 1, - anon_sym_AMP, - ACTIONS(1602), 1, - anon_sym_CARET, - ACTIONS(1604), 1, - anon_sym_PIPE, - ACTIONS(1608), 1, + ACTIONS(1605), 1, anon_sym_PERCENT, - ACTIONS(1610), 1, + ACTIONS(1607), 1, anon_sym_STAR_STAR, - ACTIONS(1618), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1620), 1, - sym_ternary_qmark, - ACTIONS(1129), 2, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1588), 2, + ACTIONS(1585), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1598), 2, + ACTIONS(1595), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1606), 2, + ACTIONS(1603), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1614), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1616), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1590), 3, + ACTIONS(1587), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1612), 3, + anon_sym_LT, + ACTIONS(1609), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [29487] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, - anon_sym_LPAREN, - ACTIONS(1123), 1, - anon_sym_LBRACK, - ACTIONS(1125), 1, - anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1526), 1, - anon_sym_AMP_AMP, - ACTIONS(1528), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1530), 1, - anon_sym_GT_GT, - ACTIONS(1534), 1, + ACTIONS(1457), 4, anon_sym_AMP, - ACTIONS(1536), 1, - anon_sym_CARET, - ACTIONS(1538), 1, anon_sym_PIPE, - ACTIONS(1542), 1, - anon_sym_PERCENT, - ACTIONS(1544), 1, - anon_sym_STAR_STAR, - ACTIONS(1552), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1554), 1, - sym_ternary_qmark, - ACTIONS(1624), 1, - anon_sym_COLON, - ACTIONS(1129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1522), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1532), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1540), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1548), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 2, + ACTIONS(1455), 10, + sym_ternary_qmark, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1524), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1546), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [29577] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - ACTIONS(1121), 1, + [28499] = 25, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1526), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1589), 1, anon_sym_AMP_AMP, - ACTIONS(1528), 1, + ACTIONS(1591), 1, anon_sym_PIPE_PIPE, - ACTIONS(1530), 1, + ACTIONS(1593), 1, anon_sym_GT_GT, - ACTIONS(1534), 1, + ACTIONS(1597), 1, anon_sym_AMP, - ACTIONS(1536), 1, + ACTIONS(1599), 1, anon_sym_CARET, - ACTIONS(1538), 1, + ACTIONS(1601), 1, anon_sym_PIPE, - ACTIONS(1542), 1, + ACTIONS(1605), 1, anon_sym_PERCENT, - ACTIONS(1544), 1, + ACTIONS(1607), 1, anon_sym_STAR_STAR, - ACTIONS(1552), 1, + ACTIONS(1615), 1, anon_sym_QMARK_QMARK, - ACTIONS(1554), 1, + ACTIONS(1617), 1, sym_ternary_qmark, - ACTIONS(1626), 1, - anon_sym_COLON, - ACTIONS(1129), 2, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1522), 2, + ACTIONS(1585), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1532), 2, + ACTIONS(1595), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1540), 2, + ACTIONS(1603), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1548), 2, + ACTIONS(1611), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 2, + ACTIONS(1613), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1524), 3, + ACTIONS(1347), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(1587), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1546), 3, + anon_sym_LT, + ACTIONS(1609), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [29667] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, + [28588] = 25, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1526), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1589), 1, anon_sym_AMP_AMP, - ACTIONS(1528), 1, + ACTIONS(1591), 1, anon_sym_PIPE_PIPE, - ACTIONS(1530), 1, + ACTIONS(1593), 1, anon_sym_GT_GT, - ACTIONS(1534), 1, + ACTIONS(1597), 1, anon_sym_AMP, - ACTIONS(1536), 1, + ACTIONS(1599), 1, anon_sym_CARET, - ACTIONS(1538), 1, + ACTIONS(1601), 1, anon_sym_PIPE, - ACTIONS(1542), 1, + ACTIONS(1605), 1, anon_sym_PERCENT, - ACTIONS(1544), 1, + ACTIONS(1607), 1, anon_sym_STAR_STAR, - ACTIONS(1552), 1, + ACTIONS(1615), 1, anon_sym_QMARK_QMARK, - ACTIONS(1554), 1, + ACTIONS(1617), 1, sym_ternary_qmark, - ACTIONS(1628), 1, - anon_sym_COLON, - ACTIONS(1129), 2, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1522), 2, + ACTIONS(1585), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1532), 2, + ACTIONS(1595), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1540), 2, + ACTIONS(1603), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1548), 2, + ACTIONS(1611), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 2, + ACTIONS(1613), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1524), 3, + ACTIONS(1453), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(1587), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1546), 3, + anon_sym_LT, + ACTIONS(1609), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [29757] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(462), 1, - anon_sym_EQ, - ACTIONS(1162), 1, + [28677] = 6, + ACTIONS(1254), 1, anon_sym_RBRACK, - ACTIONS(1478), 1, + ACTIONS(1257), 1, + anon_sym_EQ, + ACTIONS(1545), 1, anon_sym_COMMA, - ACTIONS(458), 12, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1250), 12, anon_sym_STAR, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(460), 21, + ACTIONS(1252), 21, sym_ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -53903,766 +59620,732 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [29807] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, + [28728] = 27, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1180), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1421), 1, anon_sym_AMP_AMP, - ACTIONS(1182), 1, + ACTIONS(1423), 1, anon_sym_PIPE_PIPE, - ACTIONS(1184), 1, + ACTIONS(1425), 1, anon_sym_GT_GT, - ACTIONS(1188), 1, + ACTIONS(1429), 1, anon_sym_AMP, - ACTIONS(1190), 1, + ACTIONS(1431), 1, anon_sym_CARET, - ACTIONS(1192), 1, + ACTIONS(1433), 1, anon_sym_PIPE, - ACTIONS(1196), 1, + ACTIONS(1437), 1, anon_sym_PERCENT, - ACTIONS(1198), 1, + ACTIONS(1439), 1, anon_sym_STAR_STAR, - ACTIONS(1206), 1, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - ACTIONS(1208), 1, + ACTIONS(1449), 1, sym_ternary_qmark, - ACTIONS(1630), 1, - anon_sym_RBRACK, - ACTIONS(1129), 2, + ACTIONS(1619), 1, + anon_sym_COMMA, + ACTIONS(1679), 1, + anon_sym_RPAREN, + STATE(487), 1, + sym_arguments, + STATE(1028), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1174), 2, + ACTIONS(1417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1186), 2, + ACTIONS(1427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1194), 2, + ACTIONS(1435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1202), 2, + ACTIONS(1443), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1204), 2, + ACTIONS(1445), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1178), 3, + ACTIONS(1419), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1200), 3, + anon_sym_LT, + ACTIONS(1441), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [29897] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, + [28821] = 27, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1420), 1, - anon_sym_of, - ACTIONS(1592), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1421), 1, anon_sym_AMP_AMP, - ACTIONS(1594), 1, + ACTIONS(1423), 1, anon_sym_PIPE_PIPE, - ACTIONS(1596), 1, + ACTIONS(1425), 1, anon_sym_GT_GT, - ACTIONS(1600), 1, + ACTIONS(1429), 1, anon_sym_AMP, - ACTIONS(1602), 1, + ACTIONS(1431), 1, anon_sym_CARET, - ACTIONS(1604), 1, + ACTIONS(1433), 1, anon_sym_PIPE, - ACTIONS(1608), 1, + ACTIONS(1437), 1, anon_sym_PERCENT, - ACTIONS(1610), 1, + ACTIONS(1439), 1, anon_sym_STAR_STAR, - ACTIONS(1618), 1, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - ACTIONS(1620), 1, + ACTIONS(1449), 1, sym_ternary_qmark, - ACTIONS(1632), 1, - anon_sym_in, - ACTIONS(1129), 2, + ACTIONS(1619), 1, + anon_sym_COMMA, + ACTIONS(1681), 1, + anon_sym_RPAREN, + STATE(487), 1, + sym_arguments, + STATE(1028), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1588), 2, + ACTIONS(1417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1590), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1598), 2, + ACTIONS(1427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1606), 2, + ACTIONS(1435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1614), 2, + ACTIONS(1443), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1616), 2, + ACTIONS(1445), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1612), 3, + ACTIONS(1419), 3, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1441), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [29989] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, + [28914] = 27, + ACTIONS(675), 1, + anon_sym_COMMA, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1224), 1, - anon_sym_of, - ACTIONS(1592), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1421), 1, anon_sym_AMP_AMP, - ACTIONS(1594), 1, + ACTIONS(1423), 1, anon_sym_PIPE_PIPE, - ACTIONS(1596), 1, + ACTIONS(1425), 1, anon_sym_GT_GT, - ACTIONS(1600), 1, + ACTIONS(1429), 1, anon_sym_AMP, - ACTIONS(1602), 1, + ACTIONS(1431), 1, anon_sym_CARET, - ACTIONS(1604), 1, + ACTIONS(1433), 1, anon_sym_PIPE, - ACTIONS(1608), 1, + ACTIONS(1437), 1, anon_sym_PERCENT, - ACTIONS(1610), 1, + ACTIONS(1439), 1, anon_sym_STAR_STAR, - ACTIONS(1618), 1, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - ACTIONS(1620), 1, + ACTIONS(1449), 1, sym_ternary_qmark, - ACTIONS(1129), 2, + ACTIONS(1683), 1, + anon_sym_RBRACK, + STATE(487), 1, + sym_arguments, + STATE(1280), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1588), 2, + ACTIONS(1417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1598), 2, + ACTIONS(1427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1606), 2, + ACTIONS(1435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1614), 2, + ACTIONS(1443), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1616), 2, + ACTIONS(1445), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1590), 3, + ACTIONS(1419), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1612), 3, + anon_sym_LT, + ACTIONS(1441), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [30079] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, + [29007] = 27, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1526), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1421), 1, anon_sym_AMP_AMP, - ACTIONS(1528), 1, + ACTIONS(1423), 1, anon_sym_PIPE_PIPE, - ACTIONS(1530), 1, + ACTIONS(1425), 1, anon_sym_GT_GT, - ACTIONS(1534), 1, + ACTIONS(1429), 1, anon_sym_AMP, - ACTIONS(1536), 1, + ACTIONS(1431), 1, anon_sym_CARET, - ACTIONS(1538), 1, + ACTIONS(1433), 1, anon_sym_PIPE, - ACTIONS(1542), 1, + ACTIONS(1437), 1, anon_sym_PERCENT, - ACTIONS(1544), 1, + ACTIONS(1439), 1, anon_sym_STAR_STAR, - ACTIONS(1552), 1, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - ACTIONS(1554), 1, + ACTIONS(1449), 1, sym_ternary_qmark, - ACTIONS(1635), 1, - anon_sym_LBRACE, - ACTIONS(1129), 2, + ACTIONS(1619), 1, + anon_sym_COMMA, + ACTIONS(1685), 1, + anon_sym_RBRACE, + STATE(487), 1, + sym_arguments, + STATE(1028), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1522), 2, + ACTIONS(1417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1532), 2, + ACTIONS(1427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1540), 2, + ACTIONS(1435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1548), 2, + ACTIONS(1443), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 2, + ACTIONS(1445), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1524), 3, + ACTIONS(1419), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1546), 3, + anon_sym_LT, + ACTIONS(1441), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [30169] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, + [29100] = 27, + ACTIONS(675), 1, + anon_sym_COMMA, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1526), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1421), 1, anon_sym_AMP_AMP, - ACTIONS(1528), 1, + ACTIONS(1423), 1, anon_sym_PIPE_PIPE, - ACTIONS(1530), 1, + ACTIONS(1425), 1, anon_sym_GT_GT, - ACTIONS(1534), 1, + ACTIONS(1429), 1, anon_sym_AMP, - ACTIONS(1536), 1, + ACTIONS(1431), 1, anon_sym_CARET, - ACTIONS(1538), 1, + ACTIONS(1433), 1, anon_sym_PIPE, - ACTIONS(1542), 1, + ACTIONS(1437), 1, anon_sym_PERCENT, - ACTIONS(1544), 1, + ACTIONS(1439), 1, anon_sym_STAR_STAR, - ACTIONS(1552), 1, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - ACTIONS(1554), 1, + ACTIONS(1449), 1, sym_ternary_qmark, - ACTIONS(1637), 1, - anon_sym_COLON, - ACTIONS(1129), 2, + ACTIONS(1687), 1, + anon_sym_RBRACK, + STATE(487), 1, + sym_arguments, + STATE(1280), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1522), 2, + ACTIONS(1417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1532), 2, + ACTIONS(1427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1540), 2, + ACTIONS(1435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1548), 2, + ACTIONS(1443), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 2, + ACTIONS(1445), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1524), 3, + ACTIONS(1419), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1546), 3, + anon_sym_LT, + ACTIONS(1441), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [30259] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, + [29193] = 27, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1526), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1421), 1, anon_sym_AMP_AMP, - ACTIONS(1528), 1, + ACTIONS(1423), 1, anon_sym_PIPE_PIPE, - ACTIONS(1530), 1, + ACTIONS(1425), 1, anon_sym_GT_GT, - ACTIONS(1534), 1, + ACTIONS(1429), 1, anon_sym_AMP, - ACTIONS(1536), 1, + ACTIONS(1431), 1, anon_sym_CARET, - ACTIONS(1538), 1, + ACTIONS(1433), 1, anon_sym_PIPE, - ACTIONS(1542), 1, + ACTIONS(1437), 1, anon_sym_PERCENT, - ACTIONS(1544), 1, + ACTIONS(1439), 1, anon_sym_STAR_STAR, - ACTIONS(1552), 1, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - ACTIONS(1554), 1, + ACTIONS(1449), 1, sym_ternary_qmark, - ACTIONS(1639), 1, - anon_sym_COLON, - ACTIONS(1129), 2, + ACTIONS(1619), 1, + anon_sym_COMMA, + ACTIONS(1689), 1, + anon_sym_RBRACK, + STATE(487), 1, + sym_arguments, + STATE(1028), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1522), 2, + ACTIONS(1417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1532), 2, + ACTIONS(1427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1540), 2, + ACTIONS(1435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1548), 2, + ACTIONS(1443), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 2, + ACTIONS(1445), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1524), 3, + ACTIONS(1419), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1546), 3, + anon_sym_LT, + ACTIONS(1441), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [30349] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1153), 1, - anon_sym_RBRACK, - ACTIONS(1156), 1, - anon_sym_EQ, - ACTIONS(1474), 1, - anon_sym_COMMA, - ACTIONS(1149), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1151), 21, - sym_ternary_qmark, + [29286] = 27, + ACTIONS(1214), 1, anon_sym_LPAREN, + ACTIONS(1216), 1, anon_sym_LBRACK, + ACTIONS(1218), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1421), 1, anon_sym_AMP_AMP, + ACTIONS(1423), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1425), 1, + anon_sym_GT_GT, + ACTIONS(1429), 1, + anon_sym_AMP, + ACTIONS(1431), 1, anon_sym_CARET, + ACTIONS(1433), 1, + anon_sym_PIPE, + ACTIONS(1437), 1, anon_sym_PERCENT, + ACTIONS(1439), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(1449), 1, + sym_ternary_qmark, + ACTIONS(1619), 1, + anon_sym_COMMA, + ACTIONS(1691), 1, + anon_sym_RBRACE, + STATE(487), 1, + sym_arguments, + STATE(1028), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [30399] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1169), 1, - anon_sym_RBRACK, - ACTIONS(1172), 1, - anon_sym_EQ, - ACTIONS(1476), 1, - anon_sym_COMMA, - ACTIONS(1165), 12, + ACTIONS(1417), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(1427), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1435), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1443), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1167), 21, - sym_ternary_qmark, + ACTIONS(1445), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1419), 3, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1441), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [29379] = 26, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(97), 1, + anon_sym_STAR, + ACTIONS(99), 1, + anon_sym_COMMA, + ACTIONS(113), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(119), 1, + aux_sym_method_definition_token1, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(1695), 1, + anon_sym_LBRACE, + ACTIONS(1697), 1, + anon_sym_RBRACE, + ACTIONS(1701), 1, + anon_sym_async, + ACTIONS(1703), 1, + anon_sym_static, + ACTIONS(1705), 1, + anon_sym_LBRACK, + STATE(830), 1, + aux_sym_export_statement_repeat1, + STATE(933), 1, + sym_decorator, + STATE(1232), 1, + sym_property_name, + STATE(1256), 1, + aux_sym_object_repeat1, + STATE(1258), 1, + aux_sym_object_pattern_repeat1, + STATE(1579), 1, + sym_destructuring_pattern, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1699), 2, + anon_sym_get, + anon_sym_set, + STATE(1010), 2, + sym_object_pattern, + sym_array_pattern, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1693), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1218), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1251), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + [29469] = 25, + ACTIONS(1214), 1, anon_sym_LPAREN, + ACTIONS(1216), 1, anon_sym_LBRACK, + ACTIONS(1218), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1711), 1, anon_sym_AMP_AMP, + ACTIONS(1713), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1715), 1, + anon_sym_GT_GT, + ACTIONS(1719), 1, + anon_sym_AMP, + ACTIONS(1721), 1, anon_sym_CARET, + ACTIONS(1723), 1, + anon_sym_PIPE, + ACTIONS(1727), 1, anon_sym_PERCENT, + ACTIONS(1729), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1737), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(1739), 1, + sym_ternary_qmark, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(1451), 2, + anon_sym_of, anon_sym_BQUOTE, - [30449] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(883), 1, - anon_sym_EQ, - ACTIONS(694), 12, + ACTIONS(1707), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(677), 22, - sym_ternary_qmark, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1717), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [30494] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(796), 1, - anon_sym_EQ, - ACTIONS(821), 1, - anon_sym_in, - ACTIONS(1089), 1, - anon_sym_of, - ACTIONS(694), 11, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(1725), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1733), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(677), 21, - sym_ternary_qmark, - anon_sym_LPAREN, - 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, + ACTIONS(1735), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [30543] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1260), 1, - sym_regex_flags, - ACTIONS(1256), 14, - anon_sym_STAR, + ACTIONS(1709), 3, anon_sym_in, - anon_sym_of, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(1258), 20, - sym_ternary_qmark, - anon_sym_LPAREN, - 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, + ACTIONS(1731), 3, anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [30588] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(356), 1, - anon_sym_BQUOTE, - ACTIONS(1121), 1, + anon_sym_instanceof, + [29557] = 23, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1125), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_QMARK_DOT, - ACTIONS(1526), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1711), 1, anon_sym_AMP_AMP, - ACTIONS(1528), 1, + ACTIONS(1713), 1, anon_sym_PIPE_PIPE, - ACTIONS(1530), 1, + ACTIONS(1715), 1, anon_sym_GT_GT, - ACTIONS(1534), 1, + ACTIONS(1719), 1, anon_sym_AMP, - ACTIONS(1536), 1, + ACTIONS(1721), 1, anon_sym_CARET, - ACTIONS(1538), 1, + ACTIONS(1723), 1, anon_sym_PIPE, - ACTIONS(1542), 1, + ACTIONS(1727), 1, anon_sym_PERCENT, - ACTIONS(1544), 1, + ACTIONS(1729), 1, anon_sym_STAR_STAR, - ACTIONS(1552), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1554), 1, - sym_ternary_qmark, - ACTIONS(1129), 2, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1522), 2, + ACTIONS(1707), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1532), 2, + ACTIONS(1717), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1540), 2, + ACTIONS(1725), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1548), 2, + ACTIONS(1733), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 2, + ACTIONS(1735), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(438), 2, - sym_template_string, - sym_arguments, - ACTIONS(1524), 3, + ACTIONS(1709), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1546), 3, + anon_sym_LT, + ACTIONS(1731), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [30675] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1156), 1, - anon_sym_EQ, - ACTIONS(1474), 1, - anon_sym_of, - ACTIONS(1482), 1, - anon_sym_in, - ACTIONS(1149), 11, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1151), 21, + ACTIONS(1455), 4, sym_ternary_qmark, + anon_sym_of, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [29641] = 10, + ACTIONS(1214), 1, anon_sym_LPAREN, + ACTIONS(1216), 1, anon_sym_LBRACK, + ACTIONS(1218), 1, 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(1228), 1, + sym_optional_chain, + ACTIONS(1729), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [30724] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1172), 1, - anon_sym_EQ, - ACTIONS(1476), 1, - anon_sym_of, - ACTIONS(1485), 1, - anon_sym_in, - ACTIONS(1165), 11, + ACTIONS(1457), 12, anon_sym_STAR, - anon_sym_LT, + anon_sym_in, anon_sym_GT, - anon_sym_SLASH, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1167), 21, + ACTIONS(1455), 15, sym_ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [30773] = 6, - ACTIONS(3), 1, + [29699] = 12, + ACTIONS(1214), 1, + anon_sym_LPAREN, + ACTIONS(1216), 1, + anon_sym_LBRACK, + ACTIONS(1218), 1, + anon_sym_DOT, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1727), 1, + anon_sym_PERCENT, + ACTIONS(1729), 1, + anon_sym_STAR_STAR, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(462), 1, - anon_sym_EQ, - ACTIONS(1478), 1, - anon_sym_of, - ACTIONS(1488), 1, - anon_sym_in, - ACTIONS(458), 11, + ACTIONS(1230), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1707), 2, anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, + ACTIONS(1457), 10, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -54670,3500 +60353,7126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(460), 21, + ACTIONS(1455), 14, sym_ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [30822] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, - anon_sym_BQUOTE, - ACTIONS(1210), 1, + [29761] = 21, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1212), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1214), 1, + ACTIONS(1218), 1, anon_sym_DOT, - ACTIONS(1216), 1, - anon_sym_QMARK_DOT, - ACTIONS(1526), 1, - anon_sym_AMP_AMP, - ACTIONS(1528), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1530), 1, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1457), 1, + anon_sym_PIPE, + ACTIONS(1715), 1, anon_sym_GT_GT, - ACTIONS(1534), 1, + ACTIONS(1719), 1, anon_sym_AMP, - ACTIONS(1536), 1, + ACTIONS(1721), 1, anon_sym_CARET, - ACTIONS(1538), 1, - anon_sym_PIPE, - ACTIONS(1542), 1, + ACTIONS(1727), 1, anon_sym_PERCENT, - ACTIONS(1544), 1, + ACTIONS(1729), 1, anon_sym_STAR_STAR, - ACTIONS(1552), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1554), 1, - sym_ternary_qmark, - ACTIONS(1129), 2, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1522), 2, + ACTIONS(1707), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1532), 2, + ACTIONS(1717), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1540), 2, + ACTIONS(1725), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1548), 2, + ACTIONS(1733), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 2, + ACTIONS(1735), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(614), 2, - sym_template_string, - sym_arguments, - ACTIONS(1524), 3, + ACTIONS(1709), 3, anon_sym_in, - anon_sym_LT, anon_sym_GT, - ACTIONS(1546), 3, + anon_sym_LT, + ACTIONS(1731), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [30909] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_AT, + ACTIONS(1455), 6, + sym_ternary_qmark, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [29841] = 26, ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(97), 1, anon_sym_STAR, - ACTIONS(93), 1, + ACTIONS(99), 1, anon_sym_COMMA, - ACTIONS(105), 1, + ACTIONS(113), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(779), 1, + ACTIONS(119), 1, + aux_sym_method_definition_token1, + ACTIONS(815), 1, anon_sym_DQUOTE, - ACTIONS(781), 1, + ACTIONS(817), 1, anon_sym_SQUOTE, - ACTIONS(1643), 1, + ACTIONS(1695), 1, anon_sym_LBRACE, - ACTIONS(1645), 1, + ACTIONS(1705), 1, + anon_sym_LBRACK, + ACTIONS(1743), 1, anon_sym_RBRACE, - ACTIONS(1649), 1, + ACTIONS(1747), 1, anon_sym_async, - ACTIONS(1651), 1, + ACTIONS(1749), 1, anon_sym_static, - ACTIONS(1653), 1, - anon_sym_LBRACK, - STATE(786), 1, + STATE(830), 1, aux_sym_export_statement_repeat1, - STATE(845), 1, + STATE(933), 1, sym_decorator, - STATE(1111), 1, + STATE(1232), 1, sym_property_name, - STATE(1117), 1, + STATE(1256), 1, aux_sym_object_repeat1, - STATE(1153), 1, + STATE(1258), 1, aux_sym_object_pattern_repeat1, - STATE(1394), 1, + STATE(1579), 1, sym_destructuring_pattern, - ACTIONS(109), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, sym_number, sym_private_property_identifier, - ACTIONS(1641), 2, - anon_sym_export, - sym_identifier, - ACTIONS(1647), 2, + ACTIONS(1745), 2, anon_sym_get, anon_sym_set, - STATE(912), 2, + STATE(1010), 2, sym_object_pattern, sym_array_pattern, - STATE(1175), 2, + STATE(1424), 2, sym_string, sym_computed_property_name, - STATE(1098), 3, + ACTIONS(1741), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1218), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1114), 3, + STATE(1251), 3, sym_spread_element, sym_method_definition, sym_pair, - [30994] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_AT, - ACTIONS(91), 1, - anon_sym_STAR, - ACTIONS(93), 1, - anon_sym_COMMA, - ACTIONS(105), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(779), 1, - anon_sym_DQUOTE, - ACTIONS(781), 1, - anon_sym_SQUOTE, - ACTIONS(1643), 1, - anon_sym_LBRACE, - ACTIONS(1653), 1, + [29931] = 25, + ACTIONS(1214), 1, + anon_sym_LPAREN, + ACTIONS(1216), 1, anon_sym_LBRACK, - ACTIONS(1657), 1, - anon_sym_RBRACE, - ACTIONS(1661), 1, - anon_sym_async, - ACTIONS(1663), 1, - anon_sym_static, - STATE(786), 1, - aux_sym_export_statement_repeat1, - STATE(845), 1, - sym_decorator, - STATE(1111), 1, - sym_property_name, - STATE(1117), 1, - aux_sym_object_repeat1, - STATE(1153), 1, - aux_sym_object_pattern_repeat1, - STATE(1394), 1, - sym_destructuring_pattern, - ACTIONS(109), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1655), 2, - anon_sym_export, - sym_identifier, - ACTIONS(1659), 2, - anon_sym_get, - anon_sym_set, - STATE(912), 2, - sym_object_pattern, - sym_array_pattern, - STATE(1175), 2, - sym_string, - sym_computed_property_name, - STATE(1098), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(1114), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - [31079] = 25, - ACTIONS(3), 1, + ACTIONS(1218), 1, + anon_sym_DOT, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1711), 1, + anon_sym_AMP_AMP, + ACTIONS(1713), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1715), 1, + anon_sym_GT_GT, + ACTIONS(1719), 1, + anon_sym_AMP, + ACTIONS(1721), 1, + anon_sym_CARET, + ACTIONS(1723), 1, + anon_sym_PIPE, + ACTIONS(1727), 1, + anon_sym_PERCENT, + ACTIONS(1729), 1, + anon_sym_STAR_STAR, + ACTIONS(1737), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1739), 1, + sym_ternary_qmark, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(85), 1, - anon_sym_AT, + ACTIONS(1230), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1463), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(1707), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1717), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1725), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1733), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1735), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1709), 3, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1731), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [30019] = 25, + ACTIONS(1214), 1, + anon_sym_LPAREN, + ACTIONS(1216), 1, + anon_sym_LBRACK, + ACTIONS(1218), 1, + anon_sym_DOT, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1711), 1, + anon_sym_AMP_AMP, + ACTIONS(1713), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1715), 1, + anon_sym_GT_GT, + ACTIONS(1719), 1, + anon_sym_AMP, + ACTIONS(1721), 1, + anon_sym_CARET, + ACTIONS(1723), 1, + anon_sym_PIPE, + ACTIONS(1727), 1, + anon_sym_PERCENT, + ACTIONS(1729), 1, + anon_sym_STAR_STAR, + ACTIONS(1737), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1739), 1, + sym_ternary_qmark, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1383), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(1707), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1717), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1725), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1733), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1735), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1709), 3, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1731), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [30107] = 25, + ACTIONS(1214), 1, + anon_sym_LPAREN, + ACTIONS(1216), 1, + anon_sym_LBRACK, + ACTIONS(1218), 1, + anon_sym_DOT, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1711), 1, + anon_sym_AMP_AMP, + ACTIONS(1713), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1715), 1, + anon_sym_GT_GT, + ACTIONS(1719), 1, + anon_sym_AMP, + ACTIONS(1721), 1, + anon_sym_CARET, + ACTIONS(1723), 1, + anon_sym_PIPE, + ACTIONS(1727), 1, + anon_sym_PERCENT, + ACTIONS(1729), 1, + anon_sym_STAR_STAR, + ACTIONS(1737), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1739), 1, + sym_ternary_qmark, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1367), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(1707), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1717), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1725), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1733), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1735), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1709), 3, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1731), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [30195] = 26, ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(97), 1, anon_sym_STAR, - ACTIONS(93), 1, + ACTIONS(99), 1, anon_sym_COMMA, - ACTIONS(105), 1, + ACTIONS(113), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(779), 1, + ACTIONS(119), 1, + aux_sym_method_definition_token1, + ACTIONS(815), 1, anon_sym_DQUOTE, - ACTIONS(781), 1, + ACTIONS(817), 1, anon_sym_SQUOTE, - ACTIONS(1643), 1, + ACTIONS(1695), 1, anon_sym_LBRACE, - ACTIONS(1653), 1, + ACTIONS(1705), 1, anon_sym_LBRACK, - ACTIONS(1667), 1, + ACTIONS(1753), 1, anon_sym_RBRACE, - ACTIONS(1671), 1, + ACTIONS(1757), 1, anon_sym_async, - ACTIONS(1673), 1, + ACTIONS(1759), 1, anon_sym_static, - STATE(786), 1, + STATE(830), 1, aux_sym_export_statement_repeat1, - STATE(845), 1, + STATE(933), 1, sym_decorator, - STATE(1111), 1, + STATE(1232), 1, sym_property_name, - STATE(1117), 1, + STATE(1256), 1, aux_sym_object_repeat1, - STATE(1153), 1, + STATE(1258), 1, aux_sym_object_pattern_repeat1, - STATE(1394), 1, + STATE(1579), 1, sym_destructuring_pattern, - ACTIONS(109), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, sym_number, sym_private_property_identifier, - ACTIONS(1665), 2, - anon_sym_export, - sym_identifier, - ACTIONS(1669), 2, + ACTIONS(1755), 2, anon_sym_get, anon_sym_set, - STATE(912), 2, + STATE(1010), 2, sym_object_pattern, sym_array_pattern, - STATE(1175), 2, + STATE(1424), 2, sym_string, sym_computed_property_name, - STATE(1098), 3, + ACTIONS(1751), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1218), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1114), 3, + STATE(1251), 3, sym_spread_element, sym_method_definition, sym_pair, - [31164] = 25, - ACTIONS(3), 1, + [30285] = 22, + ACTIONS(1214), 1, + anon_sym_LPAREN, + ACTIONS(1216), 1, + anon_sym_LBRACK, + ACTIONS(1218), 1, + anon_sym_DOT, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1711), 1, + anon_sym_AMP_AMP, + ACTIONS(1715), 1, + anon_sym_GT_GT, + ACTIONS(1719), 1, + anon_sym_AMP, + ACTIONS(1721), 1, + anon_sym_CARET, + ACTIONS(1723), 1, + anon_sym_PIPE, + ACTIONS(1727), 1, + anon_sym_PERCENT, + ACTIONS(1729), 1, + anon_sym_STAR_STAR, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(85), 1, - anon_sym_AT, + ACTIONS(1230), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1707), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1717), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1725), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1733), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1735), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1709), 3, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1731), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1455), 5, + sym_ternary_qmark, + anon_sym_of, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [30367] = 26, ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(97), 1, anon_sym_STAR, - ACTIONS(93), 1, + ACTIONS(99), 1, anon_sym_COMMA, - ACTIONS(105), 1, + ACTIONS(113), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(779), 1, + ACTIONS(119), 1, + aux_sym_method_definition_token1, + ACTIONS(815), 1, anon_sym_DQUOTE, - ACTIONS(781), 1, + ACTIONS(817), 1, anon_sym_SQUOTE, - ACTIONS(1643), 1, + ACTIONS(1695), 1, anon_sym_LBRACE, - ACTIONS(1653), 1, + ACTIONS(1705), 1, anon_sym_LBRACK, - ACTIONS(1677), 1, + ACTIONS(1763), 1, anon_sym_RBRACE, - ACTIONS(1681), 1, + ACTIONS(1767), 1, anon_sym_async, - ACTIONS(1683), 1, + ACTIONS(1769), 1, anon_sym_static, - STATE(786), 1, + STATE(830), 1, aux_sym_export_statement_repeat1, - STATE(845), 1, + STATE(933), 1, sym_decorator, - STATE(1111), 1, + STATE(1232), 1, sym_property_name, - STATE(1143), 1, + STATE(1247), 1, aux_sym_object_repeat1, - STATE(1153), 1, + STATE(1258), 1, aux_sym_object_pattern_repeat1, - STATE(1394), 1, + STATE(1579), 1, sym_destructuring_pattern, - ACTIONS(109), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, sym_number, sym_private_property_identifier, - ACTIONS(1675), 2, - anon_sym_export, - sym_identifier, - ACTIONS(1679), 2, + ACTIONS(1765), 2, anon_sym_get, anon_sym_set, - STATE(912), 2, + STATE(1010), 2, sym_object_pattern, sym_array_pattern, - STATE(1175), 2, + STATE(1424), 2, sym_string, sym_computed_property_name, - STATE(1098), 3, + ACTIONS(1761), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1218), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1104), 3, + STATE(1224), 3, sym_spread_element, sym_method_definition, sym_pair, - [31249] = 25, - ACTIONS(3), 1, + [30457] = 6, + ACTIONS(848), 1, + anon_sym_EQ, + ACTIONS(895), 1, + anon_sym_in, + ACTIONS(1208), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(85), 1, - anon_sym_AT, + ACTIONS(756), 11, + anon_sym_STAR, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(739), 21, + sym_ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [30507] = 26, ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(97), 1, anon_sym_STAR, - ACTIONS(93), 1, + ACTIONS(99), 1, anon_sym_COMMA, - ACTIONS(105), 1, + ACTIONS(113), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(779), 1, + ACTIONS(119), 1, + aux_sym_method_definition_token1, + ACTIONS(815), 1, anon_sym_DQUOTE, - ACTIONS(781), 1, + ACTIONS(817), 1, anon_sym_SQUOTE, - ACTIONS(1643), 1, + ACTIONS(1695), 1, anon_sym_LBRACE, - ACTIONS(1653), 1, + ACTIONS(1705), 1, anon_sym_LBRACK, - ACTIONS(1687), 1, + ACTIONS(1773), 1, anon_sym_RBRACE, - ACTIONS(1691), 1, + ACTIONS(1777), 1, anon_sym_async, - ACTIONS(1693), 1, + ACTIONS(1779), 1, anon_sym_static, - STATE(786), 1, + STATE(830), 1, aux_sym_export_statement_repeat1, - STATE(845), 1, + STATE(933), 1, sym_decorator, - STATE(1111), 1, + STATE(1232), 1, sym_property_name, - STATE(1117), 1, + STATE(1256), 1, aux_sym_object_repeat1, - STATE(1153), 1, + STATE(1258), 1, aux_sym_object_pattern_repeat1, - STATE(1394), 1, + STATE(1579), 1, sym_destructuring_pattern, - ACTIONS(109), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, sym_number, sym_private_property_identifier, - ACTIONS(1685), 2, - anon_sym_export, - sym_identifier, - ACTIONS(1689), 2, + ACTIONS(1775), 2, anon_sym_get, anon_sym_set, - STATE(912), 2, + STATE(1010), 2, sym_object_pattern, sym_array_pattern, - STATE(1175), 2, + STATE(1424), 2, sym_string, sym_computed_property_name, - STATE(1098), 3, + ACTIONS(1771), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1218), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1114), 3, + STATE(1251), 3, sym_spread_element, sym_method_definition, sym_pair, - [31334] = 25, - ACTIONS(3), 1, + [30597] = 13, + ACTIONS(1214), 1, + anon_sym_LPAREN, + ACTIONS(1216), 1, + anon_sym_LBRACK, + ACTIONS(1218), 1, + anon_sym_DOT, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1727), 1, + anon_sym_PERCENT, + ACTIONS(1729), 1, + anon_sym_STAR_STAR, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1707), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1725), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1457), 8, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1455), 14, + sym_ternary_qmark, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + [30661] = 25, + ACTIONS(1214), 1, + anon_sym_LPAREN, + ACTIONS(1216), 1, + anon_sym_LBRACK, + ACTIONS(1218), 1, + anon_sym_DOT, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1421), 1, + anon_sym_AMP_AMP, + ACTIONS(1423), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1425), 1, + anon_sym_GT_GT, + ACTIONS(1429), 1, + anon_sym_AMP, + ACTIONS(1431), 1, + anon_sym_CARET, + ACTIONS(1433), 1, + anon_sym_PIPE, + ACTIONS(1437), 1, + anon_sym_PERCENT, + ACTIONS(1439), 1, + anon_sym_STAR_STAR, + ACTIONS(1447), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1449), 1, + sym_ternary_qmark, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1417), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1427), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1435), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1443), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1445), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1565), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1419), 3, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1441), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [30749] = 26, + ACTIONS(1409), 1, + anon_sym_LPAREN, + ACTIONS(1411), 1, + anon_sym_LBRACK, + ACTIONS(1413), 1, + anon_sym_DOT, + ACTIONS(1467), 1, + sym_optional_chain, + ACTIONS(1505), 1, + anon_sym_GT_GT, + ACTIONS(1511), 1, + anon_sym_PERCENT, + ACTIONS(1513), 1, + anon_sym_STAR_STAR, + ACTIONS(1517), 1, + anon_sym_AMP, + ACTIONS(1519), 1, + anon_sym_CARET, + ACTIONS(1521), 1, + anon_sym_PIPE, + ACTIONS(1529), 1, + anon_sym_AMP_AMP, + ACTIONS(1531), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1533), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1535), 1, + sym_ternary_qmark, + ACTIONS(1781), 1, + anon_sym_SEMI, + ACTIONS(1783), 1, + sym_automatic_semicolon, + STATE(600), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1469), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1503), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1507), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1509), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1525), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1527), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1515), 3, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1523), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [30839] = 21, + ACTIONS(1214), 1, + anon_sym_LPAREN, + ACTIONS(1216), 1, + anon_sym_LBRACK, + ACTIONS(1218), 1, + anon_sym_DOT, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1715), 1, + anon_sym_GT_GT, + ACTIONS(1719), 1, + anon_sym_AMP, + ACTIONS(1721), 1, + anon_sym_CARET, + ACTIONS(1723), 1, + anon_sym_PIPE, + ACTIONS(1727), 1, + anon_sym_PERCENT, + ACTIONS(1729), 1, + anon_sym_STAR_STAR, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1707), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1717), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1725), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1733), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1735), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1709), 3, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1731), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1455), 6, + sym_ternary_qmark, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [30919] = 10, + ACTIONS(1214), 1, + anon_sym_LPAREN, + ACTIONS(1216), 1, + anon_sym_LBRACK, + ACTIONS(1218), 1, + anon_sym_DOT, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1729), 1, + anon_sym_STAR_STAR, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1457), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1455), 15, + sym_ternary_qmark, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + [30977] = 15, + ACTIONS(1214), 1, + anon_sym_LPAREN, + ACTIONS(1216), 1, + anon_sym_LBRACK, + ACTIONS(1218), 1, + anon_sym_DOT, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1715), 1, + anon_sym_GT_GT, + ACTIONS(1727), 1, + anon_sym_PERCENT, + ACTIONS(1729), 1, + anon_sym_STAR_STAR, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1707), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1717), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1725), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1457), 7, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1455), 12, + sym_ternary_qmark, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + [31045] = 17, + ACTIONS(1214), 1, + anon_sym_LPAREN, + ACTIONS(1216), 1, + anon_sym_LBRACK, + ACTIONS(1218), 1, + anon_sym_DOT, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1715), 1, + anon_sym_GT_GT, + ACTIONS(1727), 1, + anon_sym_PERCENT, + ACTIONS(1729), 1, + anon_sym_STAR_STAR, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1707), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1717), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1725), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1709), 3, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1731), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1457), 4, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1455), 9, + sym_ternary_qmark, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [31117] = 26, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(97), 1, + anon_sym_STAR, + ACTIONS(99), 1, + anon_sym_COMMA, + ACTIONS(113), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(119), 1, + aux_sym_method_definition_token1, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(1695), 1, + anon_sym_LBRACE, + ACTIONS(1705), 1, + anon_sym_LBRACK, + ACTIONS(1787), 1, + anon_sym_RBRACE, + ACTIONS(1791), 1, + anon_sym_async, + ACTIONS(1793), 1, + anon_sym_static, + STATE(830), 1, + aux_sym_export_statement_repeat1, + STATE(933), 1, + sym_decorator, + STATE(1232), 1, + sym_property_name, + STATE(1256), 1, + aux_sym_object_repeat1, + STATE(1258), 1, + aux_sym_object_pattern_repeat1, + STATE(1579), 1, + sym_destructuring_pattern, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1789), 2, + anon_sym_get, + anon_sym_set, + STATE(1010), 2, + sym_object_pattern, + sym_array_pattern, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1785), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1218), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1251), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + [31207] = 4, + ACTIONS(1294), 1, + sym_regex_flags, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1290), 14, + anon_sym_STAR, + anon_sym_in, + anon_sym_of, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_instanceof, + ACTIONS(1292), 20, + sym_ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [31253] = 4, + ACTIONS(913), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(756), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(739), 22, + sym_ternary_qmark, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [31299] = 25, + ACTIONS(1214), 1, + anon_sym_LPAREN, + ACTIONS(1216), 1, + anon_sym_LBRACK, + ACTIONS(1218), 1, + anon_sym_DOT, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1711), 1, + anon_sym_AMP_AMP, + ACTIONS(1713), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1715), 1, + anon_sym_GT_GT, + ACTIONS(1719), 1, + anon_sym_AMP, + ACTIONS(1721), 1, + anon_sym_CARET, + ACTIONS(1723), 1, + anon_sym_PIPE, + ACTIONS(1727), 1, + anon_sym_PERCENT, + ACTIONS(1729), 1, + anon_sym_STAR_STAR, + ACTIONS(1737), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1739), 1, + sym_ternary_qmark, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1347), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(1707), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1717), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1725), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1733), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1735), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1709), 3, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1731), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [31387] = 25, + ACTIONS(1214), 1, + anon_sym_LPAREN, + ACTIONS(1216), 1, + anon_sym_LBRACK, + ACTIONS(1218), 1, + anon_sym_DOT, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1711), 1, + anon_sym_AMP_AMP, + ACTIONS(1713), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1715), 1, + anon_sym_GT_GT, + ACTIONS(1719), 1, + anon_sym_AMP, + ACTIONS(1721), 1, + anon_sym_CARET, + ACTIONS(1723), 1, + anon_sym_PIPE, + ACTIONS(1727), 1, + anon_sym_PERCENT, + ACTIONS(1729), 1, + anon_sym_STAR_STAR, + ACTIONS(1737), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1739), 1, + sym_ternary_qmark, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1453), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(1707), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1717), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1725), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1733), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1735), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1709), 3, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1731), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [31475] = 25, + ACTIONS(1214), 1, + anon_sym_LPAREN, + ACTIONS(1216), 1, + anon_sym_LBRACK, + ACTIONS(1218), 1, + anon_sym_DOT, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1711), 1, + anon_sym_AMP_AMP, + ACTIONS(1713), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1715), 1, + anon_sym_GT_GT, + ACTIONS(1719), 1, + anon_sym_AMP, + ACTIONS(1721), 1, + anon_sym_CARET, + ACTIONS(1723), 1, + anon_sym_PIPE, + ACTIONS(1727), 1, + anon_sym_PERCENT, + ACTIONS(1729), 1, + anon_sym_STAR_STAR, + ACTIONS(1737), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1739), 1, + sym_ternary_qmark, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1395), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(1707), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1717), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1725), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1733), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1735), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1709), 3, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1731), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [31563] = 25, + ACTIONS(1214), 1, + anon_sym_LPAREN, + ACTIONS(1216), 1, + anon_sym_LBRACK, + ACTIONS(1218), 1, + anon_sym_DOT, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1711), 1, + anon_sym_AMP_AMP, + ACTIONS(1713), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1715), 1, + anon_sym_GT_GT, + ACTIONS(1719), 1, + anon_sym_AMP, + ACTIONS(1721), 1, + anon_sym_CARET, + ACTIONS(1723), 1, + anon_sym_PIPE, + ACTIONS(1727), 1, + anon_sym_PERCENT, + ACTIONS(1729), 1, + anon_sym_STAR_STAR, + ACTIONS(1737), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1739), 1, + sym_ternary_qmark, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1459), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(1707), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1717), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1725), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1733), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1735), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1709), 3, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1731), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [31651] = 20, + ACTIONS(1214), 1, + anon_sym_LPAREN, + ACTIONS(1216), 1, + anon_sym_LBRACK, + ACTIONS(1218), 1, + anon_sym_DOT, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1457), 1, + anon_sym_PIPE, + ACTIONS(1715), 1, + anon_sym_GT_GT, + ACTIONS(1719), 1, + anon_sym_AMP, + ACTIONS(1727), 1, + anon_sym_PERCENT, + ACTIONS(1729), 1, + anon_sym_STAR_STAR, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1707), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1717), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1725), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1733), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1735), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1709), 3, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1731), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1455), 7, + sym_ternary_qmark, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [31729] = 25, + ACTIONS(1409), 1, + anon_sym_LPAREN, + ACTIONS(1411), 1, + anon_sym_LBRACK, + ACTIONS(1413), 1, + anon_sym_DOT, + ACTIONS(1467), 1, + sym_optional_chain, + ACTIONS(1505), 1, + anon_sym_GT_GT, + ACTIONS(1511), 1, + anon_sym_PERCENT, + ACTIONS(1513), 1, + anon_sym_STAR_STAR, + ACTIONS(1517), 1, + anon_sym_AMP, + ACTIONS(1519), 1, + anon_sym_CARET, + ACTIONS(1521), 1, + anon_sym_PIPE, + ACTIONS(1529), 1, + anon_sym_AMP_AMP, + ACTIONS(1531), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1533), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1535), 1, + sym_ternary_qmark, + STATE(600), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1469), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1503), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1507), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1509), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1525), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1527), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1795), 2, + sym_automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1515), 3, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1523), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [31817] = 25, + ACTIONS(1214), 1, + anon_sym_LPAREN, + ACTIONS(1216), 1, + anon_sym_LBRACK, + ACTIONS(1218), 1, + anon_sym_DOT, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1711), 1, + anon_sym_AMP_AMP, + ACTIONS(1713), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1715), 1, + anon_sym_GT_GT, + ACTIONS(1719), 1, + anon_sym_AMP, + ACTIONS(1721), 1, + anon_sym_CARET, + ACTIONS(1723), 1, + anon_sym_PIPE, + ACTIONS(1727), 1, + anon_sym_PERCENT, + ACTIONS(1729), 1, + anon_sym_STAR_STAR, + ACTIONS(1737), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1739), 1, + sym_ternary_qmark, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1461), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(1707), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1717), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1725), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1733), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1735), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1709), 3, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1731), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [31905] = 19, + ACTIONS(1214), 1, + anon_sym_LPAREN, + ACTIONS(1216), 1, + anon_sym_LBRACK, + ACTIONS(1218), 1, + anon_sym_DOT, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1715), 1, + anon_sym_GT_GT, + ACTIONS(1727), 1, + anon_sym_PERCENT, + ACTIONS(1729), 1, + anon_sym_STAR_STAR, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1457), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1707), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1717), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1725), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1733), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1735), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1709), 3, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1731), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1455), 7, + sym_ternary_qmark, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [31981] = 25, + ACTIONS(1214), 1, + anon_sym_LPAREN, + ACTIONS(1216), 1, + anon_sym_LBRACK, + ACTIONS(1218), 1, + anon_sym_DOT, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1421), 1, + anon_sym_AMP_AMP, + ACTIONS(1423), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1425), 1, + anon_sym_GT_GT, + ACTIONS(1429), 1, + anon_sym_AMP, + ACTIONS(1431), 1, + anon_sym_CARET, + ACTIONS(1433), 1, + anon_sym_PIPE, + ACTIONS(1437), 1, + anon_sym_PERCENT, + ACTIONS(1439), 1, + anon_sym_STAR_STAR, + ACTIONS(1447), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1449), 1, + sym_ternary_qmark, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1417), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1427), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1435), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1443), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1445), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1797), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1419), 3, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1441), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [32069] = 25, + ACTIONS(1214), 1, + anon_sym_LPAREN, + ACTIONS(1216), 1, + anon_sym_LBRACK, + ACTIONS(1218), 1, + anon_sym_DOT, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1589), 1, + anon_sym_AMP_AMP, + ACTIONS(1591), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1593), 1, + anon_sym_GT_GT, + ACTIONS(1597), 1, + anon_sym_AMP, + ACTIONS(1599), 1, + anon_sym_CARET, + ACTIONS(1601), 1, + anon_sym_PIPE, + ACTIONS(1605), 1, + anon_sym_PERCENT, + ACTIONS(1607), 1, + anon_sym_STAR_STAR, + ACTIONS(1615), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1617), 1, + sym_ternary_qmark, + ACTIONS(1799), 1, + anon_sym_COLON, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1585), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1595), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1603), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1611), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1613), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1587), 3, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1609), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [32156] = 25, + ACTIONS(1214), 1, + anon_sym_LPAREN, + ACTIONS(1216), 1, + anon_sym_LBRACK, + ACTIONS(1218), 1, + anon_sym_DOT, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1421), 1, + anon_sym_AMP_AMP, + ACTIONS(1423), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1425), 1, + anon_sym_GT_GT, + ACTIONS(1429), 1, + anon_sym_AMP, + ACTIONS(1431), 1, + anon_sym_CARET, + ACTIONS(1433), 1, + anon_sym_PIPE, + ACTIONS(1437), 1, + anon_sym_PERCENT, + ACTIONS(1439), 1, + anon_sym_STAR_STAR, + ACTIONS(1447), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1449), 1, + sym_ternary_qmark, + ACTIONS(1801), 1, + anon_sym_RBRACK, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1417), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1427), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1435), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1443), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1445), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1419), 3, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1441), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [32243] = 25, + ACTIONS(1214), 1, + anon_sym_LPAREN, + ACTIONS(1216), 1, + anon_sym_LBRACK, + ACTIONS(1218), 1, + anon_sym_DOT, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1589), 1, + anon_sym_AMP_AMP, + ACTIONS(1591), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1593), 1, + anon_sym_GT_GT, + ACTIONS(1597), 1, + anon_sym_AMP, + ACTIONS(1599), 1, + anon_sym_CARET, + ACTIONS(1601), 1, + anon_sym_PIPE, + ACTIONS(1605), 1, + anon_sym_PERCENT, + ACTIONS(1607), 1, + anon_sym_STAR_STAR, + ACTIONS(1615), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1617), 1, + sym_ternary_qmark, + ACTIONS(1803), 1, + anon_sym_COLON, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1585), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1595), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1603), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1611), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1613), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1587), 3, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1609), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [32330] = 25, + ACTIONS(1214), 1, + anon_sym_LPAREN, + ACTIONS(1216), 1, + anon_sym_LBRACK, + ACTIONS(1218), 1, + anon_sym_DOT, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1589), 1, + anon_sym_AMP_AMP, + ACTIONS(1591), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1593), 1, + anon_sym_GT_GT, + ACTIONS(1597), 1, + anon_sym_AMP, + ACTIONS(1599), 1, + anon_sym_CARET, + ACTIONS(1601), 1, + anon_sym_PIPE, + ACTIONS(1605), 1, + anon_sym_PERCENT, + ACTIONS(1607), 1, + anon_sym_STAR_STAR, + ACTIONS(1615), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1617), 1, + sym_ternary_qmark, + ACTIONS(1805), 1, + anon_sym_COLON, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1585), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1595), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1603), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1611), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1613), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1587), 3, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1609), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [32417] = 25, + ACTIONS(1214), 1, + anon_sym_LPAREN, + ACTIONS(1216), 1, + anon_sym_LBRACK, + ACTIONS(1218), 1, + anon_sym_DOT, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1589), 1, + anon_sym_AMP_AMP, + ACTIONS(1591), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1593), 1, + anon_sym_GT_GT, + ACTIONS(1597), 1, + anon_sym_AMP, + ACTIONS(1599), 1, + anon_sym_CARET, + ACTIONS(1601), 1, + anon_sym_PIPE, + ACTIONS(1605), 1, + anon_sym_PERCENT, + ACTIONS(1607), 1, + anon_sym_STAR_STAR, + ACTIONS(1615), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1617), 1, + sym_ternary_qmark, + ACTIONS(1807), 1, + anon_sym_COLON, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1585), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1595), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1603), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1611), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1613), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1587), 3, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1609), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [32504] = 26, + ACTIONS(1214), 1, + anon_sym_LPAREN, + ACTIONS(1216), 1, + anon_sym_LBRACK, + ACTIONS(1218), 1, + anon_sym_DOT, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1572), 1, + anon_sym_of, + ACTIONS(1711), 1, + anon_sym_AMP_AMP, + ACTIONS(1713), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1715), 1, + anon_sym_GT_GT, + ACTIONS(1719), 1, + anon_sym_AMP, + ACTIONS(1721), 1, + anon_sym_CARET, + ACTIONS(1723), 1, + anon_sym_PIPE, + ACTIONS(1727), 1, + anon_sym_PERCENT, + ACTIONS(1729), 1, + anon_sym_STAR_STAR, + ACTIONS(1737), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1739), 1, + sym_ternary_qmark, + ACTIONS(1809), 1, + anon_sym_in, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1707), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1709), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1717), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1725), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1733), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1735), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1731), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [32593] = 25, + ACTIONS(1214), 1, + anon_sym_LPAREN, + ACTIONS(1216), 1, + anon_sym_LBRACK, + ACTIONS(1218), 1, + anon_sym_DOT, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1589), 1, + anon_sym_AMP_AMP, + ACTIONS(1591), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1593), 1, + anon_sym_GT_GT, + ACTIONS(1597), 1, + anon_sym_AMP, + ACTIONS(1599), 1, + anon_sym_CARET, + ACTIONS(1601), 1, + anon_sym_PIPE, + ACTIONS(1605), 1, + anon_sym_PERCENT, + ACTIONS(1607), 1, + anon_sym_STAR_STAR, + ACTIONS(1615), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1617), 1, + sym_ternary_qmark, + ACTIONS(1812), 1, + anon_sym_COLON, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1585), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1595), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1603), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1611), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1613), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1587), 3, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1609), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [32680] = 25, + ACTIONS(1214), 1, + anon_sym_LPAREN, + ACTIONS(1216), 1, + anon_sym_LBRACK, + ACTIONS(1218), 1, + anon_sym_DOT, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1421), 1, + anon_sym_AMP_AMP, + ACTIONS(1423), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1425), 1, + anon_sym_GT_GT, + ACTIONS(1429), 1, + anon_sym_AMP, + ACTIONS(1431), 1, + anon_sym_CARET, + ACTIONS(1433), 1, + anon_sym_PIPE, + ACTIONS(1437), 1, + anon_sym_PERCENT, + ACTIONS(1439), 1, + anon_sym_STAR_STAR, + ACTIONS(1447), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1449), 1, + sym_ternary_qmark, + ACTIONS(1814), 1, + anon_sym_RBRACK, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1417), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1427), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1435), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1443), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1445), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1419), 3, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1441), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [32767] = 25, + ACTIONS(1214), 1, + anon_sym_LPAREN, + ACTIONS(1216), 1, + anon_sym_LBRACK, + ACTIONS(1218), 1, + anon_sym_DOT, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1589), 1, + anon_sym_AMP_AMP, + ACTIONS(1591), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1593), 1, + anon_sym_GT_GT, + ACTIONS(1597), 1, + anon_sym_AMP, + ACTIONS(1599), 1, + anon_sym_CARET, + ACTIONS(1601), 1, + anon_sym_PIPE, + ACTIONS(1605), 1, + anon_sym_PERCENT, + ACTIONS(1607), 1, + anon_sym_STAR_STAR, + ACTIONS(1615), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1617), 1, + sym_ternary_qmark, + ACTIONS(1816), 1, + anon_sym_LBRACE, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1585), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1595), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1603), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1611), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1613), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1587), 3, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1609), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [32854] = 24, + ACTIONS(1409), 1, + anon_sym_LPAREN, + ACTIONS(1411), 1, + anon_sym_LBRACK, + ACTIONS(1413), 1, + anon_sym_DOT, + ACTIONS(1467), 1, + sym_optional_chain, + ACTIONS(1589), 1, + anon_sym_AMP_AMP, + ACTIONS(1591), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1593), 1, + anon_sym_GT_GT, + ACTIONS(1597), 1, + anon_sym_AMP, + ACTIONS(1599), 1, + anon_sym_CARET, + ACTIONS(1601), 1, + anon_sym_PIPE, + ACTIONS(1605), 1, + anon_sym_PERCENT, + ACTIONS(1607), 1, + anon_sym_STAR_STAR, + ACTIONS(1615), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1617), 1, + sym_ternary_qmark, + STATE(600), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1585), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1595), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1603), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1611), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1613), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1587), 3, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1609), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [32938] = 23, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(97), 1, + anon_sym_STAR, + ACTIONS(113), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(119), 1, + aux_sym_method_definition_token1, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(1695), 1, + anon_sym_LBRACE, + ACTIONS(1705), 1, + anon_sym_LBRACK, + ACTIONS(1825), 1, + anon_sym_async, + ACTIONS(1827), 1, + anon_sym_static, + STATE(830), 1, + aux_sym_export_statement_repeat1, + STATE(933), 1, + sym_decorator, + STATE(1232), 1, + sym_property_name, + STATE(1579), 1, + sym_destructuring_pattern, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1820), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1823), 2, + anon_sym_get, + anon_sym_set, + STATE(1010), 2, + sym_object_pattern, + sym_array_pattern, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1818), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1520), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(1528), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + [33020] = 24, + ACTIONS(1214), 1, + anon_sym_LPAREN, + ACTIONS(1216), 1, + anon_sym_LBRACK, + ACTIONS(1218), 1, + anon_sym_DOT, + ACTIONS(1228), 1, + sym_optional_chain, + ACTIONS(1589), 1, + anon_sym_AMP_AMP, + ACTIONS(1591), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1593), 1, + anon_sym_GT_GT, + ACTIONS(1597), 1, + anon_sym_AMP, + ACTIONS(1599), 1, + anon_sym_CARET, + ACTIONS(1601), 1, + anon_sym_PIPE, + ACTIONS(1605), 1, + anon_sym_PERCENT, + ACTIONS(1607), 1, + anon_sym_STAR_STAR, + ACTIONS(1615), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1617), 1, + sym_ternary_qmark, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1585), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1595), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1603), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1611), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1613), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1587), 3, + anon_sym_in, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1609), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [33104] = 21, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(97), 1, + anon_sym_STAR, + ACTIONS(119), 1, + aux_sym_method_definition_token1, + ACTIONS(679), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(1831), 1, + anon_sym_COMMA, + ACTIONS(1833), 1, + anon_sym_RBRACE, + ACTIONS(1837), 1, + anon_sym_async, + ACTIONS(1839), 1, + anon_sym_static, + ACTIONS(1841), 1, + anon_sym_LBRACK, + STATE(830), 1, + aux_sym_export_statement_repeat1, + STATE(933), 1, + sym_decorator, + STATE(1255), 1, + sym_property_name, + STATE(1274), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1835), 2, + anon_sym_get, + anon_sym_set, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1829), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1276), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + [33176] = 22, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1845), 1, + anon_sym_STAR, + ACTIONS(1847), 1, + anon_sym_SEMI, + ACTIONS(1849), 1, + anon_sym_RBRACE, + ACTIONS(1853), 1, + anon_sym_async, + ACTIONS(1855), 1, + anon_sym_static, + ACTIONS(1857), 1, + anon_sym_LBRACK, + ACTIONS(1859), 1, + anon_sym_DQUOTE, + ACTIONS(1861), 1, + anon_sym_SQUOTE, + ACTIONS(1865), 1, + aux_sym_method_definition_token1, + STATE(795), 1, + aux_sym_class_body_repeat1, + STATE(827), 1, + aux_sym_export_statement_repeat1, + STATE(880), 1, + sym_method_definition, + STATE(882), 1, + sym_class_static_block, + STATE(933), 1, + sym_decorator, + STATE(1058), 1, + sym_property_name, + STATE(1353), 1, + sym_field_definition, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1851), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(1863), 2, + sym_number, + sym_private_property_identifier, + STATE(1129), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1843), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + [33249] = 22, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1845), 1, + anon_sym_STAR, + ACTIONS(1847), 1, + anon_sym_SEMI, + ACTIONS(1853), 1, + anon_sym_async, + ACTIONS(1855), 1, + anon_sym_static, + ACTIONS(1857), 1, + anon_sym_LBRACK, + ACTIONS(1859), 1, + anon_sym_DQUOTE, + ACTIONS(1861), 1, + anon_sym_SQUOTE, + ACTIONS(1865), 1, + aux_sym_method_definition_token1, + ACTIONS(1867), 1, + anon_sym_RBRACE, + STATE(795), 1, + aux_sym_class_body_repeat1, + STATE(827), 1, + aux_sym_export_statement_repeat1, + STATE(880), 1, + sym_method_definition, + STATE(882), 1, + sym_class_static_block, + STATE(933), 1, + sym_decorator, + STATE(1058), 1, + sym_property_name, + STATE(1353), 1, + sym_field_definition, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1851), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(1863), 2, + sym_number, + sym_private_property_identifier, + STATE(1129), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1843), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + [33322] = 22, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1845), 1, + anon_sym_STAR, + ACTIONS(1847), 1, + anon_sym_SEMI, + ACTIONS(1853), 1, + anon_sym_async, + ACTIONS(1855), 1, + anon_sym_static, + ACTIONS(1857), 1, + anon_sym_LBRACK, + ACTIONS(1859), 1, + anon_sym_DQUOTE, + ACTIONS(1861), 1, + anon_sym_SQUOTE, + ACTIONS(1865), 1, + aux_sym_method_definition_token1, + ACTIONS(1869), 1, + anon_sym_RBRACE, + STATE(795), 1, + aux_sym_class_body_repeat1, + STATE(827), 1, + aux_sym_export_statement_repeat1, + STATE(880), 1, + sym_method_definition, + STATE(882), 1, + sym_class_static_block, + STATE(933), 1, + sym_decorator, + STATE(1058), 1, + sym_property_name, + STATE(1353), 1, + sym_field_definition, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1851), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(1863), 2, + sym_number, + sym_private_property_identifier, + STATE(1129), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1843), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + [33395] = 22, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1845), 1, + anon_sym_STAR, + ACTIONS(1853), 1, + anon_sym_async, + ACTIONS(1855), 1, + anon_sym_static, + ACTIONS(1857), 1, + anon_sym_LBRACK, + ACTIONS(1859), 1, + anon_sym_DQUOTE, + ACTIONS(1861), 1, + anon_sym_SQUOTE, + ACTIONS(1865), 1, + aux_sym_method_definition_token1, + ACTIONS(1871), 1, + anon_sym_SEMI, + ACTIONS(1873), 1, + anon_sym_RBRACE, + STATE(788), 1, + aux_sym_class_body_repeat1, + STATE(827), 1, + aux_sym_export_statement_repeat1, + STATE(880), 1, + sym_method_definition, + STATE(882), 1, + sym_class_static_block, + STATE(933), 1, + sym_decorator, + STATE(1058), 1, + sym_property_name, + STATE(1353), 1, + sym_field_definition, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1851), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(1863), 2, + sym_number, + sym_private_property_identifier, + STATE(1129), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1843), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + [33468] = 22, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1845), 1, + anon_sym_STAR, + ACTIONS(1853), 1, + anon_sym_async, + ACTIONS(1855), 1, + anon_sym_static, + ACTIONS(1857), 1, + anon_sym_LBRACK, + ACTIONS(1859), 1, + anon_sym_DQUOTE, + ACTIONS(1861), 1, + anon_sym_SQUOTE, + ACTIONS(1865), 1, + aux_sym_method_definition_token1, + ACTIONS(1875), 1, + anon_sym_SEMI, + ACTIONS(1877), 1, + anon_sym_RBRACE, + STATE(789), 1, + aux_sym_class_body_repeat1, + STATE(827), 1, + aux_sym_export_statement_repeat1, + STATE(880), 1, + sym_method_definition, + STATE(882), 1, + sym_class_static_block, + STATE(933), 1, + sym_decorator, + STATE(1058), 1, + sym_property_name, + STATE(1353), 1, + sym_field_definition, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1851), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(1863), 2, + sym_number, + sym_private_property_identifier, + STATE(1129), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1843), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + [33541] = 19, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(97), 1, + anon_sym_STAR, + ACTIONS(119), 1, + aux_sym_method_definition_token1, + ACTIONS(679), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1885), 1, + anon_sym_async, + ACTIONS(1887), 1, + anon_sym_static, + STATE(830), 1, + aux_sym_export_statement_repeat1, + STATE(933), 1, + sym_decorator, + STATE(1255), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1881), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1883), 2, + anon_sym_get, + anon_sym_set, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1879), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1520), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + [33608] = 16, + ACTIONS(653), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(1695), 1, + anon_sym_LBRACE, + ACTIONS(1705), 1, + anon_sym_LBRACK, + ACTIONS(1891), 1, + anon_sym_COMMA, + ACTIONS(1893), 1, + anon_sym_RBRACE, + STATE(1257), 1, + aux_sym_object_pattern_repeat1, + STATE(1579), 1, + sym_destructuring_pattern, + STATE(1636), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, + sym_number, + sym_private_property_identifier, + STATE(1010), 2, + sym_object_pattern, + sym_array_pattern, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + STATE(1250), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + ACTIONS(1889), 7, + anon_sym_export, + anon_sym_let, + anon_sym_get, + anon_sym_set, + anon_sym_async, + anon_sym_static, + sym_identifier, + [33669] = 22, + ACTIONS(1898), 1, + anon_sym_STAR, + ACTIONS(1901), 1, + anon_sym_SEMI, + ACTIONS(1904), 1, + anon_sym_RBRACE, + ACTIONS(1909), 1, + anon_sym_async, + ACTIONS(1912), 1, + anon_sym_static, + ACTIONS(1915), 1, + anon_sym_LBRACK, + ACTIONS(1918), 1, + anon_sym_DQUOTE, + ACTIONS(1921), 1, + anon_sym_SQUOTE, + ACTIONS(1927), 1, + anon_sym_AT, + ACTIONS(1930), 1, + aux_sym_method_definition_token1, + STATE(795), 1, + aux_sym_class_body_repeat1, + STATE(827), 1, + aux_sym_export_statement_repeat1, + STATE(880), 1, + sym_method_definition, + STATE(882), 1, + sym_class_static_block, + STATE(933), 1, + sym_decorator, + STATE(1058), 1, + sym_property_name, + STATE(1353), 1, + sym_field_definition, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1906), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(1924), 2, + sym_number, + sym_private_property_identifier, + STATE(1129), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1895), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + [33742] = 22, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1845), 1, + anon_sym_STAR, + ACTIONS(1853), 1, + anon_sym_async, + ACTIONS(1855), 1, + anon_sym_static, + ACTIONS(1857), 1, + anon_sym_LBRACK, + ACTIONS(1859), 1, + anon_sym_DQUOTE, + ACTIONS(1861), 1, + anon_sym_SQUOTE, + ACTIONS(1865), 1, + aux_sym_method_definition_token1, + ACTIONS(1933), 1, + anon_sym_SEMI, + ACTIONS(1935), 1, + anon_sym_RBRACE, + STATE(790), 1, + aux_sym_class_body_repeat1, + STATE(827), 1, + aux_sym_export_statement_repeat1, + STATE(880), 1, + sym_method_definition, + STATE(882), 1, + sym_class_static_block, + STATE(933), 1, + sym_decorator, + STATE(1058), 1, + sym_property_name, + STATE(1353), 1, + sym_field_definition, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1851), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(1863), 2, + sym_number, + sym_private_property_identifier, + STATE(1129), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1843), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + [33815] = 16, + ACTIONS(653), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(1695), 1, + anon_sym_LBRACE, + ACTIONS(1705), 1, + anon_sym_LBRACK, + ACTIONS(1891), 1, + anon_sym_COMMA, + ACTIONS(1939), 1, + anon_sym_RBRACE, + STATE(1258), 1, + aux_sym_object_pattern_repeat1, + STATE(1579), 1, + sym_destructuring_pattern, + STATE(1636), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, + sym_number, + sym_private_property_identifier, + STATE(1010), 2, + sym_object_pattern, + sym_array_pattern, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + STATE(1218), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + ACTIONS(1937), 7, + anon_sym_export, + anon_sym_let, + anon_sym_get, + anon_sym_set, + anon_sym_async, + anon_sym_static, + sym_identifier, + [33876] = 14, + ACTIONS(653), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(1695), 1, + anon_sym_LBRACE, + ACTIONS(1705), 1, + anon_sym_LBRACK, + STATE(1579), 1, + sym_destructuring_pattern, + STATE(1636), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1943), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1010), 2, + sym_object_pattern, + sym_array_pattern, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + STATE(1528), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + ACTIONS(1941), 7, + anon_sym_export, + anon_sym_let, + anon_sym_get, + anon_sym_set, + anon_sym_async, + anon_sym_static, + sym_identifier, + [33932] = 17, + ACTIONS(99), 1, + anon_sym_COMMA, + ACTIONS(777), 1, + anon_sym_RBRACE, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(835), 1, + anon_sym_async, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1945), 1, + anon_sym_STAR, + ACTIONS(1947), 1, + anon_sym_EQ, + STATE(1241), 1, + aux_sym_object_pattern_repeat1, + STATE(1275), 1, + aux_sym_object_repeat1, + STATE(1522), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(833), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(1558), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(831), 4, + anon_sym_export, + anon_sym_let, + anon_sym_static, + sym_identifier, + [33992] = 16, + ACTIONS(99), 1, + anon_sym_COMMA, + ACTIONS(775), 1, + anon_sym_RBRACE, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1945), 1, + anon_sym_STAR, + ACTIONS(1947), 1, + anon_sym_EQ, + STATE(1241), 1, + aux_sym_object_pattern_repeat1, + STATE(1275), 1, + aux_sym_object_repeat1, + STATE(1522), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(833), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(1558), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(831), 5, + anon_sym_export, + anon_sym_let, + anon_sym_async, + anon_sym_static, + sym_identifier, + [34050] = 17, + ACTIONS(99), 1, + anon_sym_COMMA, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(835), 1, + anon_sym_async, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1945), 1, + anon_sym_STAR, + ACTIONS(1947), 1, + anon_sym_EQ, + ACTIONS(1949), 1, + anon_sym_RBRACE, + STATE(1241), 1, + aux_sym_object_pattern_repeat1, + STATE(1275), 1, + aux_sym_object_repeat1, + STATE(1522), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(833), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(1558), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(831), 4, + anon_sym_export, + anon_sym_let, + anon_sym_static, + sym_identifier, + [34110] = 16, + ACTIONS(99), 1, + anon_sym_COMMA, + ACTIONS(777), 1, + anon_sym_RBRACE, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1945), 1, + anon_sym_STAR, + ACTIONS(1947), 1, + anon_sym_EQ, + STATE(1241), 1, + aux_sym_object_pattern_repeat1, + STATE(1275), 1, + aux_sym_object_repeat1, + STATE(1522), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(833), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(1558), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(831), 5, + anon_sym_export, + anon_sym_let, + anon_sym_async, + anon_sym_static, + sym_identifier, + [34168] = 17, + ACTIONS(99), 1, + anon_sym_COMMA, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(835), 1, + anon_sym_async, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1945), 1, + anon_sym_STAR, + ACTIONS(1947), 1, + anon_sym_EQ, + ACTIONS(1951), 1, + anon_sym_RBRACE, + STATE(1241), 1, + aux_sym_object_pattern_repeat1, + STATE(1275), 1, + aux_sym_object_repeat1, + STATE(1522), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(833), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(1558), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(831), 4, + anon_sym_export, + anon_sym_let, + anon_sym_static, + sym_identifier, + [34228] = 16, + ACTIONS(99), 1, + anon_sym_COMMA, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1945), 1, + anon_sym_STAR, + ACTIONS(1947), 1, + anon_sym_EQ, + ACTIONS(1951), 1, + anon_sym_RBRACE, + STATE(1241), 1, + aux_sym_object_pattern_repeat1, + STATE(1275), 1, + aux_sym_object_repeat1, + STATE(1522), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(833), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(1558), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(831), 5, + anon_sym_export, + anon_sym_let, + anon_sym_async, + anon_sym_static, + sym_identifier, + [34286] = 17, + ACTIONS(99), 1, + anon_sym_COMMA, + ACTIONS(775), 1, + anon_sym_RBRACE, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(835), 1, + anon_sym_async, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1945), 1, + anon_sym_STAR, + ACTIONS(1947), 1, + anon_sym_EQ, + STATE(1241), 1, + aux_sym_object_pattern_repeat1, + STATE(1275), 1, + aux_sym_object_repeat1, + STATE(1522), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(833), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(1558), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(831), 4, + anon_sym_export, + anon_sym_let, + anon_sym_static, + sym_identifier, + [34346] = 16, + ACTIONS(99), 1, + anon_sym_COMMA, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1945), 1, + anon_sym_STAR, + ACTIONS(1947), 1, + anon_sym_EQ, + ACTIONS(1949), 1, + anon_sym_RBRACE, + STATE(1241), 1, + aux_sym_object_pattern_repeat1, + STATE(1275), 1, + aux_sym_object_repeat1, + STATE(1522), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(833), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(1558), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(831), 5, + anon_sym_export, + anon_sym_let, + anon_sym_async, + anon_sym_static, + sym_identifier, + [34404] = 17, + ACTIONS(99), 1, + anon_sym_COMMA, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(835), 1, + anon_sym_async, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1945), 1, + anon_sym_STAR, + ACTIONS(1947), 1, + anon_sym_EQ, + ACTIONS(1953), 1, + anon_sym_RBRACE, + STATE(1241), 1, + aux_sym_object_pattern_repeat1, + STATE(1275), 1, + aux_sym_object_repeat1, + STATE(1522), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(833), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(1558), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(831), 4, + anon_sym_export, + anon_sym_let, + anon_sym_static, + sym_identifier, + [34464] = 16, + ACTIONS(99), 1, + anon_sym_COMMA, + ACTIONS(745), 1, + anon_sym_RBRACE, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1945), 1, + anon_sym_STAR, + ACTIONS(1947), 1, + anon_sym_EQ, + STATE(1239), 1, + aux_sym_object_repeat1, + STATE(1241), 1, + aux_sym_object_pattern_repeat1, + STATE(1522), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(833), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(1558), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(831), 5, + anon_sym_export, + anon_sym_let, + anon_sym_async, + anon_sym_static, + sym_identifier, + [34522] = 17, + ACTIONS(99), 1, + anon_sym_COMMA, + ACTIONS(745), 1, + anon_sym_RBRACE, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(835), 1, + anon_sym_async, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1945), 1, + anon_sym_STAR, + ACTIONS(1947), 1, + anon_sym_EQ, + STATE(1239), 1, + aux_sym_object_repeat1, + STATE(1241), 1, + aux_sym_object_pattern_repeat1, + STATE(1522), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(833), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(1558), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(831), 4, + anon_sym_export, + anon_sym_let, + anon_sym_static, + sym_identifier, + [34582] = 16, + ACTIONS(99), 1, + anon_sym_COMMA, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1945), 1, + anon_sym_STAR, + ACTIONS(1947), 1, + anon_sym_EQ, + ACTIONS(1953), 1, + anon_sym_RBRACE, + STATE(1241), 1, + aux_sym_object_pattern_repeat1, + STATE(1275), 1, + aux_sym_object_repeat1, + STATE(1522), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(833), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(1558), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(831), 5, + anon_sym_export, + anon_sym_let, + anon_sym_async, + anon_sym_static, + sym_identifier, + [34640] = 14, + ACTIONS(99), 1, + anon_sym_COMMA, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1947), 1, + anon_sym_EQ, + ACTIONS(1949), 1, + anon_sym_RBRACE, + STATE(1241), 1, + aux_sym_object_pattern_repeat1, + STATE(1275), 1, + aux_sym_object_repeat1, + STATE(1522), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1558), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(831), 7, + anon_sym_export, + anon_sym_let, + anon_sym_get, + anon_sym_set, + anon_sym_async, + anon_sym_static, + sym_identifier, + [34693] = 14, + ACTIONS(99), 1, + anon_sym_COMMA, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1947), 1, + anon_sym_EQ, + ACTIONS(1951), 1, + anon_sym_RBRACE, + STATE(1241), 1, + aux_sym_object_pattern_repeat1, + STATE(1275), 1, + aux_sym_object_repeat1, + STATE(1522), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1558), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(831), 7, + anon_sym_export, + anon_sym_let, + anon_sym_get, + anon_sym_set, + anon_sym_async, + anon_sym_static, + sym_identifier, + [34746] = 15, + ACTIONS(1857), 1, + anon_sym_LBRACK, + ACTIONS(1859), 1, + anon_sym_DQUOTE, + ACTIONS(1861), 1, + anon_sym_SQUOTE, + ACTIONS(1955), 1, + anon_sym_STAR, + ACTIONS(1957), 1, + anon_sym_LBRACE, + ACTIONS(1961), 1, + anon_sym_async, + ACTIONS(1963), 1, + sym_automatic_semicolon, + STATE(885), 1, + sym_statement_block, + STATE(1063), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1863), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1959), 2, + anon_sym_get, + anon_sym_set, + STATE(1129), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1558), 3, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_EQ, + ACTIONS(1843), 4, + anon_sym_export, + anon_sym_let, + anon_sym_static, + sym_identifier, + [34801] = 14, + ACTIONS(99), 1, + anon_sym_COMMA, + ACTIONS(775), 1, + anon_sym_RBRACE, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1947), 1, + anon_sym_EQ, + STATE(1241), 1, + aux_sym_object_pattern_repeat1, + STATE(1275), 1, + aux_sym_object_repeat1, + STATE(1522), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1558), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(831), 7, + anon_sym_export, + anon_sym_let, + anon_sym_get, + anon_sym_set, + anon_sym_async, + anon_sym_static, + sym_identifier, + [34854] = 14, + ACTIONS(99), 1, + anon_sym_COMMA, + ACTIONS(745), 1, + anon_sym_RBRACE, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1947), 1, + anon_sym_EQ, + STATE(1239), 1, + aux_sym_object_repeat1, + STATE(1241), 1, + aux_sym_object_pattern_repeat1, + STATE(1522), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1558), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(831), 7, + anon_sym_export, + anon_sym_let, + anon_sym_get, + anon_sym_set, + anon_sym_async, + anon_sym_static, + sym_identifier, + [34907] = 14, + ACTIONS(99), 1, + anon_sym_COMMA, + ACTIONS(777), 1, + anon_sym_RBRACE, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1947), 1, + anon_sym_EQ, + STATE(1241), 1, + aux_sym_object_pattern_repeat1, + STATE(1275), 1, + aux_sym_object_repeat1, + STATE(1522), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1558), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(831), 7, + anon_sym_export, + anon_sym_let, + anon_sym_get, + anon_sym_set, + anon_sym_async, + anon_sym_static, + sym_identifier, + [34960] = 14, + ACTIONS(99), 1, + anon_sym_COMMA, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1947), 1, + anon_sym_EQ, + ACTIONS(1953), 1, + anon_sym_RBRACE, + STATE(1241), 1, + aux_sym_object_pattern_repeat1, + STATE(1275), 1, + aux_sym_object_repeat1, + STATE(1522), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1558), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(831), 7, + anon_sym_export, + anon_sym_let, + anon_sym_get, + anon_sym_set, + anon_sym_async, + anon_sym_static, + sym_identifier, + [35013] = 13, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1945), 1, + anon_sym_STAR, + ACTIONS(1947), 1, + anon_sym_EQ, + STATE(1522), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(85), 1, - anon_sym_AT, + ACTIONS(821), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(833), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(1558), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(1966), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(831), 5, + anon_sym_export, + anon_sym_let, + anon_sym_async, + anon_sym_static, + sym_identifier, + [35063] = 14, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(835), 1, + anon_sym_async, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1945), 1, + anon_sym_STAR, + ACTIONS(1947), 1, + anon_sym_EQ, + STATE(1522), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(833), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(1558), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(1966), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(831), 4, + anon_sym_export, + anon_sym_let, + anon_sym_static, + sym_identifier, + [35115] = 15, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(835), 1, + anon_sym_async, + ACTIONS(1831), 1, + anon_sym_COMMA, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1945), 1, + anon_sym_STAR, + ACTIONS(1969), 1, + anon_sym_RBRACE, + STATE(1237), 1, + aux_sym_object_repeat1, + STATE(1522), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(833), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(1558), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(831), 4, + anon_sym_export, + anon_sym_let, + anon_sym_static, + sym_identifier, + [35169] = 14, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(1831), 1, + anon_sym_COMMA, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1945), 1, + anon_sym_STAR, + ACTIONS(1969), 1, + anon_sym_RBRACE, + STATE(1237), 1, + aux_sym_object_repeat1, + STATE(1522), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(833), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(1558), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(831), 5, + anon_sym_export, + anon_sym_let, + anon_sym_async, + anon_sym_static, + sym_identifier, + [35221] = 19, ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1971), 1, + anon_sym_export, + ACTIONS(1973), 1, anon_sym_STAR, - ACTIONS(93), 1, + ACTIONS(1975), 1, + anon_sym_get, + ACTIONS(1977), 1, + anon_sym_set, + ACTIONS(1979), 1, + anon_sym_async, + ACTIONS(1981), 1, + anon_sym_static, + ACTIONS(1983), 1, + anon_sym_class, + ACTIONS(1985), 1, + aux_sym_method_definition_token1, + STATE(868), 1, + aux_sym_export_statement_repeat1, + STATE(933), 1, + sym_decorator, + STATE(1387), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(831), 2, + anon_sym_let, + sym_identifier, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + [35283] = 12, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(1831), 1, anon_sym_COMMA, - ACTIONS(105), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(779), 1, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1969), 1, + anon_sym_RBRACE, + STATE(1237), 1, + aux_sym_object_repeat1, + STATE(1522), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1558), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(831), 7, + anon_sym_export, + anon_sym_let, + anon_sym_get, + anon_sym_set, + anon_sym_async, + anon_sym_static, + sym_identifier, + [35330] = 11, + ACTIONS(815), 1, anon_sym_DQUOTE, - ACTIONS(781), 1, + ACTIONS(817), 1, anon_sym_SQUOTE, - ACTIONS(1643), 1, - anon_sym_LBRACE, - ACTIONS(1653), 1, + ACTIONS(1841), 1, anon_sym_LBRACK, - ACTIONS(1697), 1, + ACTIONS(1947), 1, + anon_sym_EQ, + STATE(1522), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1558), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(1966), 2, + anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(1701), 1, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(831), 7, + anon_sym_export, + anon_sym_let, + anon_sym_get, + anon_sym_set, anon_sym_async, - ACTIONS(1703), 1, anon_sym_static, - STATE(786), 1, + sym_identifier, + [35375] = 11, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1955), 1, + anon_sym_STAR, + STATE(1434), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1987), 2, + anon_sym_get, + anon_sym_set, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1558), 4, + sym_automatic_semicolon, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_EQ, + ACTIONS(831), 5, + anon_sym_export, + anon_sym_let, + anon_sym_async, + anon_sym_static, + sym_identifier, + [35420] = 12, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1945), 1, + anon_sym_STAR, + STATE(1522), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(833), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(1558), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(1989), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(831), 5, + anon_sym_export, + anon_sym_let, + anon_sym_async, + anon_sym_static, + sym_identifier, + [35467] = 17, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1857), 1, + anon_sym_LBRACK, + ACTIONS(1859), 1, + anon_sym_DQUOTE, + ACTIONS(1861), 1, + anon_sym_SQUOTE, + ACTIONS(1991), 1, + anon_sym_STAR, + ACTIONS(1993), 1, + anon_sym_get, + ACTIONS(1995), 1, + anon_sym_set, + ACTIONS(1997), 1, + anon_sym_async, + ACTIONS(1999), 1, + anon_sym_static, + ACTIONS(2001), 1, + aux_sym_method_definition_token1, + STATE(868), 1, aux_sym_export_statement_repeat1, - STATE(845), 1, + STATE(933), 1, sym_decorator, - STATE(1111), 1, + STATE(1055), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1863), 2, + sym_number, + sym_private_property_identifier, + STATE(1129), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1843), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + [35524] = 13, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(835), 1, + anon_sym_async, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1945), 1, + anon_sym_STAR, + STATE(1522), 1, sym_property_name, - STATE(1117), 1, - aux_sym_object_repeat1, - STATE(1153), 1, - aux_sym_object_pattern_repeat1, - STATE(1394), 1, - sym_destructuring_pattern, - ACTIONS(109), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, sym_number, sym_private_property_identifier, - ACTIONS(1695), 2, + ACTIONS(833), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(1558), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(1989), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(831), 4, anon_sym_export, + anon_sym_let, + anon_sym_static, sym_identifier, - ACTIONS(1699), 2, + [35573] = 12, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(2003), 1, + anon_sym_STAR, + ACTIONS(2005), 1, anon_sym_get, + ACTIONS(2007), 1, anon_sym_set, - STATE(912), 2, - sym_object_pattern, - sym_array_pattern, - STATE(1175), 2, + STATE(1472), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, + sym_number, + sym_private_property_identifier, + STATE(1424), 2, sym_string, sym_computed_property_name, - STATE(1098), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(1114), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - [31419] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_AT, + ACTIONS(1558), 4, + sym_automatic_semicolon, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_EQ, + ACTIONS(831), 5, + anon_sym_export, + anon_sym_let, + anon_sym_async, + anon_sym_static, + sym_identifier, + [35620] = 17, ACTIONS(91), 1, - anon_sym_STAR, - ACTIONS(93), 1, - anon_sym_COMMA, - ACTIONS(105), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(779), 1, + anon_sym_AT, + ACTIONS(815), 1, anon_sym_DQUOTE, - ACTIONS(781), 1, + ACTIONS(817), 1, anon_sym_SQUOTE, - ACTIONS(1643), 1, - anon_sym_LBRACE, - ACTIONS(1653), 1, + ACTIONS(1841), 1, anon_sym_LBRACK, - ACTIONS(1707), 1, - anon_sym_RBRACE, - ACTIONS(1711), 1, + ACTIONS(1973), 1, + anon_sym_STAR, + ACTIONS(1975), 1, + anon_sym_get, + ACTIONS(1977), 1, + anon_sym_set, + ACTIONS(1979), 1, anon_sym_async, - ACTIONS(1713), 1, + ACTIONS(1981), 1, anon_sym_static, - STATE(786), 1, + ACTIONS(1985), 1, + aux_sym_method_definition_token1, + STATE(868), 1, aux_sym_export_statement_repeat1, - STATE(845), 1, + STATE(933), 1, sym_decorator, - STATE(1111), 1, + STATE(1387), 1, sym_property_name, - STATE(1143), 1, - aux_sym_object_repeat1, - STATE(1153), 1, - aux_sym_object_pattern_repeat1, - STATE(1394), 1, - sym_destructuring_pattern, - ACTIONS(109), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, sym_number, sym_private_property_identifier, - ACTIONS(1705), 2, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(831), 3, anon_sym_export, + anon_sym_let, sym_identifier, - ACTIONS(1709), 2, + [35677] = 11, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(2009), 1, + anon_sym_STAR, + STATE(1467), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2011), 2, anon_sym_get, anon_sym_set, - STATE(912), 2, - sym_object_pattern, - sym_array_pattern, - STATE(1175), 2, + STATE(1424), 2, sym_string, sym_computed_property_name, - STATE(1098), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(1104), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - [31504] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_AT, - ACTIONS(91), 1, - anon_sym_STAR, - ACTIONS(105), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(779), 1, + ACTIONS(1558), 4, + sym_automatic_semicolon, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_EQ, + ACTIONS(831), 5, + anon_sym_export, + anon_sym_let, + anon_sym_async, + anon_sym_static, + sym_identifier, + [35722] = 13, + ACTIONS(1857), 1, + anon_sym_LBRACK, + ACTIONS(1859), 1, anon_sym_DQUOTE, - ACTIONS(781), 1, + ACTIONS(1861), 1, anon_sym_SQUOTE, - ACTIONS(1643), 1, - anon_sym_LBRACE, - ACTIONS(1653), 1, - anon_sym_LBRACK, - ACTIONS(1722), 1, + ACTIONS(2013), 1, + anon_sym_STAR, + ACTIONS(2015), 1, + anon_sym_get, + ACTIONS(2017), 1, + anon_sym_set, + ACTIONS(2019), 1, anon_sym_async, - ACTIONS(1724), 1, - anon_sym_static, - STATE(786), 1, - aux_sym_export_statement_repeat1, - STATE(845), 1, - sym_decorator, - STATE(1111), 1, + STATE(1034), 1, sym_property_name, - STATE(1394), 1, - sym_destructuring_pattern, - ACTIONS(109), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1863), 2, sym_number, sym_private_property_identifier, - ACTIONS(1715), 2, + STATE(1129), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1558), 4, + sym_automatic_semicolon, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_EQ, + ACTIONS(1843), 4, anon_sym_export, + anon_sym_let, + anon_sym_static, sym_identifier, - ACTIONS(1717), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1720), 2, + [35771] = 12, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(2021), 1, + anon_sym_STAR, + ACTIONS(2023), 1, anon_sym_get, + ACTIONS(2025), 1, anon_sym_set, - STATE(912), 2, - sym_object_pattern, - sym_array_pattern, - STATE(1175), 2, + STATE(1490), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, + sym_number, + sym_private_property_identifier, + STATE(1424), 2, sym_string, sym_computed_property_name, - STATE(1291), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(1315), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - [31581] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(614), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(779), 1, + ACTIONS(1558), 4, + sym_automatic_semicolon, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_EQ, + ACTIONS(831), 5, + anon_sym_export, + anon_sym_let, + anon_sym_async, + anon_sym_static, + sym_identifier, + [35818] = 9, + ACTIONS(815), 1, anon_sym_DQUOTE, - ACTIONS(781), 1, + ACTIONS(817), 1, anon_sym_SQUOTE, - ACTIONS(1643), 1, - anon_sym_LBRACE, - ACTIONS(1653), 1, + ACTIONS(1841), 1, anon_sym_LBRACK, - ACTIONS(1728), 1, - anon_sym_COMMA, - ACTIONS(1730), 1, - anon_sym_RBRACE, - STATE(1153), 1, - aux_sym_object_pattern_repeat1, - STATE(1394), 1, - sym_destructuring_pattern, - STATE(1430), 1, + STATE(1471), 1, sym_property_name, - ACTIONS(109), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, sym_number, sym_private_property_identifier, - STATE(912), 2, - sym_object_pattern, - sym_array_pattern, - STATE(1175), 2, + STATE(1424), 2, sym_string, sym_computed_property_name, - STATE(1098), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - ACTIONS(1726), 6, + ACTIONS(1558), 4, + sym_automatic_semicolon, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_EQ, + ACTIONS(831), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, sym_identifier, - [31640] = 16, - ACTIONS(3), 1, + [35858] = 6, + ACTIONS(2031), 1, + anon_sym_LPAREN, + ACTIONS(2033), 1, + anon_sym_DOT, + STATE(908), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(614), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(779), 1, + ACTIONS(2027), 8, + anon_sym_export, + anon_sym_let, + anon_sym_get, + anon_sym_set, + anon_sym_async, + anon_sym_static, + anon_sym_class, + sym_identifier, + ACTIONS(2029), 8, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(781), 1, anon_sym_SQUOTE, - ACTIONS(1643), 1, - anon_sym_LBRACE, - ACTIONS(1653), 1, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [35892] = 9, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(1841), 1, anon_sym_LBRACK, - ACTIONS(1728), 1, - anon_sym_COMMA, - ACTIONS(1734), 1, - anon_sym_RBRACE, - STATE(1118), 1, - aux_sym_object_pattern_repeat1, - STATE(1394), 1, - sym_destructuring_pattern, - STATE(1430), 1, + STATE(1434), 1, sym_property_name, - ACTIONS(109), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, sym_number, sym_private_property_identifier, - STATE(912), 2, - sym_object_pattern, - sym_array_pattern, - STATE(1175), 2, + STATE(1424), 2, sym_string, sym_computed_property_name, - STATE(1113), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - ACTIONS(1732), 6, + ACTIONS(1558), 4, + sym_automatic_semicolon, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_EQ, + ACTIONS(831), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, sym_identifier, - [31699] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(614), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(779), 1, + [35932] = 9, + ACTIONS(815), 1, anon_sym_DQUOTE, - ACTIONS(781), 1, + ACTIONS(817), 1, anon_sym_SQUOTE, - ACTIONS(1643), 1, - anon_sym_LBRACE, - ACTIONS(1653), 1, + ACTIONS(1841), 1, anon_sym_LBRACK, - STATE(1394), 1, - sym_destructuring_pattern, - STATE(1430), 1, + STATE(1489), 1, sym_property_name, - ACTIONS(109), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, sym_number, - sym_private_property_identifier, - ACTIONS(1738), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(912), 2, - sym_object_pattern, - sym_array_pattern, - STATE(1175), 2, + sym_private_property_identifier, + STATE(1424), 2, sym_string, sym_computed_property_name, - STATE(1291), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - ACTIONS(1736), 6, + ACTIONS(1558), 4, + sym_automatic_semicolon, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_EQ, + ACTIONS(831), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, sym_identifier, - [31753] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_AT, - ACTIONS(91), 1, - anon_sym_STAR, - ACTIONS(641), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(779), 1, + [35972] = 9, + ACTIONS(815), 1, anon_sym_DQUOTE, - ACTIONS(781), 1, + ACTIONS(817), 1, anon_sym_SQUOTE, - ACTIONS(1746), 1, - anon_sym_async, - ACTIONS(1748), 1, - anon_sym_static, - ACTIONS(1750), 1, + ACTIONS(1841), 1, anon_sym_LBRACK, - STATE(786), 1, - aux_sym_export_statement_repeat1, - STATE(845), 1, - sym_decorator, - STATE(1123), 1, + STATE(1488), 1, sym_property_name, - ACTIONS(109), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, sym_number, sym_private_property_identifier, - ACTIONS(1740), 2, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1558), 4, + sym_automatic_semicolon, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_EQ, + ACTIONS(831), 7, anon_sym_export, - sym_identifier, - ACTIONS(1742), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1744), 2, + anon_sym_let, anon_sym_get, anon_sym_set, - STATE(1175), 2, - sym_string, - sym_computed_property_name, - STATE(1315), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - [31815] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - anon_sym_COMMA, - ACTIONS(779), 1, + anon_sym_async, + anon_sym_static, + sym_identifier, + [36012] = 9, + ACTIONS(815), 1, anon_sym_DQUOTE, - ACTIONS(781), 1, + ACTIONS(817), 1, anon_sym_SQUOTE, - ACTIONS(1750), 1, + ACTIONS(1841), 1, anon_sym_LBRACK, - ACTIONS(1752), 1, - anon_sym_STAR, - ACTIONS(1754), 1, - anon_sym_RBRACE, - ACTIONS(1756), 1, - anon_sym_EQ, - STATE(1142), 1, - aux_sym_object_pattern_repeat1, - STATE(1146), 1, - aux_sym_object_repeat1, - STATE(1265), 1, + STATE(1467), 1, sym_property_name, - ACTIONS(109), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, sym_number, sym_private_property_identifier, - ACTIONS(785), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(1558), 2, - anon_sym_LPAREN, - anon_sym_COLON, - STATE(1175), 2, + STATE(1424), 2, sym_string, sym_computed_property_name, - ACTIONS(783), 4, + ACTIONS(1558), 4, + sym_automatic_semicolon, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_EQ, + ACTIONS(831), 7, anon_sym_export, + anon_sym_let, + anon_sym_get, + anon_sym_set, anon_sym_async, anon_sym_static, sym_identifier, - [31871] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_AT, - ACTIONS(91), 1, - anon_sym_STAR, - ACTIONS(1113), 1, + [36052] = 9, + ACTIONS(815), 1, anon_sym_DQUOTE, - ACTIONS(1115), 1, + ACTIONS(817), 1, anon_sym_SQUOTE, - ACTIONS(1760), 1, - anon_sym_RBRACE, - ACTIONS(1764), 1, - anon_sym_async, - ACTIONS(1766), 1, - anon_sym_static, - ACTIONS(1768), 1, + ACTIONS(1841), 1, anon_sym_LBRACK, - STATE(746), 1, - aux_sym_class_body_repeat1, - STATE(781), 1, - aux_sym_export_statement_repeat1, - STATE(820), 1, - sym_method_definition, - STATE(845), 1, - sym_decorator, - STATE(929), 1, + STATE(1470), 1, sym_property_name, - STATE(1246), 1, - sym_field_definition, - ACTIONS(1758), 2, - anon_sym_export, - sym_identifier, - ACTIONS(1762), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(1770), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, sym_number, sym_private_property_identifier, - STATE(1001), 2, + STATE(1424), 2, sym_string, sym_computed_property_name, - [31933] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - anon_sym_COMMA, - ACTIONS(779), 1, - anon_sym_DQUOTE, - ACTIONS(781), 1, - anon_sym_SQUOTE, - ACTIONS(1750), 1, - anon_sym_LBRACK, - ACTIONS(1752), 1, - anon_sym_STAR, - ACTIONS(1756), 1, + ACTIONS(1558), 4, + sym_automatic_semicolon, + anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_EQ, - ACTIONS(1772), 1, - anon_sym_RBRACE, - STATE(1137), 1, - aux_sym_object_repeat1, - STATE(1142), 1, - aux_sym_object_pattern_repeat1, - STATE(1265), 1, - sym_property_name, - ACTIONS(109), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(785), 2, + ACTIONS(831), 7, + anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, - ACTIONS(1558), 2, - anon_sym_LPAREN, - anon_sym_COLON, - STATE(1175), 2, - sym_string, - sym_computed_property_name, - ACTIONS(783), 4, - anon_sym_export, anon_sym_async, anon_sym_static, sym_identifier, - [31989] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - anon_sym_COMMA, - ACTIONS(779), 1, + [36092] = 10, + ACTIONS(815), 1, anon_sym_DQUOTE, - ACTIONS(781), 1, + ACTIONS(817), 1, anon_sym_SQUOTE, - ACTIONS(787), 1, - anon_sym_async, - ACTIONS(1750), 1, + ACTIONS(1841), 1, anon_sym_LBRACK, - ACTIONS(1752), 1, - anon_sym_STAR, - ACTIONS(1756), 1, - anon_sym_EQ, - ACTIONS(1772), 1, - anon_sym_RBRACE, - STATE(1137), 1, - aux_sym_object_repeat1, - STATE(1142), 1, - aux_sym_object_pattern_repeat1, - STATE(1265), 1, + STATE(1522), 1, sym_property_name, - ACTIONS(109), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, sym_number, sym_private_property_identifier, - ACTIONS(785), 2, - anon_sym_get, - anon_sym_set, ACTIONS(1558), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1175), 2, + ACTIONS(1989), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1424), 2, sym_string, sym_computed_property_name, - ACTIONS(783), 3, + ACTIONS(831), 7, anon_sym_export, + anon_sym_let, + anon_sym_get, + anon_sym_set, + anon_sym_async, anon_sym_static, sym_identifier, - [32047] = 19, - ACTIONS(3), 1, + [36134] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(85), 1, - anon_sym_AT, - ACTIONS(91), 1, - anon_sym_STAR, - ACTIONS(1113), 1, - anon_sym_DQUOTE, - ACTIONS(1115), 1, - anon_sym_SQUOTE, - ACTIONS(1764), 1, - anon_sym_async, - ACTIONS(1766), 1, - anon_sym_static, - ACTIONS(1768), 1, - anon_sym_LBRACK, - ACTIONS(1774), 1, - anon_sym_RBRACE, - STATE(750), 1, - aux_sym_class_body_repeat1, - STATE(781), 1, - aux_sym_export_statement_repeat1, - STATE(820), 1, - sym_method_definition, - STATE(845), 1, - sym_decorator, - STATE(929), 1, - sym_property_name, - STATE(1246), 1, - sym_field_definition, - ACTIONS(1758), 2, + ACTIONS(2035), 7, anon_sym_export, - sym_identifier, - ACTIONS(1762), 2, + anon_sym_let, anon_sym_get, anon_sym_set, - ACTIONS(1770), 2, - sym_number, - sym_private_property_identifier, - STATE(1001), 2, - sym_string, - sym_computed_property_name, - [32109] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, + anon_sym_async, + anon_sym_static, + sym_identifier, + ACTIONS(2037), 11, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(779), 1, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(781), 1, anon_sym_SQUOTE, - ACTIONS(1750), 1, - anon_sym_LBRACK, - ACTIONS(1752), 1, - anon_sym_STAR, - ACTIONS(1756), 1, - anon_sym_EQ, - ACTIONS(1776), 1, - anon_sym_RBRACE, - STATE(1142), 1, - aux_sym_object_pattern_repeat1, - STATE(1146), 1, - aux_sym_object_repeat1, - STATE(1265), 1, - sym_property_name, - ACTIONS(109), 2, sym_number, sym_private_property_identifier, - ACTIONS(785), 2, + anon_sym_AT, + aux_sym_method_definition_token1, + [36161] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2035), 7, + anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, - ACTIONS(1558), 2, - anon_sym_LPAREN, - anon_sym_COLON, - STATE(1175), 2, - sym_string, - sym_computed_property_name, - ACTIONS(783), 4, - anon_sym_export, anon_sym_async, anon_sym_static, sym_identifier, - [32165] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, + ACTIONS(2037), 11, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(779), 1, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(781), 1, anon_sym_SQUOTE, - ACTIONS(787), 1, - anon_sym_async, - ACTIONS(1750), 1, - anon_sym_LBRACK, - ACTIONS(1752), 1, - anon_sym_STAR, - ACTIONS(1756), 1, - anon_sym_EQ, - ACTIONS(1776), 1, - anon_sym_RBRACE, - STATE(1142), 1, - aux_sym_object_pattern_repeat1, - STATE(1146), 1, - aux_sym_object_repeat1, - STATE(1265), 1, - sym_property_name, - ACTIONS(109), 2, sym_number, sym_private_property_identifier, - ACTIONS(785), 2, + anon_sym_AT, + aux_sym_method_definition_token1, + [36188] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2039), 7, + anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, - ACTIONS(1558), 2, - anon_sym_LPAREN, - anon_sym_COLON, - STATE(1175), 2, - sym_string, - sym_computed_property_name, - ACTIONS(783), 3, - anon_sym_export, + anon_sym_async, anon_sym_static, sym_identifier, - [32223] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1781), 1, + ACTIONS(2041), 11, anon_sym_STAR, - ACTIONS(1784), 1, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(1789), 1, - anon_sym_async, - ACTIONS(1792), 1, - anon_sym_static, - ACTIONS(1795), 1, anon_sym_LBRACK, - ACTIONS(1798), 1, anon_sym_DQUOTE, - ACTIONS(1801), 1, anon_sym_SQUOTE, - ACTIONS(1807), 1, + sym_number, + sym_private_property_identifier, anon_sym_AT, - STATE(746), 1, - aux_sym_class_body_repeat1, - STATE(781), 1, - aux_sym_export_statement_repeat1, - STATE(820), 1, - sym_method_definition, - STATE(845), 1, - sym_decorator, - STATE(929), 1, - sym_property_name, - STATE(1246), 1, - sym_field_definition, - ACTIONS(1778), 2, + aux_sym_method_definition_token1, + [36215] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2039), 7, anon_sym_export, - sym_identifier, - ACTIONS(1786), 2, + anon_sym_let, anon_sym_get, anon_sym_set, - ACTIONS(1804), 2, - sym_number, - sym_private_property_identifier, - STATE(1001), 2, - sym_string, - sym_computed_property_name, - [32285] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - anon_sym_COMMA, - ACTIONS(779), 1, - anon_sym_DQUOTE, - ACTIONS(781), 1, - anon_sym_SQUOTE, - ACTIONS(787), 1, anon_sym_async, - ACTIONS(1750), 1, - anon_sym_LBRACK, - ACTIONS(1752), 1, + anon_sym_static, + sym_identifier, + ACTIONS(2041), 11, anon_sym_STAR, - ACTIONS(1754), 1, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(1756), 1, - anon_sym_EQ, - STATE(1142), 1, - aux_sym_object_pattern_repeat1, - STATE(1146), 1, - aux_sym_object_repeat1, - STATE(1265), 1, - sym_property_name, - ACTIONS(109), 2, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(785), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(1558), 2, - anon_sym_LPAREN, - anon_sym_COLON, - STATE(1175), 2, - sym_string, - sym_computed_property_name, - ACTIONS(783), 3, + anon_sym_AT, + aux_sym_method_definition_token1, + [36242] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2043), 7, anon_sym_export, + anon_sym_let, + anon_sym_get, + anon_sym_set, + anon_sym_async, anon_sym_static, sym_identifier, - [32343] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, + ACTIONS(2045), 11, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(683), 1, anon_sym_RBRACE, - ACTIONS(779), 1, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(781), 1, anon_sym_SQUOTE, - ACTIONS(1750), 1, - anon_sym_LBRACK, - ACTIONS(1752), 1, - anon_sym_STAR, - ACTIONS(1756), 1, - anon_sym_EQ, - STATE(1137), 1, - aux_sym_object_repeat1, - STATE(1142), 1, - aux_sym_object_pattern_repeat1, - STATE(1265), 1, - sym_property_name, - ACTIONS(109), 2, sym_number, sym_private_property_identifier, - ACTIONS(785), 2, + anon_sym_AT, + aux_sym_method_definition_token1, + [36269] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2047), 7, + anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, - ACTIONS(1558), 2, - anon_sym_LPAREN, - anon_sym_COLON, - STATE(1175), 2, - sym_string, - sym_computed_property_name, - ACTIONS(783), 4, - anon_sym_export, anon_sym_async, anon_sym_static, sym_identifier, - [32399] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, + ACTIONS(2049), 11, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(683), 1, anon_sym_RBRACE, - ACTIONS(779), 1, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(781), 1, anon_sym_SQUOTE, - ACTIONS(787), 1, - anon_sym_async, - ACTIONS(1750), 1, - anon_sym_LBRACK, - ACTIONS(1752), 1, - anon_sym_STAR, - ACTIONS(1756), 1, - anon_sym_EQ, - STATE(1137), 1, - aux_sym_object_repeat1, - STATE(1142), 1, - aux_sym_object_pattern_repeat1, - STATE(1265), 1, - sym_property_name, - ACTIONS(109), 2, sym_number, sym_private_property_identifier, - ACTIONS(785), 2, + anon_sym_AT, + aux_sym_method_definition_token1, + [36296] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2051), 7, + anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, - ACTIONS(1558), 2, - anon_sym_LPAREN, - anon_sym_COLON, - STATE(1175), 2, - sym_string, - sym_computed_property_name, - ACTIONS(783), 3, - anon_sym_export, + anon_sym_async, anon_sym_static, sym_identifier, - [32457] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_AT, - ACTIONS(91), 1, + ACTIONS(2053), 11, anon_sym_STAR, - ACTIONS(1113), 1, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1115), 1, anon_sym_SQUOTE, - ACTIONS(1764), 1, - anon_sym_async, - ACTIONS(1766), 1, - anon_sym_static, - ACTIONS(1768), 1, - anon_sym_LBRACK, - ACTIONS(1810), 1, - anon_sym_RBRACE, - STATE(746), 1, - aux_sym_class_body_repeat1, - STATE(781), 1, - aux_sym_export_statement_repeat1, - STATE(820), 1, - sym_method_definition, - STATE(845), 1, - sym_decorator, - STATE(929), 1, - sym_property_name, - STATE(1246), 1, - sym_field_definition, - ACTIONS(1758), 2, - anon_sym_export, - sym_identifier, - ACTIONS(1762), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(1770), 2, sym_number, sym_private_property_identifier, - STATE(1001), 2, - sym_string, - sym_computed_property_name, - [32519] = 17, - ACTIONS(3), 1, + anon_sym_AT, + aux_sym_method_definition_token1, + [36323] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(93), 1, + ACTIONS(2051), 7, + anon_sym_export, + anon_sym_let, + anon_sym_get, + anon_sym_set, + anon_sym_async, + anon_sym_static, + sym_identifier, + ACTIONS(2053), 11, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(709), 1, anon_sym_RBRACE, - ACTIONS(779), 1, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(781), 1, anon_sym_SQUOTE, - ACTIONS(787), 1, - anon_sym_async, - ACTIONS(1750), 1, - anon_sym_LBRACK, - ACTIONS(1752), 1, - anon_sym_STAR, - ACTIONS(1756), 1, - anon_sym_EQ, - STATE(1142), 1, - aux_sym_object_pattern_repeat1, - STATE(1146), 1, - aux_sym_object_repeat1, - STATE(1265), 1, - sym_property_name, - ACTIONS(109), 2, sym_number, sym_private_property_identifier, - ACTIONS(785), 2, + anon_sym_AT, + aux_sym_method_definition_token1, + [36350] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2051), 7, + anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, - ACTIONS(1558), 2, - anon_sym_LPAREN, - anon_sym_COLON, - STATE(1175), 2, - sym_string, - sym_computed_property_name, - ACTIONS(783), 3, - anon_sym_export, + anon_sym_async, anon_sym_static, sym_identifier, - [32577] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_AT, - ACTIONS(91), 1, + ACTIONS(2053), 11, anon_sym_STAR, - ACTIONS(1113), 1, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1115), 1, anon_sym_SQUOTE, - ACTIONS(1764), 1, - anon_sym_async, - ACTIONS(1766), 1, - anon_sym_static, - ACTIONS(1768), 1, - anon_sym_LBRACK, - ACTIONS(1812), 1, - anon_sym_RBRACE, - STATE(756), 1, - aux_sym_class_body_repeat1, - STATE(781), 1, - aux_sym_export_statement_repeat1, - STATE(820), 1, - sym_method_definition, - STATE(845), 1, - sym_decorator, - STATE(929), 1, - sym_property_name, - STATE(1246), 1, - sym_field_definition, - ACTIONS(1758), 2, - anon_sym_export, - sym_identifier, - ACTIONS(1762), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(1770), 2, sym_number, sym_private_property_identifier, - STATE(1001), 2, - sym_string, - sym_computed_property_name, - [32639] = 16, - ACTIONS(3), 1, + anon_sym_AT, + aux_sym_method_definition_token1, + [36377] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(93), 1, + ACTIONS(2051), 7, + anon_sym_export, + anon_sym_let, + anon_sym_get, + anon_sym_set, + anon_sym_async, + anon_sym_static, + sym_identifier, + ACTIONS(2053), 11, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(711), 1, anon_sym_RBRACE, - ACTIONS(779), 1, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(781), 1, anon_sym_SQUOTE, - ACTIONS(1750), 1, - anon_sym_LBRACK, - ACTIONS(1752), 1, - anon_sym_STAR, - ACTIONS(1756), 1, - anon_sym_EQ, - STATE(1142), 1, - aux_sym_object_pattern_repeat1, - STATE(1146), 1, - aux_sym_object_repeat1, - STATE(1265), 1, - sym_property_name, - ACTIONS(109), 2, sym_number, sym_private_property_identifier, - ACTIONS(785), 2, + anon_sym_AT, + aux_sym_method_definition_token1, + [36404] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2035), 7, + anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, - ACTIONS(1558), 2, - anon_sym_LPAREN, - anon_sym_COLON, - STATE(1175), 2, - sym_string, - sym_computed_property_name, - ACTIONS(783), 4, - anon_sym_export, anon_sym_async, anon_sym_static, sym_identifier, - [32695] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, + ACTIONS(2037), 11, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(711), 1, anon_sym_RBRACE, - ACTIONS(779), 1, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(781), 1, anon_sym_SQUOTE, - ACTIONS(787), 1, - anon_sym_async, - ACTIONS(1750), 1, - anon_sym_LBRACK, - ACTIONS(1752), 1, - anon_sym_STAR, - ACTIONS(1756), 1, - anon_sym_EQ, - STATE(1142), 1, - aux_sym_object_pattern_repeat1, - STATE(1146), 1, - aux_sym_object_repeat1, - STATE(1265), 1, - sym_property_name, - ACTIONS(109), 2, sym_number, sym_private_property_identifier, - ACTIONS(785), 2, + anon_sym_AT, + aux_sym_method_definition_token1, + [36431] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2055), 7, + anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, - ACTIONS(1558), 2, - anon_sym_LPAREN, - anon_sym_COLON, - STATE(1175), 2, - sym_string, - sym_computed_property_name, - ACTIONS(783), 3, - anon_sym_export, + anon_sym_async, anon_sym_static, sym_identifier, - [32753] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_AT, - ACTIONS(91), 1, + ACTIONS(2057), 11, anon_sym_STAR, - ACTIONS(1113), 1, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1115), 1, anon_sym_SQUOTE, - ACTIONS(1764), 1, - anon_sym_async, - ACTIONS(1766), 1, - anon_sym_static, - ACTIONS(1768), 1, - anon_sym_LBRACK, - ACTIONS(1814), 1, - anon_sym_RBRACE, - STATE(740), 1, - aux_sym_class_body_repeat1, - STATE(781), 1, - aux_sym_export_statement_repeat1, - STATE(820), 1, - sym_method_definition, - STATE(845), 1, - sym_decorator, - STATE(929), 1, - sym_property_name, - STATE(1246), 1, - sym_field_definition, - ACTIONS(1758), 2, - anon_sym_export, - sym_identifier, - ACTIONS(1762), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(1770), 2, sym_number, sym_private_property_identifier, - STATE(1001), 2, - sym_string, - sym_computed_property_name, - [32815] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, anon_sym_AT, - ACTIONS(91), 1, - anon_sym_STAR, - ACTIONS(1113), 1, - anon_sym_DQUOTE, - ACTIONS(1115), 1, - anon_sym_SQUOTE, - ACTIONS(1764), 1, - anon_sym_async, - ACTIONS(1766), 1, - anon_sym_static, - ACTIONS(1768), 1, - anon_sym_LBRACK, - ACTIONS(1816), 1, - anon_sym_RBRACE, - STATE(746), 1, - aux_sym_class_body_repeat1, - STATE(781), 1, - aux_sym_export_statement_repeat1, - STATE(820), 1, - sym_method_definition, - STATE(845), 1, - sym_decorator, - STATE(929), 1, - sym_property_name, - STATE(1246), 1, - sym_field_definition, - ACTIONS(1758), 2, + aux_sym_method_definition_token1, + [36458] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2035), 7, anon_sym_export, - sym_identifier, - ACTIONS(1762), 2, + anon_sym_let, anon_sym_get, anon_sym_set, - ACTIONS(1770), 2, - sym_number, - sym_private_property_identifier, - STATE(1001), 2, - sym_string, - sym_computed_property_name, - [32877] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, + anon_sym_async, + anon_sym_static, + sym_identifier, + ACTIONS(2037), 11, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(779), 1, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(781), 1, anon_sym_SQUOTE, - ACTIONS(1750), 1, - anon_sym_LBRACK, - ACTIONS(1752), 1, - anon_sym_STAR, - ACTIONS(1756), 1, - anon_sym_EQ, - ACTIONS(1818), 1, - anon_sym_RBRACE, - STATE(1142), 1, - aux_sym_object_pattern_repeat1, - STATE(1146), 1, - aux_sym_object_repeat1, - STATE(1265), 1, - sym_property_name, - ACTIONS(109), 2, sym_number, sym_private_property_identifier, - ACTIONS(785), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(1558), 2, - anon_sym_LPAREN, - anon_sym_COLON, - STATE(1175), 2, - sym_string, - sym_computed_property_name, - ACTIONS(783), 4, + anon_sym_AT, + aux_sym_method_definition_token1, + [36485] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2035), 7, anon_sym_export, + anon_sym_let, + anon_sym_get, + anon_sym_set, anon_sym_async, anon_sym_static, sym_identifier, - [32933] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, + ACTIONS(2037), 11, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(779), 1, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(781), 1, anon_sym_SQUOTE, - ACTIONS(787), 1, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [36512] = 4, + ACTIONS(2059), 1, + sym_automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(498), 7, + anon_sym_export, + anon_sym_let, + anon_sym_get, + anon_sym_set, anon_sym_async, - ACTIONS(1750), 1, - anon_sym_LBRACK, - ACTIONS(1752), 1, + anon_sym_static, + sym_identifier, + ACTIONS(496), 10, anon_sym_STAR, - ACTIONS(1756), 1, - anon_sym_EQ, - ACTIONS(1818), 1, + anon_sym_SEMI, anon_sym_RBRACE, - STATE(1142), 1, - aux_sym_object_pattern_repeat1, - STATE(1146), 1, - aux_sym_object_repeat1, - STATE(1265), 1, - sym_property_name, - ACTIONS(109), 2, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(785), 2, + anon_sym_AT, + aux_sym_method_definition_token1, + [36541] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2035), 7, + anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, - ACTIONS(1558), 2, - anon_sym_LPAREN, - anon_sym_COLON, - STATE(1175), 2, - sym_string, - sym_computed_property_name, - ACTIONS(783), 3, - anon_sym_export, + anon_sym_async, anon_sym_static, sym_identifier, - [32991] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, + ACTIONS(2037), 11, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(709), 1, anon_sym_RBRACE, - ACTIONS(779), 1, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(781), 1, anon_sym_SQUOTE, - ACTIONS(1750), 1, - anon_sym_LBRACK, - ACTIONS(1752), 1, - anon_sym_STAR, - ACTIONS(1756), 1, - anon_sym_EQ, - STATE(1142), 1, - aux_sym_object_pattern_repeat1, - STATE(1146), 1, - aux_sym_object_repeat1, - STATE(1265), 1, - sym_property_name, - ACTIONS(109), 2, sym_number, sym_private_property_identifier, - ACTIONS(785), 2, + anon_sym_AT, + aux_sym_method_definition_token1, + [36568] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2035), 7, + anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, - ACTIONS(1558), 2, - anon_sym_LPAREN, - anon_sym_COLON, - STATE(1175), 2, - sym_string, - sym_computed_property_name, - ACTIONS(783), 4, - anon_sym_export, anon_sym_async, anon_sym_static, sym_identifier, - [33047] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, + ACTIONS(2037), 11, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(779), 1, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(781), 1, anon_sym_SQUOTE, - ACTIONS(1750), 1, - anon_sym_LBRACK, - ACTIONS(1754), 1, - anon_sym_RBRACE, - ACTIONS(1756), 1, - anon_sym_EQ, - STATE(1142), 1, - aux_sym_object_pattern_repeat1, - STATE(1146), 1, - aux_sym_object_repeat1, - STATE(1265), 1, - sym_property_name, - ACTIONS(109), 2, sym_number, sym_private_property_identifier, - ACTIONS(1558), 2, - anon_sym_LPAREN, - anon_sym_COLON, - STATE(1175), 2, - sym_string, - sym_computed_property_name, - ACTIONS(783), 6, + anon_sym_AT, + aux_sym_method_definition_token1, + [36595] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2039), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, sym_identifier, - [33098] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, + ACTIONS(2041), 11, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(683), 1, anon_sym_RBRACE, - ACTIONS(779), 1, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(781), 1, anon_sym_SQUOTE, - ACTIONS(1750), 1, - anon_sym_LBRACK, - ACTIONS(1756), 1, - anon_sym_EQ, - STATE(1137), 1, - aux_sym_object_repeat1, - STATE(1142), 1, - aux_sym_object_pattern_repeat1, - STATE(1265), 1, - sym_property_name, - ACTIONS(109), 2, sym_number, sym_private_property_identifier, - ACTIONS(1558), 2, - anon_sym_LPAREN, - anon_sym_COLON, - STATE(1175), 2, - sym_string, - sym_computed_property_name, - ACTIONS(783), 6, + anon_sym_AT, + aux_sym_method_definition_token1, + [36622] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2061), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, sym_identifier, - [33149] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, + ACTIONS(2063), 11, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(711), 1, anon_sym_RBRACE, - ACTIONS(779), 1, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(781), 1, anon_sym_SQUOTE, - ACTIONS(1750), 1, - anon_sym_LBRACK, - ACTIONS(1756), 1, - anon_sym_EQ, - STATE(1142), 1, - aux_sym_object_pattern_repeat1, - STATE(1146), 1, - aux_sym_object_repeat1, - STATE(1265), 1, - sym_property_name, - ACTIONS(109), 2, sym_number, sym_private_property_identifier, - ACTIONS(1558), 2, - anon_sym_LPAREN, - anon_sym_COLON, - STATE(1175), 2, - sym_string, - sym_computed_property_name, - ACTIONS(783), 6, + anon_sym_AT, + aux_sym_method_definition_token1, + [36649] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2065), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, sym_identifier, - [33200] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, + ACTIONS(2067), 11, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(709), 1, anon_sym_RBRACE, - ACTIONS(779), 1, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(781), 1, anon_sym_SQUOTE, - ACTIONS(1750), 1, - anon_sym_LBRACK, - ACTIONS(1756), 1, - anon_sym_EQ, - STATE(1142), 1, - aux_sym_object_pattern_repeat1, - STATE(1146), 1, - aux_sym_object_repeat1, - STATE(1265), 1, - sym_property_name, - ACTIONS(109), 2, sym_number, sym_private_property_identifier, - ACTIONS(1558), 2, - anon_sym_LPAREN, - anon_sym_COLON, - STATE(1175), 2, - sym_string, - sym_computed_property_name, - ACTIONS(783), 6, + anon_sym_AT, + aux_sym_method_definition_token1, + [36676] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2069), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, sym_identifier, - [33251] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, + ACTIONS(2071), 11, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(779), 1, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(781), 1, anon_sym_SQUOTE, - ACTIONS(1750), 1, - anon_sym_LBRACK, - ACTIONS(1756), 1, - anon_sym_EQ, - ACTIONS(1772), 1, - anon_sym_RBRACE, - STATE(1137), 1, - aux_sym_object_repeat1, - STATE(1142), 1, - aux_sym_object_pattern_repeat1, - STATE(1265), 1, - sym_property_name, - ACTIONS(109), 2, sym_number, sym_private_property_identifier, - ACTIONS(1558), 2, - anon_sym_LPAREN, - anon_sym_COLON, - STATE(1175), 2, - sym_string, - sym_computed_property_name, - ACTIONS(783), 6, + anon_sym_AT, + aux_sym_method_definition_token1, + [36703] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2073), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, sym_identifier, - [33302] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, + ACTIONS(2075), 11, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(779), 1, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(781), 1, anon_sym_SQUOTE, - ACTIONS(1750), 1, - anon_sym_LBRACK, - ACTIONS(1756), 1, - anon_sym_EQ, - ACTIONS(1776), 1, - anon_sym_RBRACE, - STATE(1142), 1, - aux_sym_object_pattern_repeat1, - STATE(1146), 1, - aux_sym_object_repeat1, - STATE(1265), 1, - sym_property_name, - ACTIONS(109), 2, sym_number, sym_private_property_identifier, - ACTIONS(1558), 2, - anon_sym_LPAREN, - anon_sym_COLON, - STATE(1175), 2, - sym_string, - sym_computed_property_name, - ACTIONS(783), 6, + anon_sym_AT, + aux_sym_method_definition_token1, + [36730] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2077), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, sym_identifier, - [33353] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, + ACTIONS(2079), 11, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(779), 1, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(781), 1, anon_sym_SQUOTE, - ACTIONS(1750), 1, - anon_sym_LBRACK, - ACTIONS(1756), 1, - anon_sym_EQ, - ACTIONS(1818), 1, - anon_sym_RBRACE, - STATE(1142), 1, - aux_sym_object_pattern_repeat1, - STATE(1146), 1, - aux_sym_object_repeat1, - STATE(1265), 1, - sym_property_name, - ACTIONS(109), 2, sym_number, sym_private_property_identifier, - ACTIONS(1558), 2, - anon_sym_LPAREN, - anon_sym_COLON, - STATE(1175), 2, - sym_string, - sym_computed_property_name, - ACTIONS(783), 6, + anon_sym_AT, + aux_sym_method_definition_token1, + [36757] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2081), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, sym_identifier, - [33404] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(779), 1, + ACTIONS(2083), 11, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(781), 1, anon_sym_SQUOTE, - ACTIONS(787), 1, - anon_sym_async, - ACTIONS(1750), 1, - anon_sym_LBRACK, - ACTIONS(1752), 1, - anon_sym_STAR, - ACTIONS(1756), 1, - anon_sym_EQ, - STATE(1265), 1, - sym_property_name, - ACTIONS(109), 2, sym_number, sym_private_property_identifier, - ACTIONS(785), 2, + anon_sym_AT, + aux_sym_method_definition_token1, + [36784] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2081), 7, + anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, - ACTIONS(1558), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(1820), 2, + anon_sym_async, + anon_sym_static, + sym_identifier, + ACTIONS(2083), 11, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, - STATE(1175), 2, - sym_string, - sym_computed_property_name, - ACTIONS(783), 3, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [36811] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2085), 7, anon_sym_export, + anon_sym_let, + anon_sym_get, + anon_sym_set, + anon_sym_async, anon_sym_static, sym_identifier, - [33454] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(779), 1, + ACTIONS(2087), 11, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(781), 1, anon_sym_SQUOTE, - ACTIONS(1750), 1, - anon_sym_LBRACK, - ACTIONS(1752), 1, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [36838] = 6, + ACTIONS(2093), 1, + anon_sym_AT, + STATE(868), 1, + aux_sym_export_statement_repeat1, + STATE(933), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2091), 7, anon_sym_STAR, - ACTIONS(1756), 1, - anon_sym_EQ, - STATE(1265), 1, - sym_property_name, - ACTIONS(109), 2, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(785), 2, + aux_sym_method_definition_token1, + ACTIONS(2089), 8, + anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, - ACTIONS(1558), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(1820), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1175), 2, - sym_string, - sym_computed_property_name, - ACTIONS(783), 4, - anon_sym_export, anon_sym_async, anon_sym_static, + anon_sym_class, sym_identifier, - [33502] = 13, - ACTIONS(3), 1, + [36871] = 4, + ACTIONS(2096), 1, + sym_automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(779), 1, - anon_sym_DQUOTE, - ACTIONS(781), 1, - anon_sym_SQUOTE, - ACTIONS(787), 1, + ACTIONS(492), 7, + anon_sym_export, + anon_sym_let, + anon_sym_get, + anon_sym_set, anon_sym_async, - ACTIONS(1750), 1, - anon_sym_LBRACK, - ACTIONS(1752), 1, + anon_sym_static, + sym_identifier, + ACTIONS(490), 10, anon_sym_STAR, - STATE(1265), 1, - sym_property_name, - ACTIONS(109), 2, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(785), 2, + anon_sym_AT, + aux_sym_method_definition_token1, + [36900] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2061), 7, + anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, - ACTIONS(1558), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(1823), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1175), 2, - sym_string, - sym_computed_property_name, - ACTIONS(783), 3, - anon_sym_export, + anon_sym_async, anon_sym_static, sym_identifier, - [33549] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1113), 1, - anon_sym_DQUOTE, - ACTIONS(1115), 1, - anon_sym_SQUOTE, - ACTIONS(1752), 1, + ACTIONS(2063), 11, anon_sym_STAR, - ACTIONS(1768), 1, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(1827), 1, - anon_sym_async, - STATE(936), 1, - sym_property_name, - ACTIONS(1770), 2, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1825), 2, + anon_sym_AT, + aux_sym_method_definition_token1, + [36927] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2081), 7, + anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, - STATE(1001), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1758), 3, - anon_sym_export, + anon_sym_async, anon_sym_static, sym_identifier, - ACTIONS(1558), 4, - sym_automatic_semicolon, + ACTIONS(2083), 11, + anon_sym_STAR, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_EQ, - [33594] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_AT, - ACTIONS(779), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(781), 1, anon_sym_SQUOTE, - ACTIONS(783), 1, - sym_identifier, - ACTIONS(1750), 1, - anon_sym_LBRACK, - ACTIONS(1829), 1, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [36954] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2081), 7, anon_sym_export, - ACTIONS(1831), 1, - anon_sym_STAR, - ACTIONS(1833), 1, + anon_sym_let, anon_sym_get, - ACTIONS(1835), 1, anon_sym_set, - ACTIONS(1837), 1, anon_sym_async, - ACTIONS(1839), 1, anon_sym_static, - ACTIONS(1841), 1, - anon_sym_class, - STATE(800), 1, - aux_sym_export_statement_repeat1, - STATE(845), 1, - sym_decorator, - STATE(1214), 1, - sym_property_name, - ACTIONS(109), 2, - sym_number, - sym_private_property_identifier, - STATE(1175), 2, - sym_string, - sym_computed_property_name, - [33651] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(779), 1, + sym_identifier, + ACTIONS(2083), 11, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(781), 1, anon_sym_SQUOTE, - ACTIONS(1750), 1, - anon_sym_LBRACK, - ACTIONS(1752), 1, - anon_sym_STAR, - STATE(1265), 1, - sym_property_name, - ACTIONS(109), 2, sym_number, sym_private_property_identifier, - ACTIONS(785), 2, + anon_sym_AT, + aux_sym_method_definition_token1, + [36981] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2061), 7, + anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, - STATE(1175), 2, - sym_string, - sym_computed_property_name, - ACTIONS(783), 4, - anon_sym_export, anon_sym_async, anon_sym_static, sym_identifier, - ACTIONS(1558), 4, - sym_automatic_semicolon, + ACTIONS(2063), 11, + anon_sym_STAR, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_EQ, - [33694] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(779), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(781), 1, anon_sym_SQUOTE, - ACTIONS(1750), 1, - anon_sym_LBRACK, - ACTIONS(1843), 1, - anon_sym_STAR, - STATE(1212), 1, - sym_property_name, - ACTIONS(109), 2, sym_number, sym_private_property_identifier, - ACTIONS(1845), 2, + anon_sym_AT, + aux_sym_method_definition_token1, + [37008] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2098), 9, + anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, - STATE(1175), 2, - sym_string, - sym_computed_property_name, - ACTIONS(783), 4, - anon_sym_export, anon_sym_async, anon_sym_static, + anon_sym_DOT, + anon_sym_class, sym_identifier, - ACTIONS(1558), 4, - sym_automatic_semicolon, - anon_sym_SEMI, + ACTIONS(2100), 9, + anon_sym_STAR, anon_sym_LPAREN, - anon_sym_EQ, - [33737] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(779), 1, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(781), 1, anon_sym_SQUOTE, - ACTIONS(1750), 1, - anon_sym_LBRACK, - ACTIONS(1847), 1, - anon_sym_STAR, - ACTIONS(1849), 1, - anon_sym_get, - ACTIONS(1851), 1, - anon_sym_set, - STATE(1313), 1, - sym_property_name, - ACTIONS(109), 2, sym_number, sym_private_property_identifier, - STATE(1175), 2, - sym_string, - sym_computed_property_name, - ACTIONS(783), 4, + anon_sym_AT, + aux_sym_method_definition_token1, + [37035] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2081), 7, anon_sym_export, + anon_sym_let, + anon_sym_get, + anon_sym_set, anon_sym_async, anon_sym_static, sym_identifier, - ACTIONS(1558), 4, - sym_automatic_semicolon, + ACTIONS(2083), 11, + anon_sym_STAR, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_EQ, - [33782] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(779), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(781), 1, anon_sym_SQUOTE, - ACTIONS(1750), 1, - anon_sym_LBRACK, - ACTIONS(1756), 1, - anon_sym_EQ, - STATE(1265), 1, - sym_property_name, - ACTIONS(109), 2, sym_number, sym_private_property_identifier, - ACTIONS(1558), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(1820), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1175), 2, - sym_string, - sym_computed_property_name, - ACTIONS(783), 6, + anon_sym_AT, + aux_sym_method_definition_token1, + [37062] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2102), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, sym_identifier, - [33825] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1113), 1, + ACTIONS(2104), 11, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [37089] = 12, + ACTIONS(815), 1, anon_sym_DQUOTE, - ACTIONS(1115), 1, + ACTIONS(817), 1, anon_sym_SQUOTE, - ACTIONS(1768), 1, + ACTIONS(1558), 1, + anon_sym_LPAREN, + ACTIONS(1841), 1, anon_sym_LBRACK, - ACTIONS(1853), 1, + ACTIONS(2106), 1, anon_sym_STAR, - ACTIONS(1855), 1, + ACTIONS(2108), 1, anon_sym_get, - ACTIONS(1857), 1, + ACTIONS(2110), 1, anon_sym_set, - ACTIONS(1859), 1, - anon_sym_async, - STATE(923), 1, + STATE(1494), 1, sym_property_name, - ACTIONS(1770), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, sym_number, sym_private_property_identifier, - STATE(1001), 2, + STATE(1424), 2, sym_string, sym_computed_property_name, - ACTIONS(1758), 3, + ACTIONS(831), 5, anon_sym_export, + anon_sym_let, + anon_sym_async, anon_sym_static, sym_identifier, - ACTIONS(1558), 4, - sym_automatic_semicolon, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_EQ, - [33872] = 12, - ACTIONS(3), 1, + [37133] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(779), 1, + ACTIONS(498), 7, + anon_sym_export, + anon_sym_let, + anon_sym_get, + anon_sym_set, + anon_sym_async, + anon_sym_static, + sym_identifier, + ACTIONS(496), 10, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [37159] = 12, + ACTIONS(815), 1, anon_sym_DQUOTE, - ACTIONS(781), 1, + ACTIONS(817), 1, anon_sym_SQUOTE, - ACTIONS(1750), 1, + ACTIONS(1558), 1, + anon_sym_LPAREN, + ACTIONS(1841), 1, anon_sym_LBRACK, - ACTIONS(1861), 1, + ACTIONS(2112), 1, anon_sym_STAR, - ACTIONS(1863), 1, + ACTIONS(2114), 1, anon_sym_get, - ACTIONS(1865), 1, + ACTIONS(2116), 1, anon_sym_set, - STATE(1331), 1, + STATE(1511), 1, sym_property_name, - ACTIONS(109), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, sym_number, sym_private_property_identifier, - STATE(1175), 2, + STATE(1424), 2, sym_string, sym_computed_property_name, - ACTIONS(783), 4, + ACTIONS(831), 5, anon_sym_export, + anon_sym_let, anon_sym_async, anon_sym_static, sym_identifier, - ACTIONS(1558), 4, - sym_automatic_semicolon, + [37203] = 4, + ACTIONS(2122), 1, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_EQ, - [33917] = 12, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(779), 1, + ACTIONS(2118), 7, + anon_sym_export, + anon_sym_let, + anon_sym_get, + anon_sym_set, + anon_sym_async, + anon_sym_static, + sym_identifier, + ACTIONS(2120), 9, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [37231] = 11, + ACTIONS(815), 1, anon_sym_DQUOTE, - ACTIONS(781), 1, + ACTIONS(817), 1, anon_sym_SQUOTE, - ACTIONS(1750), 1, + ACTIONS(1558), 1, + anon_sym_LPAREN, + ACTIONS(1841), 1, anon_sym_LBRACK, - ACTIONS(1752), 1, + ACTIONS(2125), 1, anon_sym_STAR, - STATE(1265), 1, + STATE(1294), 1, sym_property_name, - ACTIONS(109), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, sym_number, sym_private_property_identifier, - ACTIONS(785), 2, + ACTIONS(2127), 2, anon_sym_get, anon_sym_set, - ACTIONS(1558), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(1823), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1175), 2, + STATE(1424), 2, sym_string, sym_computed_property_name, - ACTIONS(783), 4, + ACTIONS(831), 5, anon_sym_export, + anon_sym_let, anon_sym_async, anon_sym_static, sym_identifier, - [33962] = 9, - ACTIONS(3), 1, + [37273] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(779), 1, - anon_sym_DQUOTE, - ACTIONS(781), 1, - anon_sym_SQUOTE, - ACTIONS(1750), 1, - anon_sym_LBRACK, - STATE(1266), 1, - sym_property_name, - ACTIONS(109), 2, - sym_number, - sym_private_property_identifier, - STATE(1175), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1558), 4, - sym_automatic_semicolon, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_EQ, - ACTIONS(783), 6, + ACTIONS(2118), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, sym_identifier, - [34000] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(779), 1, + ACTIONS(2120), 10, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(781), 1, anon_sym_SQUOTE, - ACTIONS(1750), 1, - anon_sym_LBRACK, - STATE(1265), 1, - sym_property_name, - ACTIONS(109), 2, sym_number, sym_private_property_identifier, - ACTIONS(1558), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(1823), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1175), 2, - sym_string, - sym_computed_property_name, - ACTIONS(783), 6, + anon_sym_AT, + aux_sym_method_definition_token1, + [37299] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2129), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, sym_identifier, - [34040] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, + ACTIONS(2131), 10, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(1113), 1, + aux_sym_method_definition_token1, + [37325] = 12, + ACTIONS(815), 1, anon_sym_DQUOTE, - ACTIONS(1115), 1, + ACTIONS(817), 1, anon_sym_SQUOTE, - ACTIONS(1768), 1, + ACTIONS(1558), 1, + anon_sym_LPAREN, + ACTIONS(1841), 1, anon_sym_LBRACK, - ACTIONS(1831), 1, + ACTIONS(2133), 1, anon_sym_STAR, - ACTIONS(1867), 1, + ACTIONS(2135), 1, anon_sym_get, - ACTIONS(1869), 1, + ACTIONS(2137), 1, anon_sym_set, - ACTIONS(1871), 1, - anon_sym_async, - ACTIONS(1873), 1, - anon_sym_static, - STATE(800), 1, - aux_sym_export_statement_repeat1, - STATE(845), 1, - sym_decorator, - STATE(953), 1, + STATE(1518), 1, sym_property_name, - ACTIONS(1758), 2, - anon_sym_export, - sym_identifier, - ACTIONS(1770), 2, - sym_number, - sym_private_property_identifier, - STATE(1001), 2, - sym_string, - sym_computed_property_name, - [34092] = 9, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(779), 1, - anon_sym_DQUOTE, - ACTIONS(781), 1, - anon_sym_SQUOTE, - ACTIONS(1750), 1, - anon_sym_LBRACK, - STATE(1212), 1, - sym_property_name, - ACTIONS(109), 2, + ACTIONS(821), 2, sym_number, sym_private_property_identifier, - STATE(1175), 2, + STATE(1424), 2, sym_string, sym_computed_property_name, - ACTIONS(1558), 4, - sym_automatic_semicolon, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_EQ, - ACTIONS(783), 6, + ACTIONS(831), 5, + anon_sym_export, + anon_sym_let, + anon_sym_async, + anon_sym_static, + sym_identifier, + [37369] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2139), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, sym_identifier, - [34130] = 9, - ACTIONS(3), 1, + ACTIONS(2141), 10, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [37395] = 13, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(747), 1, + anon_sym_var, + ACTIONS(754), 1, + anon_sym_async, + ACTIONS(763), 1, + anon_sym_class, + ACTIONS(765), 1, + anon_sym_function, + ACTIONS(1558), 1, + anon_sym_LPAREN, + ACTIONS(2143), 1, + anon_sym_default, + STATE(360), 1, + sym_declaration, + STATE(933), 1, + sym_decorator, + STATE(1172), 1, + aux_sym_export_statement_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(779), 1, + ACTIONS(749), 2, + anon_sym_let, + anon_sym_const, + STATE(346), 5, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + [37441] = 11, + ACTIONS(815), 1, anon_sym_DQUOTE, - ACTIONS(781), 1, + ACTIONS(817), 1, anon_sym_SQUOTE, - ACTIONS(1750), 1, + ACTIONS(1558), 1, + anon_sym_LPAREN, + ACTIONS(1841), 1, anon_sym_LBRACK, - STATE(1285), 1, + ACTIONS(2145), 1, + anon_sym_STAR, + STATE(1530), 1, sym_property_name, - ACTIONS(109), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, sym_number, sym_private_property_identifier, - STATE(1175), 2, + ACTIONS(2147), 2, + anon_sym_get, + anon_sym_set, + STATE(1424), 2, sym_string, sym_computed_property_name, - ACTIONS(1558), 4, - sym_automatic_semicolon, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_EQ, - ACTIONS(783), 6, + ACTIONS(831), 5, + anon_sym_export, + anon_sym_let, + anon_sym_async, + anon_sym_static, + sym_identifier, + [37483] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2149), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, sym_identifier, - [34168] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(779), 1, + ACTIONS(2151), 10, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [37509] = 12, + ACTIONS(815), 1, anon_sym_DQUOTE, - ACTIONS(781), 1, + ACTIONS(817), 1, anon_sym_SQUOTE, - ACTIONS(1750), 1, + ACTIONS(1558), 1, + anon_sym_LPAREN, + ACTIONS(1841), 1, anon_sym_LBRACK, - STATE(1265), 1, + ACTIONS(2153), 1, + anon_sym_STAR, + ACTIONS(2155), 1, + anon_sym_get, + ACTIONS(2157), 1, + anon_sym_set, + STATE(1456), 1, sym_property_name, - ACTIONS(109), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, sym_number, sym_private_property_identifier, - STATE(1175), 2, + STATE(1424), 2, sym_string, sym_computed_property_name, - ACTIONS(1558), 4, - sym_automatic_semicolon, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_EQ, - ACTIONS(783), 6, + ACTIONS(831), 5, + anon_sym_export, + anon_sym_let, + anon_sym_async, + anon_sym_static, + sym_identifier, + [37553] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(488), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, sym_identifier, - [34206] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(779), 1, + ACTIONS(486), 10, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [37579] = 11, + ACTIONS(815), 1, anon_sym_DQUOTE, - ACTIONS(781), 1, + ACTIONS(817), 1, anon_sym_SQUOTE, - ACTIONS(1750), 1, + ACTIONS(1558), 1, + anon_sym_LPAREN, + ACTIONS(1841), 1, anon_sym_LBRACK, - STATE(1328), 1, + ACTIONS(2159), 1, + anon_sym_STAR, + STATE(1529), 1, sym_property_name, - ACTIONS(109), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, sym_number, sym_private_property_identifier, - STATE(1175), 2, + ACTIONS(2161), 2, + anon_sym_get, + anon_sym_set, + STATE(1424), 2, sym_string, sym_computed_property_name, - ACTIONS(1558), 4, - sym_automatic_semicolon, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_EQ, - ACTIONS(783), 6, + ACTIONS(831), 5, anon_sym_export, - anon_sym_get, - anon_sym_set, + anon_sym_let, anon_sym_async, anon_sym_static, sym_identifier, - [34244] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_AT, - ACTIONS(779), 1, + [37621] = 13, + ACTIONS(815), 1, anon_sym_DQUOTE, - ACTIONS(781), 1, + ACTIONS(817), 1, anon_sym_SQUOTE, - ACTIONS(1750), 1, + ACTIONS(1558), 1, + anon_sym_LPAREN, + ACTIONS(1841), 1, anon_sym_LBRACK, - ACTIONS(1831), 1, + ACTIONS(2163), 1, anon_sym_STAR, - ACTIONS(1833), 1, + ACTIONS(2165), 1, anon_sym_get, - ACTIONS(1835), 1, + ACTIONS(2167), 1, anon_sym_set, - ACTIONS(1837), 1, + ACTIONS(2169), 1, anon_sym_async, - ACTIONS(1839), 1, - anon_sym_static, - STATE(800), 1, - aux_sym_export_statement_repeat1, - STATE(845), 1, - sym_decorator, - STATE(1214), 1, + STATE(1449), 1, sym_property_name, - ACTIONS(109), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(783), 2, - anon_sym_export, - sym_identifier, - STATE(1175), 2, - sym_string, - sym_computed_property_name, - [34296] = 9, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(779), 1, - anon_sym_DQUOTE, - ACTIONS(781), 1, - anon_sym_SQUOTE, - ACTIONS(1750), 1, - anon_sym_LBRACK, - STATE(1327), 1, - sym_property_name, - ACTIONS(109), 2, + ACTIONS(821), 2, sym_number, sym_private_property_identifier, - STATE(1175), 2, + STATE(1424), 2, sym_string, sym_computed_property_name, - ACTIONS(1558), 4, - sym_automatic_semicolon, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_EQ, - ACTIONS(783), 6, + ACTIONS(831), 4, anon_sym_export, - anon_sym_get, - anon_sym_set, - anon_sym_async, + anon_sym_let, anon_sym_static, sym_identifier, - [34334] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1879), 1, + [37667] = 10, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(1558), 1, anon_sym_LPAREN, - ACTIONS(1881), 1, - anon_sym_DOT, - STATE(837), 1, - sym_arguments, - ACTIONS(1875), 7, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(2171), 1, + anon_sym_EQ_GT, + STATE(1529), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, + sym_number, + sym_private_property_identifier, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(831), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, - anon_sym_class, sym_identifier, - ACTIONS(1877), 7, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - [34365] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, + [37707] = 12, + ACTIONS(91), 1, anon_sym_AT, - ACTIONS(685), 1, + ACTIONS(747), 1, anon_sym_var, - ACTIONS(692), 1, + ACTIONS(754), 1, anon_sym_async, - ACTIONS(701), 1, + ACTIONS(763), 1, anon_sym_class, - ACTIONS(703), 1, + ACTIONS(765), 1, anon_sym_function, - ACTIONS(1558), 1, - anon_sym_LPAREN, - ACTIONS(1883), 1, + ACTIONS(2173), 1, anon_sym_default, - STATE(336), 1, + STATE(360), 1, sym_declaration, - STATE(845), 1, + STATE(933), 1, sym_decorator, - STATE(1014), 1, + STATE(1172), 1, aux_sym_export_statement_repeat1, - ACTIONS(687), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(749), 2, anon_sym_let, anon_sym_const, - STATE(341), 5, + STATE(346), 5, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, sym_function_declaration, sym_generator_function_declaration, - [34410] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1885), 6, - anon_sym_export, - anon_sym_get, - anon_sym_set, - anon_sym_async, - anon_sym_static, - sym_identifier, - ACTIONS(1887), 10, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - [34434] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(779), 1, + [37750] = 9, + ACTIONS(815), 1, anon_sym_DQUOTE, - ACTIONS(781), 1, + ACTIONS(817), 1, anon_sym_SQUOTE, ACTIONS(1558), 1, anon_sym_LPAREN, - ACTIONS(1750), 1, + ACTIONS(1841), 1, anon_sym_LBRACK, - ACTIONS(1843), 1, - anon_sym_STAR, - STATE(1212), 1, + STATE(1480), 1, sym_property_name, - ACTIONS(109), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, sym_number, sym_private_property_identifier, - ACTIONS(1845), 2, - anon_sym_get, - anon_sym_set, - STATE(1175), 2, + STATE(1424), 2, sym_string, sym_computed_property_name, - ACTIONS(783), 4, - anon_sym_export, - anon_sym_async, - anon_sym_static, - sym_identifier, - [34474] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1889), 6, + ACTIONS(831), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, sym_identifier, - ACTIONS(1891), 10, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, + [37787] = 9, + ACTIONS(815), 1, anon_sym_DQUOTE, + ACTIONS(817), 1, anon_sym_SQUOTE, + ACTIONS(1558), 1, + anon_sym_LPAREN, + ACTIONS(1841), 1, + anon_sym_LBRACK, + STATE(1505), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - [34498] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 6, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(831), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, sym_identifier, - ACTIONS(1895), 10, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, + [37824] = 11, + ACTIONS(815), 1, anon_sym_DQUOTE, + ACTIONS(817), 1, anon_sym_SQUOTE, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(2175), 1, + anon_sym_STAR, + ACTIONS(2179), 1, + anon_sym_async, + STATE(1435), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - [34522] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 6, - anon_sym_export, + ACTIONS(2177), 2, anon_sym_get, anon_sym_set, - anon_sym_async, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(831), 4, + anon_sym_export, + anon_sym_let, anon_sym_static, sym_identifier, - ACTIONS(1895), 10, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, + [37865] = 9, + ACTIONS(815), 1, anon_sym_DQUOTE, + ACTIONS(817), 1, anon_sym_SQUOTE, + ACTIONS(1558), 1, + anon_sym_LPAREN, + ACTIONS(1841), 1, + anon_sym_LBRACK, + STATE(1530), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - [34546] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 6, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(831), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, sym_identifier, - ACTIONS(1895), 10, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, + [37902] = 9, + ACTIONS(815), 1, anon_sym_DQUOTE, + ACTIONS(817), 1, anon_sym_SQUOTE, + ACTIONS(1558), 1, + anon_sym_LPAREN, + ACTIONS(1841), 1, + anon_sym_LBRACK, + STATE(1458), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - [34570] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 6, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(831), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, sym_identifier, - ACTIONS(1895), 10, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, + [37939] = 9, + ACTIONS(815), 1, anon_sym_DQUOTE, + ACTIONS(817), 1, anon_sym_SQUOTE, + ACTIONS(1558), 1, + anon_sym_LPAREN, + ACTIONS(1841), 1, + anon_sym_LBRACK, + STATE(1426), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - [34594] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 6, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(831), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, sym_identifier, - ACTIONS(1895), 10, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, + [37976] = 9, + ACTIONS(815), 1, anon_sym_DQUOTE, + ACTIONS(817), 1, anon_sym_SQUOTE, + ACTIONS(1558), 1, + anon_sym_LPAREN, + ACTIONS(1841), 1, + anon_sym_LBRACK, + STATE(1493), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - [34618] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 6, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(831), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, sym_identifier, - ACTIONS(1895), 10, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, + [38013] = 9, + ACTIONS(815), 1, anon_sym_DQUOTE, + ACTIONS(817), 1, anon_sym_SQUOTE, + ACTIONS(1558), 1, + anon_sym_LPAREN, + ACTIONS(1841), 1, + anon_sym_LBRACK, + STATE(1492), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - [34642] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 6, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(831), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, sym_identifier, - ACTIONS(1895), 10, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, + [38050] = 9, + ACTIONS(815), 1, anon_sym_DQUOTE, + ACTIONS(817), 1, anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - [34666] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1901), 1, - anon_sym_AT, - STATE(800), 1, - aux_sym_export_statement_repeat1, - STATE(845), 1, - sym_decorator, - ACTIONS(1899), 6, - anon_sym_STAR, + ACTIONS(1558), 1, + anon_sym_LPAREN, + ACTIONS(1841), 1, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + STATE(1425), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, sym_number, sym_private_property_identifier, - ACTIONS(1897), 7, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(831), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, - anon_sym_class, sym_identifier, - [34696] = 3, - ACTIONS(3), 1, + [38087] = 9, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(1558), 1, + anon_sym_LPAREN, + ACTIONS(1841), 1, + anon_sym_LBRACK, + STATE(1409), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1904), 6, + ACTIONS(821), 2, + sym_number, + sym_private_property_identifier, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(831), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, sym_identifier, - ACTIONS(1906), 10, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, + [38124] = 11, + ACTIONS(815), 1, anon_sym_DQUOTE, + ACTIONS(817), 1, anon_sym_SQUOTE, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(2181), 1, + anon_sym_STAR, + ACTIONS(2185), 1, + anon_sym_async, + STATE(1436), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, sym_number, sym_private_property_identifier, + ACTIONS(2183), 2, + anon_sym_get, + anon_sym_set, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(831), 4, + anon_sym_export, + anon_sym_let, + anon_sym_static, + sym_identifier, + [38165] = 12, + ACTIONS(91), 1, anon_sym_AT, - [34720] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_AT, - ACTIONS(685), 1, + ACTIONS(747), 1, anon_sym_var, - ACTIONS(692), 1, + ACTIONS(754), 1, anon_sym_async, - ACTIONS(701), 1, + ACTIONS(763), 1, anon_sym_class, - ACTIONS(703), 1, + ACTIONS(765), 1, anon_sym_function, - ACTIONS(1908), 1, + ACTIONS(2143), 1, anon_sym_default, - STATE(336), 1, + STATE(360), 1, sym_declaration, - STATE(845), 1, + STATE(933), 1, sym_decorator, - STATE(1014), 1, + STATE(1172), 1, aux_sym_export_statement_repeat1, - ACTIONS(687), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(749), 2, anon_sym_let, anon_sym_const, - STATE(341), 5, + STATE(346), 5, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, sym_function_declaration, sym_generator_function_declaration, - [34762] = 3, - ACTIONS(3), 1, + [38208] = 9, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(1558), 1, + anon_sym_LPAREN, + ACTIONS(1841), 1, + anon_sym_LBRACK, + STATE(1475), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1910), 8, + ACTIONS(821), 2, + sym_number, + sym_private_property_identifier, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(831), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, - anon_sym_DOT, - anon_sym_class, sym_identifier, - ACTIONS(1912), 8, - anon_sym_STAR, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - [34786] = 3, - ACTIONS(3), 1, + [38245] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1914), 6, + ACTIONS(2187), 8, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, + anon_sym_class, sym_identifier, - ACTIONS(1916), 10, + ACTIONS(2189), 8, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - [34810] = 3, - ACTIONS(3), 1, + aux_sym_method_definition_token1, + [38270] = 9, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(1558), 1, + anon_sym_LPAREN, + ACTIONS(1841), 1, + anon_sym_LBRACK, + STATE(1486), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1914), 6, + ACTIONS(821), 2, + sym_number, + sym_private_property_identifier, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(831), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, sym_identifier, - ACTIONS(1916), 10, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, + [38307] = 9, + ACTIONS(815), 1, anon_sym_DQUOTE, + ACTIONS(817), 1, anon_sym_SQUOTE, + ACTIONS(1558), 1, + anon_sym_LPAREN, + ACTIONS(1841), 1, + anon_sym_LBRACK, + STATE(1509), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - [34834] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1918), 6, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(831), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, sym_identifier, - ACTIONS(1920), 10, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, + [38344] = 9, + ACTIONS(815), 1, anon_sym_DQUOTE, + ACTIONS(817), 1, anon_sym_SQUOTE, + ACTIONS(1558), 1, + anon_sym_LPAREN, + ACTIONS(1841), 1, + anon_sym_LBRACK, + STATE(1529), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - [34858] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1922), 6, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(831), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, sym_identifier, - ACTIONS(1924), 10, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, + [38381] = 9, + ACTIONS(815), 1, anon_sym_DQUOTE, + ACTIONS(817), 1, anon_sym_SQUOTE, + ACTIONS(1558), 1, + anon_sym_LPAREN, + ACTIONS(1841), 1, + anon_sym_LBRACK, + STATE(1461), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - [34882] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1914), 6, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(831), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, sym_identifier, - ACTIONS(1916), 10, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, + [38418] = 9, + ACTIONS(815), 1, anon_sym_DQUOTE, + ACTIONS(817), 1, anon_sym_SQUOTE, + ACTIONS(1558), 1, + anon_sym_LPAREN, + ACTIONS(1841), 1, + anon_sym_LBRACK, + STATE(1460), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - [34906] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(779), 1, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(831), 7, + anon_sym_export, + anon_sym_let, + anon_sym_get, + anon_sym_set, + anon_sym_async, + anon_sym_static, + sym_identifier, + [38455] = 9, + ACTIONS(815), 1, anon_sym_DQUOTE, - ACTIONS(781), 1, + ACTIONS(817), 1, anon_sym_SQUOTE, ACTIONS(1558), 1, anon_sym_LPAREN, - ACTIONS(1750), 1, + ACTIONS(1841), 1, anon_sym_LBRACK, - ACTIONS(1847), 1, - anon_sym_STAR, - ACTIONS(1849), 1, - anon_sym_get, - ACTIONS(1851), 1, - anon_sym_set, - STATE(1313), 1, + STATE(1485), 1, sym_property_name, - ACTIONS(109), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, sym_number, sym_private_property_identifier, - STATE(1175), 2, + STATE(1424), 2, sym_string, sym_computed_property_name, - ACTIONS(783), 4, + ACTIONS(831), 7, anon_sym_export, + anon_sym_let, + anon_sym_get, + anon_sym_set, anon_sym_async, anon_sym_static, sym_identifier, - [34948] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(779), 1, + [38492] = 9, + ACTIONS(815), 1, anon_sym_DQUOTE, - ACTIONS(781), 1, + ACTIONS(817), 1, anon_sym_SQUOTE, ACTIONS(1558), 1, anon_sym_LPAREN, - ACTIONS(1750), 1, + ACTIONS(1841), 1, anon_sym_LBRACK, - ACTIONS(1853), 1, - anon_sym_STAR, - ACTIONS(1926), 1, - anon_sym_get, - ACTIONS(1928), 1, - anon_sym_set, - ACTIONS(1930), 1, - anon_sym_async, - STATE(1335), 1, + STATE(1463), 1, sym_property_name, - ACTIONS(109), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, sym_number, sym_private_property_identifier, - STATE(1175), 2, + STATE(1424), 2, sym_string, sym_computed_property_name, - ACTIONS(783), 3, + ACTIONS(831), 7, anon_sym_export, + anon_sym_let, + anon_sym_get, + anon_sym_set, + anon_sym_async, anon_sym_static, sym_identifier, - [34992] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(779), 1, + [38529] = 9, + ACTIONS(815), 1, anon_sym_DQUOTE, - ACTIONS(781), 1, + ACTIONS(817), 1, anon_sym_SQUOTE, ACTIONS(1558), 1, anon_sym_LPAREN, - ACTIONS(1750), 1, + ACTIONS(1841), 1, anon_sym_LBRACK, - ACTIONS(1861), 1, - anon_sym_STAR, - ACTIONS(1863), 1, - anon_sym_get, - ACTIONS(1865), 1, - anon_sym_set, - STATE(1331), 1, + STATE(1517), 1, sym_property_name, - ACTIONS(109), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, sym_number, sym_private_property_identifier, - STATE(1175), 2, + STATE(1424), 2, sym_string, sym_computed_property_name, - ACTIONS(783), 4, + ACTIONS(831), 7, anon_sym_export, + anon_sym_let, + anon_sym_get, + anon_sym_set, anon_sym_async, anon_sym_static, sym_identifier, - [35034] = 3, - ACTIONS(3), 1, + [38566] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1922), 6, + ACTIONS(1329), 8, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, + anon_sym_class, sym_identifier, - ACTIONS(1924), 10, + ACTIONS(1331), 8, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - [35058] = 3, - ACTIONS(3), 1, + aux_sym_method_definition_token1, + [38591] = 9, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(1558), 1, + anon_sym_LPAREN, + ACTIONS(1841), 1, + anon_sym_LBRACK, + STATE(1407), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1922), 6, + ACTIONS(821), 2, + sym_number, + sym_private_property_identifier, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(831), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, sym_identifier, - ACTIONS(1924), 10, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, + [38628] = 9, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(1558), 1, + anon_sym_LPAREN, + ACTIONS(1841), 1, anon_sym_LBRACK, + STATE(1467), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, + sym_number, + sym_private_property_identifier, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(831), 7, + anon_sym_export, + anon_sym_let, + anon_sym_get, + anon_sym_set, + anon_sym_async, + anon_sym_static, + sym_identifier, + [38665] = 9, + ACTIONS(815), 1, anon_sym_DQUOTE, + ACTIONS(817), 1, anon_sym_SQUOTE, + ACTIONS(1558), 1, + anon_sym_LPAREN, + ACTIONS(1841), 1, + anon_sym_LBRACK, + STATE(1294), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - [35082] = 3, - ACTIONS(3), 1, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(831), 7, + anon_sym_export, + anon_sym_let, + anon_sym_get, + anon_sym_set, + anon_sym_async, + anon_sym_static, + sym_identifier, + [38702] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1922), 6, + ACTIONS(1369), 8, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, + anon_sym_class, sym_identifier, - ACTIONS(1924), 10, + ACTIONS(1371), 8, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - [35106] = 3, - ACTIONS(3), 1, + aux_sym_method_definition_token1, + [38727] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1922), 6, + ACTIONS(1300), 8, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, + anon_sym_class, sym_identifier, - ACTIONS(1924), 10, + ACTIONS(1302), 8, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - [35130] = 3, - ACTIONS(3), 1, + aux_sym_method_definition_token1, + [38752] = 9, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(1558), 1, + anon_sym_LPAREN, + ACTIONS(1841), 1, + anon_sym_LBRACK, + STATE(1293), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1932), 6, + ACTIONS(821), 2, + sym_number, + sym_private_property_identifier, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(831), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, sym_identifier, - ACTIONS(1934), 10, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - [35154] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(779), 1, + [38789] = 9, + ACTIONS(815), 1, anon_sym_DQUOTE, - ACTIONS(781), 1, + ACTIONS(817), 1, anon_sym_SQUOTE, ACTIONS(1558), 1, anon_sym_LPAREN, - ACTIONS(1750), 1, + ACTIONS(1841), 1, anon_sym_LBRACK, - ACTIONS(1936), 1, - anon_sym_EQ_GT, - STATE(1212), 1, + STATE(1503), 1, sym_property_name, - ACTIONS(109), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, sym_number, sym_private_property_identifier, - STATE(1175), 2, + STATE(1424), 2, sym_string, sym_computed_property_name, - ACTIONS(783), 6, + ACTIONS(831), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, sym_identifier, - [35192] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_AT, - ACTIONS(685), 1, - anon_sym_var, - ACTIONS(692), 1, - anon_sym_async, - ACTIONS(701), 1, - anon_sym_class, - ACTIONS(703), 1, - anon_sym_function, - ACTIONS(1883), 1, - anon_sym_default, - STATE(336), 1, - sym_declaration, - STATE(845), 1, - sym_decorator, - STATE(1014), 1, - aux_sym_export_statement_repeat1, - ACTIONS(687), 2, - anon_sym_let, - anon_sym_const, - STATE(341), 5, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - [35234] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(779), 1, + [38826] = 9, + ACTIONS(815), 1, anon_sym_DQUOTE, - ACTIONS(781), 1, + ACTIONS(817), 1, anon_sym_SQUOTE, ACTIONS(1558), 1, anon_sym_LPAREN, - ACTIONS(1750), 1, + ACTIONS(1841), 1, anon_sym_LBRACK, - STATE(1328), 1, + STATE(1483), 1, sym_property_name, - ACTIONS(109), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, sym_number, sym_private_property_identifier, - STATE(1175), 2, + STATE(1424), 2, sym_string, sym_computed_property_name, - ACTIONS(783), 6, + ACTIONS(831), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, sym_identifier, - [35269] = 4, - ACTIONS(3), 1, + [38863] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1942), 1, - anon_sym_SEMI, - ACTIONS(1938), 6, + ACTIONS(2027), 8, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, + anon_sym_class, sym_identifier, - ACTIONS(1940), 8, + ACTIONS(2029), 8, anon_sym_STAR, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - [35294] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(779), 1, + aux_sym_method_definition_token1, + [38888] = 12, + ACTIONS(815), 1, anon_sym_DQUOTE, - ACTIONS(781), 1, + ACTIONS(817), 1, anon_sym_SQUOTE, - ACTIONS(1558), 1, - anon_sym_LPAREN, - ACTIONS(1750), 1, + ACTIONS(1841), 1, anon_sym_LBRACK, - STATE(1321), 1, + ACTIONS(2191), 1, + anon_sym_STAR, + ACTIONS(2193), 1, + anon_sym_get, + ACTIONS(2195), 1, + anon_sym_set, + ACTIONS(2197), 1, + anon_sym_async, + STATE(1438), 1, sym_property_name, - ACTIONS(109), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, sym_number, sym_private_property_identifier, - STATE(1175), 2, + STATE(1424), 2, sym_string, sym_computed_property_name, - ACTIONS(783), 6, + ACTIONS(831), 4, anon_sym_export, + anon_sym_let, + anon_sym_static, + sym_identifier, + [38931] = 12, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(2199), 1, + anon_sym_STAR, + ACTIONS(2201), 1, anon_sym_get, + ACTIONS(2203), 1, anon_sym_set, + ACTIONS(2205), 1, anon_sym_async, + STATE(1473), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, + sym_number, + sym_private_property_identifier, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(831), 4, + anon_sym_export, + anon_sym_let, anon_sym_static, sym_identifier, - [35329] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(779), 1, + [38974] = 9, + ACTIONS(815), 1, anon_sym_DQUOTE, - ACTIONS(781), 1, + ACTIONS(817), 1, anon_sym_SQUOTE, ACTIONS(1558), 1, anon_sym_LPAREN, - ACTIONS(1750), 1, + ACTIONS(1841), 1, anon_sym_LBRACK, - STATE(1193), 1, + STATE(1502), 1, sym_property_name, - ACTIONS(109), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, sym_number, sym_private_property_identifier, - STATE(1175), 2, + STATE(1424), 2, sym_string, sym_computed_property_name, - ACTIONS(783), 6, + ACTIONS(831), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, sym_identifier, - [35364] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(779), 1, + [39011] = 9, + ACTIONS(815), 1, anon_sym_DQUOTE, - ACTIONS(781), 1, + ACTIONS(817), 1, anon_sym_SQUOTE, ACTIONS(1558), 1, anon_sym_LPAREN, - ACTIONS(1750), 1, + ACTIONS(1841), 1, anon_sym_LBRACK, - STATE(1194), 1, + STATE(1506), 1, sym_property_name, - ACTIONS(109), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, sym_number, sym_private_property_identifier, - STATE(1175), 2, + STATE(1424), 2, sym_string, sym_computed_property_name, - ACTIONS(783), 6, + ACTIONS(831), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, sym_identifier, - [35399] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(779), 1, + [39048] = 9, + ACTIONS(815), 1, anon_sym_DQUOTE, - ACTIONS(781), 1, + ACTIONS(817), 1, anon_sym_SQUOTE, ACTIONS(1558), 1, anon_sym_LPAREN, - ACTIONS(1750), 1, + ACTIONS(1841), 1, anon_sym_LBRACK, - STATE(1322), 1, + STATE(1482), 1, sym_property_name, - ACTIONS(109), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, sym_number, sym_private_property_identifier, - STATE(1175), 2, + STATE(1424), 2, sym_string, sym_computed_property_name, - ACTIONS(783), 6, + ACTIONS(831), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, sym_identifier, - [35434] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1944), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [35455] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(779), 1, + [39085] = 9, + ACTIONS(815), 1, anon_sym_DQUOTE, - ACTIONS(781), 1, + ACTIONS(817), 1, anon_sym_SQUOTE, ACTIONS(1558), 1, anon_sym_LPAREN, - ACTIONS(1750), 1, + ACTIONS(1841), 1, anon_sym_LBRACK, - STATE(1327), 1, + STATE(1507), 1, sym_property_name, - ACTIONS(109), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, sym_number, sym_private_property_identifier, - STATE(1175), 2, + STATE(1424), 2, sym_string, sym_computed_property_name, - ACTIONS(783), 6, + ACTIONS(831), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, sym_identifier, - [35490] = 9, - ACTIONS(3), 1, + [39122] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(779), 1, + ACTIONS(2207), 8, + anon_sym_export, + anon_sym_let, + anon_sym_get, + anon_sym_set, + anon_sym_async, + anon_sym_static, + anon_sym_class, + sym_identifier, + ACTIONS(2209), 8, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(781), 1, anon_sym_SQUOTE, - ACTIONS(1558), 1, - anon_sym_LPAREN, - ACTIONS(1750), 1, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [39147] = 8, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(1841), 1, anon_sym_LBRACK, - STATE(1212), 1, + STATE(1474), 1, sym_property_name, - ACTIONS(109), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, sym_number, sym_private_property_identifier, - STATE(1175), 2, + STATE(1424), 2, sym_string, sym_computed_property_name, - ACTIONS(783), 6, + ACTIONS(831), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, sym_identifier, - [35525] = 2, - ACTIONS(3), 1, + [39181] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1946), 15, + ACTIONS(2211), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -58179,88 +67488,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [35546] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(779), 1, + [39203] = 8, + ACTIONS(815), 1, anon_sym_DQUOTE, - ACTIONS(781), 1, + ACTIONS(817), 1, anon_sym_SQUOTE, - ACTIONS(1558), 1, - anon_sym_LPAREN, - ACTIONS(1750), 1, + ACTIONS(1841), 1, anon_sym_LBRACK, - STATE(1266), 1, + STATE(1500), 1, sym_property_name, - ACTIONS(109), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, sym_number, sym_private_property_identifier, - STATE(1175), 2, + STATE(1424), 2, sym_string, sym_computed_property_name, - ACTIONS(783), 6, + ACTIONS(831), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, sym_identifier, - [35581] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(779), 1, + [39237] = 8, + ACTIONS(815), 1, anon_sym_DQUOTE, - ACTIONS(781), 1, + ACTIONS(817), 1, anon_sym_SQUOTE, - ACTIONS(1558), 1, - anon_sym_LPAREN, - ACTIONS(1750), 1, + ACTIONS(1841), 1, anon_sym_LBRACK, - STATE(1285), 1, + STATE(1530), 1, sym_property_name, - ACTIONS(109), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, sym_number, sym_private_property_identifier, - STATE(1175), 2, + STATE(1424), 2, sym_string, sym_computed_property_name, - ACTIONS(783), 6, + ACTIONS(831), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, sym_identifier, - [35616] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(779), 1, + [39271] = 8, + ACTIONS(815), 1, anon_sym_DQUOTE, - ACTIONS(781), 1, + ACTIONS(817), 1, anon_sym_SQUOTE, - ACTIONS(1558), 1, - anon_sym_LPAREN, - ACTIONS(1750), 1, + ACTIONS(1841), 1, anon_sym_LBRACK, - STATE(1316), 1, + STATE(1482), 1, sym_property_name, - ACTIONS(109), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, sym_number, sym_private_property_identifier, - STATE(1175), 2, + STATE(1424), 2, sym_string, sym_computed_property_name, - ACTIONS(783), 6, + ACTIONS(831), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, sym_identifier, - [35651] = 2, - ACTIONS(3), 1, + [39305] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1948), 15, + ACTIONS(2213), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -58276,10 +67586,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [35672] = 2, - ACTIONS(3), 1, + [39327] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1950), 15, + ACTIONS(2215), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -58295,10 +67606,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [35693] = 2, - ACTIONS(3), 1, + [39349] = 8, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(1841), 1, + anon_sym_LBRACK, + STATE(1427), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, + sym_number, + sym_private_property_identifier, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(831), 7, + anon_sym_export, + anon_sym_let, + anon_sym_get, + anon_sym_set, + anon_sym_async, + anon_sym_static, + sym_identifier, + [39383] = 8, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(1841), 1, + anon_sym_LBRACK, + STATE(1463), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, + sym_number, + sym_private_property_identifier, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(831), 7, + anon_sym_export, + anon_sym_let, + anon_sym_get, + anon_sym_set, + anon_sym_async, + anon_sym_static, + sym_identifier, + [39417] = 8, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(1841), 1, + anon_sym_LBRACK, + STATE(1522), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, + sym_number, + sym_private_property_identifier, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(831), 7, + anon_sym_export, + anon_sym_let, + anon_sym_get, + anon_sym_set, + anon_sym_async, + anon_sym_static, + sym_identifier, + [39451] = 8, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(1841), 1, + anon_sym_LBRACK, + STATE(1491), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, + sym_number, + sym_private_property_identifier, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(831), 7, + anon_sym_export, + anon_sym_let, + anon_sym_get, + anon_sym_set, + anon_sym_async, + anon_sym_static, + sym_identifier, + [39485] = 8, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(1841), 1, + anon_sym_LBRACK, + STATE(1483), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, + sym_number, + sym_private_property_identifier, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(831), 7, + anon_sym_export, + anon_sym_let, + anon_sym_get, + anon_sym_set, + anon_sym_async, + anon_sym_static, + sym_identifier, + [39519] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1952), 15, + ACTIONS(2217), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -58314,1407 +67756,1507 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [35714] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(779), 1, + [39541] = 8, + ACTIONS(815), 1, anon_sym_DQUOTE, - ACTIONS(781), 1, + ACTIONS(817), 1, anon_sym_SQUOTE, - ACTIONS(1750), 1, + ACTIONS(1841), 1, anon_sym_LBRACK, - STATE(1185), 1, + STATE(1434), 1, sym_property_name, - ACTIONS(109), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, sym_number, sym_private_property_identifier, - STATE(1175), 2, + STATE(1424), 2, sym_string, sym_computed_property_name, - ACTIONS(783), 6, - anon_sym_export, - anon_sym_get, - anon_sym_set, - anon_sym_async, - anon_sym_static, - sym_identifier, - [35746] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1362), 7, + ACTIONS(831), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, - anon_sym_class, sym_identifier, - ACTIONS(1364), 7, - anon_sym_STAR, - anon_sym_LBRACK, + [39575] = 8, + ACTIONS(815), 1, anon_sym_DQUOTE, + ACTIONS(817), 1, anon_sym_SQUOTE, + ACTIONS(1841), 1, + anon_sym_LBRACK, + STATE(1469), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - [35768] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1954), 7, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(831), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, - anon_sym_class, sym_identifier, - ACTIONS(1956), 7, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - [35790] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(779), 1, + [39609] = 8, + ACTIONS(815), 1, anon_sym_DQUOTE, - ACTIONS(781), 1, + ACTIONS(817), 1, anon_sym_SQUOTE, - ACTIONS(1750), 1, + ACTIONS(1841), 1, anon_sym_LBRACK, - STATE(1253), 1, + STATE(1487), 1, sym_property_name, - ACTIONS(109), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, sym_number, sym_private_property_identifier, - STATE(1175), 2, + STATE(1424), 2, sym_string, sym_computed_property_name, - ACTIONS(783), 6, + ACTIONS(831), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, sym_identifier, - [35822] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(779), 1, + [39643] = 8, + ACTIONS(815), 1, anon_sym_DQUOTE, - ACTIONS(781), 1, + ACTIONS(817), 1, anon_sym_SQUOTE, - ACTIONS(1750), 1, + ACTIONS(1841), 1, anon_sym_LBRACK, - STATE(1326), 1, + STATE(1515), 1, sym_property_name, - ACTIONS(109), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, sym_number, sym_private_property_identifier, - STATE(1175), 2, + STATE(1424), 2, sym_string, sym_computed_property_name, - ACTIONS(783), 6, + ACTIONS(831), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, sym_identifier, - [35854] = 3, - ACTIONS(3), 1, + [39677] = 8, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(1841), 1, + anon_sym_LBRACK, + STATE(1294), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1340), 7, + ACTIONS(821), 2, + sym_number, + sym_private_property_identifier, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(831), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, - anon_sym_class, sym_identifier, - ACTIONS(1342), 7, - anon_sym_STAR, - anon_sym_LBRACK, + [39711] = 8, + ACTIONS(815), 1, anon_sym_DQUOTE, + ACTIONS(817), 1, anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - [35876] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(779), 1, - anon_sym_DQUOTE, - ACTIONS(781), 1, - anon_sym_SQUOTE, - ACTIONS(1750), 1, + ACTIONS(1841), 1, anon_sym_LBRACK, - STATE(1265), 1, + STATE(1462), 1, sym_property_name, - ACTIONS(109), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, sym_number, sym_private_property_identifier, - STATE(1175), 2, + STATE(1424), 2, sym_string, sym_computed_property_name, - ACTIONS(783), 6, + ACTIONS(831), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, sym_identifier, - [35908] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(779), 1, + [39745] = 8, + ACTIONS(815), 1, anon_sym_DQUOTE, - ACTIONS(781), 1, + ACTIONS(817), 1, anon_sym_SQUOTE, - ACTIONS(1750), 1, + ACTIONS(1841), 1, anon_sym_LBRACK, - STATE(1316), 1, + STATE(1467), 1, sym_property_name, - ACTIONS(109), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, sym_number, sym_private_property_identifier, - STATE(1175), 2, + STATE(1424), 2, sym_string, sym_computed_property_name, - ACTIONS(783), 6, + ACTIONS(831), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, sym_identifier, - [35940] = 8, - ACTIONS(3), 1, + [39779] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(779), 1, + ACTIONS(2219), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [39801] = 8, + ACTIONS(815), 1, anon_sym_DQUOTE, - ACTIONS(781), 1, + ACTIONS(817), 1, anon_sym_SQUOTE, - ACTIONS(1750), 1, + ACTIONS(1841), 1, anon_sym_LBRACK, - STATE(1212), 1, + STATE(1458), 1, sym_property_name, - ACTIONS(109), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, sym_number, sym_private_property_identifier, - STATE(1175), 2, + STATE(1424), 2, sym_string, sym_computed_property_name, - ACTIONS(783), 6, + ACTIONS(831), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, sym_identifier, - [35972] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(779), 1, + [39835] = 8, + ACTIONS(815), 1, anon_sym_DQUOTE, - ACTIONS(781), 1, + ACTIONS(817), 1, anon_sym_SQUOTE, - ACTIONS(1750), 1, + ACTIONS(1841), 1, anon_sym_LBRACK, - STATE(1171), 1, + STATE(1504), 1, sym_property_name, - ACTIONS(109), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, sym_number, sym_private_property_identifier, - STATE(1175), 2, + STATE(1424), 2, sym_string, sym_computed_property_name, - ACTIONS(783), 6, + ACTIONS(831), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, sym_identifier, - [36004] = 3, - ACTIONS(3), 1, + [39869] = 8, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(1841), 1, + anon_sym_LBRACK, + STATE(1501), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1958), 7, + ACTIONS(821), 2, + sym_number, + sym_private_property_identifier, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(831), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, - anon_sym_class, sym_identifier, - ACTIONS(1960), 7, - anon_sym_STAR, - anon_sym_LBRACK, + [39903] = 8, + ACTIONS(815), 1, anon_sym_DQUOTE, + ACTIONS(817), 1, anon_sym_SQUOTE, + ACTIONS(1841), 1, + anon_sym_LBRACK, + STATE(1529), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - [36026] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1962), 6, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(831), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, sym_identifier, - ACTIONS(1964), 8, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_LBRACK, + [39937] = 8, + ACTIONS(815), 1, anon_sym_DQUOTE, + ACTIONS(817), 1, anon_sym_SQUOTE, + ACTIONS(1841), 1, + anon_sym_LBRACK, + STATE(1414), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - [36048] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1875), 7, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(831), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, - anon_sym_class, sym_identifier, - ACTIONS(1877), 7, - anon_sym_STAR, - anon_sym_LBRACK, + [39971] = 8, + ACTIONS(815), 1, anon_sym_DQUOTE, + ACTIONS(817), 1, anon_sym_SQUOTE, + ACTIONS(1841), 1, + anon_sym_LBRACK, + STATE(1484), 1, + sym_property_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - [36070] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1286), 7, + STATE(1424), 2, + sym_string, + sym_computed_property_name, + ACTIONS(831), 7, anon_sym_export, + anon_sym_let, anon_sym_get, anon_sym_set, anon_sym_async, anon_sym_static, - anon_sym_class, - sym_identifier, - ACTIONS(1288), 7, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - [36092] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1966), 1, sym_identifier, - ACTIONS(1968), 1, + [40005] = 8, + ACTIONS(2221), 1, anon_sym_LBRACE, - ACTIONS(1970), 1, - anon_sym_COLON, - ACTIONS(1972), 1, - anon_sym_GT, - ACTIONS(1974), 1, - anon_sym_SLASH, - ACTIONS(1976), 1, - sym_jsx_identifier, - ACTIONS(1978), 1, - anon_sym_DOT, - STATE(881), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(943), 1, - sym_jsx_namespace_name, - STATE(974), 2, - sym_jsx_expression, - sym_jsx_attribute, - [36127] = 11, - ACTIONS(3), 1, + ACTIONS(2225), 1, + anon_sym_LT, + ACTIONS(2227), 1, + anon_sym_LT_SLASH, + STATE(608), 1, + sym_jsx_closing_element, + STATE(962), 1, + sym_jsx_opening_element, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1966), 1, - sym_identifier, - ACTIONS(1968), 1, - anon_sym_LBRACE, - ACTIONS(1970), 1, - anon_sym_COLON, - ACTIONS(1972), 1, + ACTIONS(2223), 3, + sym_jsx_text, anon_sym_GT, - ACTIONS(1976), 1, - sym_jsx_identifier, - ACTIONS(1978), 1, - anon_sym_DOT, - ACTIONS(1980), 1, - anon_sym_SLASH, - STATE(892), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(943), 1, - sym_jsx_namespace_name, - STATE(974), 2, + sym_html_character_reference, + STATE(964), 4, + sym_jsx_element, sym_jsx_expression, - sym_jsx_attribute, - [36162] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1966), 1, - sym_identifier, - ACTIONS(1968), 1, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [40036] = 8, + ACTIONS(2221), 1, anon_sym_LBRACE, - ACTIONS(1970), 1, - anon_sym_COLON, - ACTIONS(1972), 1, - anon_sym_GT, - ACTIONS(1976), 1, - sym_jsx_identifier, - ACTIONS(1978), 1, - anon_sym_DOT, - ACTIONS(1982), 1, - anon_sym_SLASH, - STATE(887), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(943), 1, - sym_jsx_namespace_name, - STATE(974), 2, - sym_jsx_expression, - sym_jsx_attribute, - [36197] = 11, - ACTIONS(3), 1, + ACTIONS(2225), 1, + anon_sym_LT, + ACTIONS(2231), 1, + anon_sym_LT_SLASH, + STATE(962), 1, + sym_jsx_opening_element, + STATE(1039), 1, + sym_jsx_closing_element, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1966), 1, - sym_identifier, - ACTIONS(1968), 1, - anon_sym_LBRACE, - ACTIONS(1970), 1, - anon_sym_COLON, - ACTIONS(1972), 1, + ACTIONS(2229), 3, + sym_jsx_text, anon_sym_GT, - ACTIONS(1976), 1, - sym_jsx_identifier, - ACTIONS(1978), 1, - anon_sym_DOT, - ACTIONS(1984), 1, - anon_sym_SLASH, - STATE(877), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(943), 1, - sym_jsx_namespace_name, - STATE(974), 2, + sym_html_character_reference, + STATE(966), 4, + sym_jsx_element, sym_jsx_expression, - sym_jsx_attribute, - [36232] = 7, - ACTIONS(1986), 1, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [40067] = 8, + ACTIONS(2221), 1, anon_sym_LBRACE, - ACTIONS(1988), 1, + ACTIONS(2225), 1, anon_sym_LT, - ACTIONS(1990), 1, - sym_jsx_text, - ACTIONS(1992), 1, - sym_comment, - STATE(854), 1, + ACTIONS(2235), 1, + anon_sym_LT_SLASH, + STATE(492), 1, + sym_jsx_closing_element, + STATE(962), 1, sym_jsx_opening_element, - STATE(986), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2233), 3, + sym_jsx_text, + anon_sym_GT, + sym_html_character_reference, + STATE(968), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [40098] = 8, + ACTIONS(2221), 1, + anon_sym_LBRACE, + ACTIONS(2225), 1, + anon_sym_LT, + ACTIONS(2227), 1, + anon_sym_LT_SLASH, + STATE(594), 1, sym_jsx_closing_element, - STATE(862), 5, + STATE(962), 1, + sym_jsx_opening_element, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2237), 3, + sym_jsx_text, + anon_sym_GT, + sym_html_character_reference, + STATE(972), 4, sym_jsx_element, - sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [36258] = 7, - ACTIONS(1986), 1, + [40129] = 11, + ACTIONS(1859), 1, + anon_sym_DQUOTE, + ACTIONS(1861), 1, + anon_sym_SQUOTE, + ACTIONS(2239), 1, + sym_identifier, + ACTIONS(2241), 1, + anon_sym_STAR, + ACTIONS(2243), 1, anon_sym_LBRACE, - ACTIONS(1992), 1, + ACTIONS(2247), 1, + anon_sym_DOT, + STATE(1168), 1, + sym_string, + STATE(1416), 1, + sym_import_clause, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1994), 1, + ACTIONS(2245), 2, + anon_sym_LPAREN, + sym_optional_chain, + STATE(1583), 2, + sym_namespace_import, + sym_named_imports, + [40166] = 8, + ACTIONS(2221), 1, + anon_sym_LBRACE, + ACTIONS(2225), 1, anon_sym_LT, - ACTIONS(1996), 1, - sym_jsx_text, - STATE(854), 1, + ACTIONS(2231), 1, + anon_sym_LT_SLASH, + STATE(962), 1, sym_jsx_opening_element, - STATE(1129), 1, + STATE(1044), 1, sym_jsx_closing_element, - STATE(864), 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2237), 3, + sym_jsx_text, + anon_sym_GT, + sym_html_character_reference, + STATE(972), 4, sym_jsx_element, - sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [36284] = 7, - ACTIONS(1986), 1, + [40197] = 8, + ACTIONS(2221), 1, anon_sym_LBRACE, - ACTIONS(1992), 1, - sym_comment, - ACTIONS(1998), 1, + ACTIONS(2225), 1, anon_sym_LT, - ACTIONS(2000), 1, - sym_jsx_text, - STATE(466), 1, - sym_jsx_closing_element, - STATE(854), 1, + ACTIONS(2251), 1, + anon_sym_LT_SLASH, + STATE(962), 1, sym_jsx_opening_element, - STATE(870), 5, + STATE(1118), 1, + sym_jsx_closing_element, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2249), 3, + sym_jsx_text, + anon_sym_GT, + sym_html_character_reference, + STATE(969), 4, sym_jsx_element, - sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [36310] = 7, - ACTIONS(1986), 1, + [40228] = 8, + ACTIONS(2221), 1, anon_sym_LBRACE, - ACTIONS(1992), 1, - sym_comment, - ACTIONS(2002), 1, + ACTIONS(2225), 1, anon_sym_LT, - ACTIONS(2004), 1, - sym_jsx_text, - STATE(618), 1, + ACTIONS(2235), 1, + anon_sym_LT_SLASH, + STATE(498), 1, sym_jsx_closing_element, - STATE(854), 1, + STATE(962), 1, sym_jsx_opening_element, - STATE(869), 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2237), 3, + sym_jsx_text, + anon_sym_GT, + sym_html_character_reference, + STATE(972), 4, sym_jsx_element, - sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [36336] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(779), 1, - anon_sym_DQUOTE, - ACTIONS(781), 1, - anon_sym_SQUOTE, - ACTIONS(1968), 1, + [40259] = 8, + ACTIONS(2221), 1, anon_sym_LBRACE, - ACTIONS(2006), 1, + ACTIONS(2225), 1, anon_sym_LT, - STATE(853), 1, + ACTIONS(2251), 1, + anon_sym_LT_SLASH, + STATE(962), 1, sym_jsx_opening_element, - STATE(981), 5, + STATE(1109), 1, + sym_jsx_closing_element, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2237), 3, + sym_jsx_text, + anon_sym_GT, + sym_html_character_reference, + STATE(972), 4, sym_jsx_element, - sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, - sym_string, - [36362] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1966), 1, + aux_sym_jsx_element_repeat1, + [40290] = 11, + ACTIONS(2253), 1, sym_identifier, - ACTIONS(1968), 1, + ACTIONS(2255), 1, anon_sym_LBRACE, - ACTIONS(1970), 1, + ACTIONS(2257), 1, anon_sym_COLON, - ACTIONS(1972), 1, - anon_sym_GT, - ACTIONS(1974), 1, - anon_sym_SLASH, - ACTIONS(1976), 1, - sym_jsx_identifier, - STATE(880), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(943), 1, - sym_jsx_namespace_name, - STATE(974), 2, - sym_jsx_expression, - sym_jsx_attribute, - [36394] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1966), 1, - sym_identifier, - ACTIONS(1968), 1, - anon_sym_LBRACE, - ACTIONS(1972), 1, + ACTIONS(2259), 1, anon_sym_GT, - ACTIONS(1974), 1, - anon_sym_SLASH, - ACTIONS(1976), 1, + ACTIONS(2261), 1, sym_jsx_identifier, - ACTIONS(1978), 1, + ACTIONS(2263), 1, anon_sym_DOT, - STATE(882), 1, + ACTIONS(2265), 1, + anon_sym_SLASH_GT, + STATE(1001), 1, aux_sym_jsx_opening_element_repeat1, - STATE(943), 1, + STATE(1064), 1, sym_jsx_namespace_name, - STATE(974), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1096), 2, sym_jsx_expression, sym_jsx_attribute, - [36426] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1966), 1, + [40326] = 11, + ACTIONS(2253), 1, sym_identifier, - ACTIONS(1968), 1, + ACTIONS(2255), 1, anon_sym_LBRACE, - ACTIONS(1972), 1, + ACTIONS(2257), 1, + anon_sym_COLON, + ACTIONS(2259), 1, anon_sym_GT, - ACTIONS(1976), 1, + ACTIONS(2261), 1, sym_jsx_identifier, - ACTIONS(1978), 1, + ACTIONS(2263), 1, anon_sym_DOT, - ACTIONS(1982), 1, - anon_sym_SLASH, - STATE(888), 1, + ACTIONS(2267), 1, + anon_sym_SLASH_GT, + STATE(994), 1, aux_sym_jsx_opening_element_repeat1, - STATE(943), 1, + STATE(1064), 1, sym_jsx_namespace_name, - STATE(974), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1096), 2, sym_jsx_expression, sym_jsx_attribute, - [36458] = 7, - ACTIONS(1986), 1, + [40362] = 7, + ACTIONS(2269), 1, anon_sym_LBRACE, - ACTIONS(1992), 1, - sym_comment, - ACTIONS(1998), 1, + ACTIONS(2275), 1, anon_sym_LT, - ACTIONS(2008), 1, - sym_jsx_text, - STATE(439), 1, - sym_jsx_closing_element, - STATE(854), 1, + ACTIONS(2278), 1, + anon_sym_LT_SLASH, + STATE(962), 1, sym_jsx_opening_element, - STATE(855), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [36484] = 7, - ACTIONS(1986), 1, - anon_sym_LBRACE, - ACTIONS(1988), 1, - anon_sym_LT, - ACTIONS(1992), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2000), 1, + ACTIONS(2272), 3, sym_jsx_text, - STATE(854), 1, - sym_jsx_opening_element, - STATE(994), 1, - sym_jsx_closing_element, - STATE(870), 5, + anon_sym_GT, + sym_html_character_reference, + STATE(972), 4, sym_jsx_element, - sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [36510] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1966), 1, + [40390] = 11, + ACTIONS(2253), 1, sym_identifier, - ACTIONS(1968), 1, + ACTIONS(2255), 1, anon_sym_LBRACE, - ACTIONS(1970), 1, + ACTIONS(2257), 1, anon_sym_COLON, - ACTIONS(1972), 1, + ACTIONS(2259), 1, anon_sym_GT, - ACTIONS(1976), 1, + ACTIONS(2261), 1, sym_jsx_identifier, - ACTIONS(1984), 1, - anon_sym_SLASH, - STATE(876), 1, + ACTIONS(2263), 1, + anon_sym_DOT, + ACTIONS(2280), 1, + anon_sym_SLASH_GT, + STATE(998), 1, aux_sym_jsx_opening_element_repeat1, - STATE(943), 1, + STATE(1064), 1, sym_jsx_namespace_name, - STATE(974), 2, - sym_jsx_expression, - sym_jsx_attribute, - [36542] = 7, - ACTIONS(1986), 1, - anon_sym_LBRACE, - ACTIONS(1992), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1994), 1, - anon_sym_LT, - ACTIONS(2000), 1, - sym_jsx_text, - STATE(854), 1, - sym_jsx_opening_element, - STATE(1149), 1, - sym_jsx_closing_element, - STATE(870), 5, - sym_jsx_element, - sym_jsx_fragment, + STATE(1096), 2, sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [36568] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1966), 1, + sym_jsx_attribute, + [40426] = 11, + ACTIONS(2253), 1, sym_identifier, - ACTIONS(1968), 1, + ACTIONS(2255), 1, anon_sym_LBRACE, - ACTIONS(1970), 1, + ACTIONS(2257), 1, anon_sym_COLON, - ACTIONS(1972), 1, + ACTIONS(2259), 1, anon_sym_GT, - ACTIONS(1976), 1, + ACTIONS(2261), 1, sym_jsx_identifier, - ACTIONS(1980), 1, - anon_sym_SLASH, - STATE(891), 1, + ACTIONS(2263), 1, + anon_sym_DOT, + ACTIONS(2282), 1, + anon_sym_SLASH_GT, + STATE(986), 1, aux_sym_jsx_opening_element_repeat1, - STATE(943), 1, + STATE(1064), 1, sym_jsx_namespace_name, - STATE(974), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1096), 2, sym_jsx_expression, sym_jsx_attribute, - [36600] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1966), 1, + [40462] = 10, + ACTIONS(2253), 1, sym_identifier, - ACTIONS(1968), 1, + ACTIONS(2255), 1, anon_sym_LBRACE, - ACTIONS(1970), 1, - anon_sym_COLON, - ACTIONS(1972), 1, + ACTIONS(2259), 1, anon_sym_GT, - ACTIONS(1976), 1, + ACTIONS(2261), 1, sym_jsx_identifier, - ACTIONS(1982), 1, - anon_sym_SLASH, - STATE(886), 1, + ACTIONS(2263), 1, + anon_sym_DOT, + ACTIONS(2280), 1, + anon_sym_SLASH_GT, + STATE(1000), 1, aux_sym_jsx_opening_element_repeat1, - STATE(943), 1, + STATE(1064), 1, sym_jsx_namespace_name, - STATE(974), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1096), 2, sym_jsx_expression, sym_jsx_attribute, - [36632] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1966), 1, + [40495] = 10, + ACTIONS(2253), 1, sym_identifier, - ACTIONS(1968), 1, + ACTIONS(2255), 1, anon_sym_LBRACE, - ACTIONS(1972), 1, + ACTIONS(2259), 1, anon_sym_GT, - ACTIONS(1976), 1, + ACTIONS(2261), 1, sym_jsx_identifier, - ACTIONS(1978), 1, + ACTIONS(2263), 1, anon_sym_DOT, - ACTIONS(1980), 1, - anon_sym_SLASH, - STATE(893), 1, + ACTIONS(2267), 1, + anon_sym_SLASH_GT, + STATE(987), 1, aux_sym_jsx_opening_element_repeat1, - STATE(943), 1, + STATE(1064), 1, sym_jsx_namespace_name, - STATE(974), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1096), 2, sym_jsx_expression, sym_jsx_attribute, - [36664] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1966), 1, + [40528] = 10, + ACTIONS(2253), 1, sym_identifier, - ACTIONS(1968), 1, + ACTIONS(2255), 1, anon_sym_LBRACE, - ACTIONS(1972), 1, + ACTIONS(2257), 1, + anon_sym_COLON, + ACTIONS(2259), 1, anon_sym_GT, - ACTIONS(1976), 1, + ACTIONS(2261), 1, sym_jsx_identifier, - ACTIONS(1978), 1, - anon_sym_DOT, - ACTIONS(1984), 1, - anon_sym_SLASH, - STATE(878), 1, + ACTIONS(2267), 1, + anon_sym_SLASH_GT, + STATE(991), 1, aux_sym_jsx_opening_element_repeat1, - STATE(943), 1, + STATE(1064), 1, sym_jsx_namespace_name, - STATE(974), 2, - sym_jsx_expression, - sym_jsx_attribute, - [36696] = 7, - ACTIONS(1986), 1, - anon_sym_LBRACE, - ACTIONS(1992), 1, - sym_comment, - ACTIONS(2000), 1, - sym_jsx_text, - ACTIONS(2002), 1, - anon_sym_LT, - STATE(567), 1, - sym_jsx_closing_element, - STATE(854), 1, - sym_jsx_opening_element, - STATE(870), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [36722] = 6, - ACTIONS(1992), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2010), 1, - anon_sym_LBRACE, - ACTIONS(2013), 1, - anon_sym_LT, - ACTIONS(2016), 1, - sym_jsx_text, - STATE(854), 1, - sym_jsx_opening_element, - STATE(870), 5, - sym_jsx_element, - sym_jsx_fragment, + STATE(1096), 2, sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [36745] = 6, - ACTIONS(1986), 1, + sym_jsx_attribute, + [40561] = 10, + ACTIONS(2253), 1, + sym_identifier, + ACTIONS(2255), 1, anon_sym_LBRACE, - ACTIONS(1992), 1, + ACTIONS(2257), 1, + anon_sym_COLON, + ACTIONS(2259), 1, + anon_sym_GT, + ACTIONS(2261), 1, + sym_jsx_identifier, + ACTIONS(2265), 1, + anon_sym_SLASH_GT, + STATE(999), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1064), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2000), 1, - sym_jsx_text, - ACTIONS(2019), 1, - anon_sym_LT, - STATE(854), 1, - sym_jsx_opening_element, - STATE(870), 5, - sym_jsx_element, - sym_jsx_fragment, + STATE(1096), 2, sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [36768] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2021), 1, + sym_jsx_attribute, + [40594] = 10, + ACTIONS(2253), 1, sym_identifier, - ACTIONS(2024), 1, + ACTIONS(2255), 1, anon_sym_LBRACE, - ACTIONS(2027), 1, + ACTIONS(2257), 1, + anon_sym_COLON, + ACTIONS(2259), 1, anon_sym_GT, - ACTIONS(2029), 1, - anon_sym_SLASH, - ACTIONS(2031), 1, + ACTIONS(2261), 1, sym_jsx_identifier, - STATE(872), 1, + ACTIONS(2280), 1, + anon_sym_SLASH_GT, + STATE(997), 1, aux_sym_jsx_opening_element_repeat1, - STATE(943), 1, + STATE(1064), 1, sym_jsx_namespace_name, - STATE(974), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1096), 2, sym_jsx_expression, sym_jsx_attribute, - [36797] = 6, - ACTIONS(1986), 1, + [40627] = 10, + ACTIONS(2253), 1, + sym_identifier, + ACTIONS(2255), 1, anon_sym_LBRACE, - ACTIONS(1992), 1, + ACTIONS(2259), 1, + anon_sym_GT, + ACTIONS(2261), 1, + sym_jsx_identifier, + ACTIONS(2263), 1, + anon_sym_DOT, + ACTIONS(2282), 1, + anon_sym_SLASH_GT, + STATE(989), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1064), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2000), 1, - sym_jsx_text, - ACTIONS(2034), 1, - anon_sym_LT, - STATE(854), 1, - sym_jsx_opening_element, - STATE(870), 5, - sym_jsx_element, - sym_jsx_fragment, + STATE(1096), 2, sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [36820] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1966), 1, + sym_jsx_attribute, + [40660] = 10, + ACTIONS(2253), 1, sym_identifier, - ACTIONS(1968), 1, + ACTIONS(2255), 1, anon_sym_LBRACE, - ACTIONS(1972), 1, + ACTIONS(2257), 1, + anon_sym_COLON, + ACTIONS(2259), 1, anon_sym_GT, - ACTIONS(1974), 1, - anon_sym_SLASH, - ACTIONS(1976), 1, + ACTIONS(2261), 1, sym_jsx_identifier, - STATE(883), 1, + ACTIONS(2282), 1, + anon_sym_SLASH_GT, + STATE(988), 1, aux_sym_jsx_opening_element_repeat1, - STATE(943), 1, + STATE(1064), 1, sym_jsx_namespace_name, - STATE(974), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1096), 2, sym_jsx_expression, sym_jsx_attribute, - [36849] = 6, - ACTIONS(1986), 1, + [40693] = 10, + ACTIONS(2253), 1, + sym_identifier, + ACTIONS(2255), 1, anon_sym_LBRACE, - ACTIONS(1992), 1, + ACTIONS(2259), 1, + anon_sym_GT, + ACTIONS(2261), 1, + sym_jsx_identifier, + ACTIONS(2263), 1, + anon_sym_DOT, + ACTIONS(2265), 1, + anon_sym_SLASH_GT, + STATE(983), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1064), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2036), 1, - anon_sym_LT, - ACTIONS(2038), 1, - sym_jsx_text, - STATE(854), 1, - sym_jsx_opening_element, - STATE(873), 5, - sym_jsx_element, - sym_jsx_fragment, + STATE(1096), 2, sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [36872] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1966), 1, + sym_jsx_attribute, + [40726] = 9, + ACTIONS(2253), 1, sym_identifier, - ACTIONS(1968), 1, + ACTIONS(2255), 1, anon_sym_LBRACE, - ACTIONS(1976), 1, + ACTIONS(2261), 1, sym_jsx_identifier, - ACTIONS(2040), 1, + ACTIONS(2284), 1, anon_sym_GT, - ACTIONS(2042), 1, - anon_sym_SLASH, - STATE(872), 1, + ACTIONS(2286), 1, + anon_sym_SLASH_GT, + STATE(995), 1, aux_sym_jsx_opening_element_repeat1, - STATE(943), 1, + STATE(1064), 1, sym_jsx_namespace_name, - STATE(974), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1096), 2, sym_jsx_expression, sym_jsx_attribute, - [36901] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1966), 1, + [40756] = 9, + ACTIONS(2253), 1, sym_identifier, - ACTIONS(1968), 1, + ACTIONS(2255), 1, anon_sym_LBRACE, - ACTIONS(1976), 1, + ACTIONS(2261), 1, sym_jsx_identifier, - ACTIONS(2044), 1, + ACTIONS(2288), 1, anon_sym_GT, - ACTIONS(2046), 1, - anon_sym_SLASH, - STATE(872), 1, + ACTIONS(2290), 1, + anon_sym_SLASH_GT, + STATE(995), 1, aux_sym_jsx_opening_element_repeat1, - STATE(943), 1, + STATE(1064), 1, sym_jsx_namespace_name, - STATE(974), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1096), 2, sym_jsx_expression, sym_jsx_attribute, - [36930] = 9, - ACTIONS(3), 1, + [40786] = 7, + ACTIONS(2255), 1, + anon_sym_LBRACE, + ACTIONS(2292), 1, + anon_sym_LT, + ACTIONS(2294), 1, + anon_sym_DQUOTE, + ACTIONS(2296), 1, + anon_sym_SQUOTE, + STATE(967), 1, + sym_jsx_opening_element, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1966), 1, + STATE(1122), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym_jsx_string, + [40812] = 9, + ACTIONS(2253), 1, sym_identifier, - ACTIONS(1968), 1, + ACTIONS(2255), 1, anon_sym_LBRACE, - ACTIONS(1976), 1, + ACTIONS(2261), 1, sym_jsx_identifier, - ACTIONS(2048), 1, + ACTIONS(2298), 1, anon_sym_GT, - ACTIONS(2050), 1, - anon_sym_SLASH, - STATE(872), 1, + ACTIONS(2300), 1, + anon_sym_SLASH_GT, + STATE(995), 1, aux_sym_jsx_opening_element_repeat1, - STATE(943), 1, + STATE(1064), 1, sym_jsx_namespace_name, - STATE(974), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1096), 2, sym_jsx_expression, sym_jsx_attribute, - [36959] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1966), 1, + [40842] = 9, + ACTIONS(2253), 1, sym_identifier, - ACTIONS(1968), 1, + ACTIONS(2255), 1, anon_sym_LBRACE, - ACTIONS(1976), 1, + ACTIONS(2261), 1, sym_jsx_identifier, - ACTIONS(2052), 1, + ACTIONS(2284), 1, anon_sym_GT, - ACTIONS(2054), 1, - anon_sym_SLASH, - STATE(872), 1, + ACTIONS(2302), 1, + anon_sym_SLASH_GT, + STATE(995), 1, aux_sym_jsx_opening_element_repeat1, - STATE(943), 1, + STATE(1064), 1, sym_jsx_namespace_name, - STATE(974), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1096), 2, sym_jsx_expression, sym_jsx_attribute, - [36988] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1966), 1, + [40872] = 9, + ACTIONS(2253), 1, sym_identifier, - ACTIONS(1968), 1, + ACTIONS(2255), 1, anon_sym_LBRACE, - ACTIONS(1976), 1, + ACTIONS(2261), 1, sym_jsx_identifier, - ACTIONS(2040), 1, + ACTIONS(2304), 1, anon_sym_GT, - ACTIONS(2056), 1, - anon_sym_SLASH, - STATE(872), 1, + ACTIONS(2306), 1, + anon_sym_SLASH_GT, + STATE(995), 1, aux_sym_jsx_opening_element_repeat1, - STATE(943), 1, + STATE(1064), 1, sym_jsx_namespace_name, - STATE(974), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1096), 2, sym_jsx_expression, sym_jsx_attribute, - [37017] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1966), 1, + [40902] = 9, + ACTIONS(2253), 1, sym_identifier, - ACTIONS(1968), 1, + ACTIONS(2255), 1, anon_sym_LBRACE, - ACTIONS(1976), 1, + ACTIONS(2261), 1, sym_jsx_identifier, - ACTIONS(2044), 1, + ACTIONS(2284), 1, anon_sym_GT, - ACTIONS(2058), 1, - anon_sym_SLASH, - STATE(872), 1, + ACTIONS(2308), 1, + anon_sym_SLASH_GT, + STATE(995), 1, aux_sym_jsx_opening_element_repeat1, - STATE(943), 1, + STATE(1064), 1, sym_jsx_namespace_name, - STATE(974), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1096), 2, sym_jsx_expression, sym_jsx_attribute, - [37046] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1966), 1, + [40932] = 9, + ACTIONS(2253), 1, sym_identifier, - ACTIONS(1968), 1, + ACTIONS(2255), 1, anon_sym_LBRACE, - ACTIONS(1976), 1, - sym_jsx_identifier, - ACTIONS(2048), 1, + ACTIONS(2259), 1, anon_sym_GT, - ACTIONS(2060), 1, - anon_sym_SLASH, - STATE(872), 1, + ACTIONS(2261), 1, + sym_jsx_identifier, + ACTIONS(2267), 1, + anon_sym_SLASH_GT, + STATE(996), 1, aux_sym_jsx_opening_element_repeat1, - STATE(943), 1, + STATE(1064), 1, sym_jsx_namespace_name, - STATE(974), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1096), 2, sym_jsx_expression, sym_jsx_attribute, - [37075] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1966), 1, + [40962] = 9, + ACTIONS(2253), 1, sym_identifier, - ACTIONS(1968), 1, + ACTIONS(2255), 1, anon_sym_LBRACE, - ACTIONS(1976), 1, + ACTIONS(2261), 1, sym_jsx_identifier, - ACTIONS(2052), 1, + ACTIONS(2304), 1, anon_sym_GT, - ACTIONS(2062), 1, - anon_sym_SLASH, - STATE(872), 1, + ACTIONS(2310), 1, + anon_sym_SLASH_GT, + STATE(995), 1, aux_sym_jsx_opening_element_repeat1, - STATE(943), 1, + STATE(1064), 1, sym_jsx_namespace_name, - STATE(974), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1096), 2, sym_jsx_expression, sym_jsx_attribute, - [37104] = 6, - ACTIONS(1986), 1, + [40992] = 9, + ACTIONS(2253), 1, + sym_identifier, + ACTIONS(2255), 1, anon_sym_LBRACE, - ACTIONS(1992), 1, + ACTIONS(2259), 1, + anon_sym_GT, + ACTIONS(2261), 1, + sym_jsx_identifier, + ACTIONS(2265), 1, + anon_sym_SLASH_GT, + STATE(1002), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1064), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2064), 1, - anon_sym_LT, - ACTIONS(2066), 1, - sym_jsx_text, - STATE(854), 1, - sym_jsx_opening_element, - STATE(899), 5, - sym_jsx_element, - sym_jsx_fragment, + STATE(1096), 2, sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [37127] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1966), 1, + sym_jsx_attribute, + [41022] = 9, + ACTIONS(2253), 1, sym_identifier, - ACTIONS(1968), 1, + ACTIONS(2255), 1, anon_sym_LBRACE, - ACTIONS(1972), 1, + ACTIONS(2259), 1, anon_sym_GT, - ACTIONS(1976), 1, + ACTIONS(2261), 1, sym_jsx_identifier, - ACTIONS(1982), 1, - anon_sym_SLASH, - STATE(889), 1, + ACTIONS(2280), 1, + anon_sym_SLASH_GT, + STATE(984), 1, aux_sym_jsx_opening_element_repeat1, - STATE(943), 1, + STATE(1064), 1, sym_jsx_namespace_name, - STATE(974), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1096), 2, sym_jsx_expression, sym_jsx_attribute, - [37156] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1966), 1, + [41052] = 9, + ACTIONS(2253), 1, sym_identifier, - ACTIONS(1968), 1, + ACTIONS(2255), 1, anon_sym_LBRACE, - ACTIONS(1976), 1, + ACTIONS(2261), 1, sym_jsx_identifier, - ACTIONS(2040), 1, + ACTIONS(2298), 1, anon_sym_GT, - ACTIONS(2068), 1, - anon_sym_SLASH, - STATE(872), 1, + ACTIONS(2312), 1, + anon_sym_SLASH_GT, + STATE(995), 1, aux_sym_jsx_opening_element_repeat1, - STATE(943), 1, + STATE(1064), 1, sym_jsx_namespace_name, - STATE(974), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1096), 2, sym_jsx_expression, sym_jsx_attribute, - [37185] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1966), 1, + [41082] = 8, + ACTIONS(2314), 1, sym_identifier, - ACTIONS(1968), 1, + ACTIONS(2317), 1, anon_sym_LBRACE, - ACTIONS(1976), 1, + ACTIONS(2322), 1, sym_jsx_identifier, - ACTIONS(2044), 1, - anon_sym_GT, - ACTIONS(2070), 1, - anon_sym_SLASH, - STATE(872), 1, + STATE(995), 1, aux_sym_jsx_opening_element_repeat1, - STATE(943), 1, + STATE(1064), 1, sym_jsx_namespace_name, - STATE(974), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2320), 2, + anon_sym_GT, + anon_sym_SLASH_GT, + STATE(1096), 2, sym_jsx_expression, sym_jsx_attribute, - [37214] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1966), 1, + [41110] = 9, + ACTIONS(2253), 1, sym_identifier, - ACTIONS(1968), 1, + ACTIONS(2255), 1, anon_sym_LBRACE, - ACTIONS(1976), 1, + ACTIONS(2261), 1, sym_jsx_identifier, - ACTIONS(2048), 1, + ACTIONS(2288), 1, anon_sym_GT, - ACTIONS(2072), 1, - anon_sym_SLASH, - STATE(872), 1, + ACTIONS(2325), 1, + anon_sym_SLASH_GT, + STATE(995), 1, aux_sym_jsx_opening_element_repeat1, - STATE(943), 1, + STATE(1064), 1, sym_jsx_namespace_name, - STATE(974), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1096), 2, sym_jsx_expression, sym_jsx_attribute, - [37243] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1966), 1, + [41140] = 9, + ACTIONS(2253), 1, sym_identifier, - ACTIONS(1968), 1, + ACTIONS(2255), 1, anon_sym_LBRACE, - ACTIONS(1976), 1, + ACTIONS(2261), 1, sym_jsx_identifier, - ACTIONS(2052), 1, + ACTIONS(2304), 1, anon_sym_GT, - ACTIONS(2074), 1, - anon_sym_SLASH, - STATE(872), 1, + ACTIONS(2327), 1, + anon_sym_SLASH_GT, + STATE(995), 1, aux_sym_jsx_opening_element_repeat1, - STATE(943), 1, + STATE(1064), 1, sym_jsx_namespace_name, - STATE(974), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1096), 2, sym_jsx_expression, sym_jsx_attribute, - [37272] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1966), 1, + [41170] = 9, + ACTIONS(2253), 1, sym_identifier, - ACTIONS(1968), 1, + ACTIONS(2255), 1, anon_sym_LBRACE, - ACTIONS(1972), 1, - anon_sym_GT, - ACTIONS(1976), 1, + ACTIONS(2261), 1, sym_jsx_identifier, - ACTIONS(1980), 1, - anon_sym_SLASH, - STATE(894), 1, + ACTIONS(2298), 1, + anon_sym_GT, + ACTIONS(2329), 1, + anon_sym_SLASH_GT, + STATE(995), 1, aux_sym_jsx_opening_element_repeat1, - STATE(943), 1, + STATE(1064), 1, sym_jsx_namespace_name, - STATE(974), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1096), 2, sym_jsx_expression, sym_jsx_attribute, - [37301] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1966), 1, + [41200] = 9, + ACTIONS(2253), 1, sym_identifier, - ACTIONS(1968), 1, + ACTIONS(2255), 1, anon_sym_LBRACE, - ACTIONS(1976), 1, + ACTIONS(2261), 1, sym_jsx_identifier, - ACTIONS(2040), 1, + ACTIONS(2304), 1, anon_sym_GT, - ACTIONS(2076), 1, - anon_sym_SLASH, - STATE(872), 1, + ACTIONS(2331), 1, + anon_sym_SLASH_GT, + STATE(995), 1, aux_sym_jsx_opening_element_repeat1, - STATE(943), 1, + STATE(1064), 1, sym_jsx_namespace_name, - STATE(974), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1096), 2, sym_jsx_expression, sym_jsx_attribute, - [37330] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1966), 1, + [41230] = 9, + ACTIONS(2253), 1, sym_identifier, - ACTIONS(1968), 1, + ACTIONS(2255), 1, anon_sym_LBRACE, - ACTIONS(1976), 1, + ACTIONS(2261), 1, sym_jsx_identifier, - ACTIONS(2044), 1, + ACTIONS(2284), 1, anon_sym_GT, - ACTIONS(2078), 1, - anon_sym_SLASH, - STATE(872), 1, + ACTIONS(2333), 1, + anon_sym_SLASH_GT, + STATE(995), 1, aux_sym_jsx_opening_element_repeat1, - STATE(943), 1, + STATE(1064), 1, sym_jsx_namespace_name, - STATE(974), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1096), 2, sym_jsx_expression, sym_jsx_attribute, - [37359] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1966), 1, + [41260] = 9, + ACTIONS(2253), 1, sym_identifier, - ACTIONS(1968), 1, + ACTIONS(2255), 1, anon_sym_LBRACE, - ACTIONS(1976), 1, + ACTIONS(2261), 1, sym_jsx_identifier, - ACTIONS(2048), 1, + ACTIONS(2298), 1, anon_sym_GT, - ACTIONS(2080), 1, - anon_sym_SLASH, - STATE(872), 1, + ACTIONS(2335), 1, + anon_sym_SLASH_GT, + STATE(995), 1, aux_sym_jsx_opening_element_repeat1, - STATE(943), 1, + STATE(1064), 1, sym_jsx_namespace_name, - STATE(974), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1096), 2, sym_jsx_expression, sym_jsx_attribute, - [37388] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1966), 1, + [41290] = 9, + ACTIONS(2253), 1, sym_identifier, - ACTIONS(1968), 1, + ACTIONS(2255), 1, anon_sym_LBRACE, - ACTIONS(1976), 1, + ACTIONS(2261), 1, sym_jsx_identifier, - ACTIONS(2052), 1, + ACTIONS(2288), 1, anon_sym_GT, - ACTIONS(2082), 1, - anon_sym_SLASH, - STATE(872), 1, + ACTIONS(2337), 1, + anon_sym_SLASH_GT, + STATE(995), 1, aux_sym_jsx_opening_element_repeat1, - STATE(943), 1, + STATE(1064), 1, sym_jsx_namespace_name, - STATE(974), 2, - sym_jsx_expression, - sym_jsx_attribute, - [37417] = 6, - ACTIONS(1986), 1, - anon_sym_LBRACE, - ACTIONS(1992), 1, - sym_comment, - ACTIONS(2084), 1, - anon_sym_LT, - ACTIONS(2086), 1, - sym_jsx_text, - STATE(854), 1, - sym_jsx_opening_element, - STATE(896), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [37440] = 6, - ACTIONS(1986), 1, - anon_sym_LBRACE, - ACTIONS(1992), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2000), 1, - sym_jsx_text, - ACTIONS(2088), 1, - anon_sym_LT, - STATE(854), 1, - sym_jsx_opening_element, - STATE(870), 5, - sym_jsx_element, - sym_jsx_fragment, + STATE(1096), 2, sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [37463] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1966), 1, + sym_jsx_attribute, + [41320] = 9, + ACTIONS(2253), 1, sym_identifier, - ACTIONS(1968), 1, + ACTIONS(2255), 1, anon_sym_LBRACE, - ACTIONS(1972), 1, + ACTIONS(2259), 1, anon_sym_GT, - ACTIONS(1976), 1, + ACTIONS(2261), 1, sym_jsx_identifier, - ACTIONS(1984), 1, - anon_sym_SLASH, - STATE(879), 1, + ACTIONS(2282), 1, + anon_sym_SLASH_GT, + STATE(1004), 1, aux_sym_jsx_opening_element_repeat1, - STATE(943), 1, + STATE(1064), 1, sym_jsx_namespace_name, - STATE(974), 2, - sym_jsx_expression, - sym_jsx_attribute, - [37492] = 6, - ACTIONS(1986), 1, - anon_sym_LBRACE, - ACTIONS(1992), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2090), 1, - anon_sym_LT, - ACTIONS(2092), 1, - sym_jsx_text, - STATE(854), 1, - sym_jsx_opening_element, - STATE(871), 5, - sym_jsx_element, - sym_jsx_fragment, + STATE(1096), 2, sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [37515] = 6, - ACTIONS(1986), 1, + sym_jsx_attribute, + [41350] = 9, + ACTIONS(2253), 1, + sym_identifier, + ACTIONS(2255), 1, anon_sym_LBRACE, - ACTIONS(1992), 1, + ACTIONS(2261), 1, + sym_jsx_identifier, + ACTIONS(2288), 1, + anon_sym_GT, + ACTIONS(2339), 1, + anon_sym_SLASH_GT, + STATE(995), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1064), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2000), 1, - sym_jsx_text, - ACTIONS(2094), 1, - anon_sym_LT, - STATE(854), 1, - sym_jsx_opening_element, - STATE(870), 5, - sym_jsx_element, - sym_jsx_fragment, + STATE(1096), 2, sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [37538] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2096), 1, + sym_jsx_attribute, + [41380] = 9, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(2341), 1, sym_identifier, - ACTIONS(2098), 1, - anon_sym_LBRACE, - ACTIONS(2100), 1, - anon_sym_LBRACK, - STATE(983), 1, - sym_destructuring_pattern, - STATE(1025), 1, - sym_variable_declarator, - STATE(949), 2, - sym_object_pattern, - sym_array_pattern, - [37561] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2096), 1, + ACTIONS(2343), 1, + anon_sym_COMMA, + ACTIONS(2345), 1, + anon_sym_RBRACE, + STATE(1189), 1, + sym_string, + STATE(1212), 1, + sym_import_specifier, + STATE(1602), 1, + sym_module_export_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [41409] = 9, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(2347), 1, sym_identifier, - ACTIONS(2098), 1, - anon_sym_LBRACE, - ACTIONS(2100), 1, - anon_sym_LBRACK, - STATE(983), 1, - sym_destructuring_pattern, - STATE(1086), 1, - sym_variable_declarator, - STATE(949), 2, - sym_object_pattern, - sym_array_pattern, - [37584] = 7, - ACTIONS(3), 1, + ACTIONS(2349), 1, + anon_sym_COMMA, + ACTIONS(2351), 1, + anon_sym_RBRACE, + STATE(1189), 1, + sym_string, + STATE(1203), 1, + sym_export_specifier, + STATE(1204), 1, + sym_module_export_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [41438] = 7, + ACTIONS(99), 1, + anon_sym_COMMA, + ACTIONS(1947), 1, + anon_sym_EQ, + ACTIONS(1949), 1, + anon_sym_RBRACE, + STATE(1241), 1, + aux_sym_object_pattern_repeat1, + STATE(1275), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2098), 1, - anon_sym_LBRACE, - ACTIONS(2100), 1, - anon_sym_LBRACK, - ACTIONS(2102), 1, - sym_identifier, - STATE(908), 1, - sym_destructuring_pattern, - STATE(1025), 1, - sym_variable_declarator, - STATE(949), 2, - sym_object_pattern, - sym_array_pattern, - [37607] = 7, - ACTIONS(3), 1, + ACTIONS(1558), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [41462] = 7, + ACTIONS(99), 1, + anon_sym_COMMA, + ACTIONS(1947), 1, + anon_sym_EQ, + ACTIONS(1953), 1, + anon_sym_RBRACE, + STATE(1241), 1, + aux_sym_object_pattern_repeat1, + STATE(1275), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1558), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [41486] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2353), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + anon_sym_RBRACK, + [41500] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2098), 1, + ACTIONS(2355), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + anon_sym_RBRACK, + [41514] = 7, + ACTIONS(873), 1, anon_sym_LBRACE, - ACTIONS(2100), 1, + ACTIONS(875), 1, anon_sym_LBRACK, - ACTIONS(2104), 1, + ACTIONS(2357), 1, sym_identifier, - STATE(913), 1, + STATE(1121), 1, sym_destructuring_pattern, - STATE(1028), 1, + STATE(1143), 1, sym_variable_declarator, - STATE(949), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1054), 2, sym_object_pattern, sym_array_pattern, - [37630] = 7, - ACTIONS(3), 1, + [41538] = 4, + ACTIONS(2359), 1, + anon_sym_COMMA, + STATE(1012), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(93), 1, + ACTIONS(1465), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [41556] = 7, + ACTIONS(99), 1, anon_sym_COMMA, - ACTIONS(709), 1, + ACTIONS(775), 1, anon_sym_RBRACE, - ACTIONS(1756), 1, + ACTIONS(1947), 1, anon_sym_EQ, - STATE(1142), 1, + STATE(1241), 1, aux_sym_object_pattern_repeat1, - STATE(1146), 1, + STATE(1275), 1, aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, ACTIONS(1558), 2, anon_sym_LPAREN, anon_sym_COLON, - [37653] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2106), 7, + [41580] = 8, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(2341), 1, + sym_identifier, + ACTIONS(2362), 1, + anon_sym_RBRACE, + STATE(1189), 1, + sym_string, + STATE(1525), 1, + sym_import_specifier, + STATE(1602), 1, + sym_module_export_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [41606] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1543), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -59722,182 +69264,221 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_EQ, anon_sym_RBRACK, - [37666] = 7, - ACTIONS(3), 1, + [41620] = 7, + ACTIONS(873), 1, + anon_sym_LBRACE, + ACTIONS(875), 1, + anon_sym_LBRACK, + ACTIONS(2357), 1, + sym_identifier, + STATE(1121), 1, + sym_destructuring_pattern, + STATE(1127), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1054), 2, + sym_object_pattern, + sym_array_pattern, + [41644] = 7, + ACTIONS(873), 1, + anon_sym_LBRACE, + ACTIONS(875), 1, + anon_sym_LBRACK, + ACTIONS(2364), 1, + sym_identifier, + STATE(1024), 1, + sym_destructuring_pattern, + STATE(1127), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(93), 1, + STATE(1054), 2, + sym_object_pattern, + sym_array_pattern, + [41668] = 8, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(2347), 1, + sym_identifier, + ACTIONS(2366), 1, + anon_sym_RBRACE, + STATE(1189), 1, + sym_string, + STATE(1204), 1, + sym_module_export_name, + STATE(1441), 1, + sym_export_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [41694] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2368), 7, anon_sym_COMMA, - ACTIONS(683), 1, anon_sym_RBRACE, - ACTIONS(1756), 1, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, anon_sym_EQ, - STATE(1137), 1, - aux_sym_object_repeat1, - STATE(1142), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1558), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [37689] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, + anon_sym_RBRACK, + [41708] = 7, + ACTIONS(99), 1, anon_sym_COMMA, - ACTIONS(711), 1, + ACTIONS(777), 1, anon_sym_RBRACE, - ACTIONS(1756), 1, + ACTIONS(1947), 1, anon_sym_EQ, - STATE(1142), 1, + STATE(1241), 1, aux_sym_object_pattern_repeat1, - STATE(1146), 1, + STATE(1275), 1, aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, ACTIONS(1558), 2, anon_sym_LPAREN, anon_sym_COLON, - [37712] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2112), 1, + [41732] = 6, + ACTIONS(2374), 1, anon_sym_EQ, - STATE(990), 1, - sym_initializer, - ACTIONS(2110), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(2108), 3, + ACTIONS(2376), 1, sym_automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [37731] = 7, - ACTIONS(3), 1, + STATE(1259), 1, + sym_initializer, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(93), 1, + ACTIONS(2370), 2, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(1756), 1, - anon_sym_EQ, - ACTIONS(1772), 1, - anon_sym_RBRACE, - STATE(1137), 1, - aux_sym_object_repeat1, - STATE(1142), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1558), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [37754] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, + ACTIONS(2372), 2, + anon_sym_in, + anon_sym_of, + [41754] = 7, + ACTIONS(99), 1, anon_sym_COMMA, - ACTIONS(1756), 1, + ACTIONS(1947), 1, anon_sym_EQ, - ACTIONS(1776), 1, + ACTIONS(1951), 1, anon_sym_RBRACE, - STATE(1142), 1, + STATE(1241), 1, aux_sym_object_pattern_repeat1, - STATE(1146), 1, + STATE(1275), 1, aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, ACTIONS(1558), 2, anon_sym_LPAREN, anon_sym_COLON, - [37777] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, + [41778] = 7, + ACTIONS(99), 1, anon_sym_COMMA, - ACTIONS(1754), 1, + ACTIONS(745), 1, anon_sym_RBRACE, - ACTIONS(1756), 1, + ACTIONS(1947), 1, anon_sym_EQ, - STATE(1142), 1, - aux_sym_object_pattern_repeat1, - STATE(1146), 1, + STATE(1239), 1, aux_sym_object_repeat1, + STATE(1241), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, ACTIONS(1558), 2, anon_sym_LPAREN, anon_sym_COLON, - [37800] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2114), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_EQ, - anon_sym_RBRACK, - [37813] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2116), 1, + [41802] = 5, + ACTIONS(2379), 1, anon_sym_EQ, - STATE(1072), 1, + STATE(1092), 1, sym_initializer, - ACTIONS(2110), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2372), 2, anon_sym_in, anon_sym_of, - ACTIONS(2108), 3, + ACTIONS(2370), 3, sym_automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [37832] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2118), 7, - anon_sym_COMMA, + [41822] = 8, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(2347), 1, + sym_identifier, + ACTIONS(2381), 1, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, + STATE(1189), 1, + sym_string, + STATE(1204), 1, + sym_module_export_name, + STATE(1441), 1, + sym_export_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [41848] = 5, + ACTIONS(2257), 1, + anon_sym_COLON, + ACTIONS(2383), 1, + sym_identifier, + ACTIONS(2387), 1, anon_sym_EQ, - anon_sym_RBRACK, - [37845] = 7, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2096), 1, - sym_identifier, - ACTIONS(2098), 1, + ACTIONS(2385), 4, anon_sym_LBRACE, - ACTIONS(2100), 1, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [41868] = 7, + ACTIONS(873), 1, + anon_sym_LBRACE, + ACTIONS(875), 1, anon_sym_LBRACK, - STATE(983), 1, + ACTIONS(2389), 1, + sym_identifier, + STATE(1021), 1, sym_destructuring_pattern, - STATE(1028), 1, + STATE(1143), 1, sym_variable_declarator, - STATE(949), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1054), 2, sym_object_pattern, sym_array_pattern, - [37868] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1374), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(1376), 5, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_GT, - sym_jsx_identifier, - [37883] = 5, - ACTIONS(3), 1, + [41892] = 4, + ACTIONS(1619), 1, + anon_sym_COMMA, + STATE(1012), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1970), 1, + ACTIONS(2391), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(2124), 1, - anon_sym_EQ, - ACTIONS(2120), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(2122), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [37902] = 2, - ACTIONS(3), 1, + anon_sym_RBRACK, + [41910] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1476), 7, + ACTIONS(2393), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -59905,6754 +69486,8456 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_EQ, anon_sym_RBRACK, - [37915] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 2, - anon_sym_SLASH, + [41924] = 8, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(2341), 1, sym_identifier, - ACTIONS(1380), 5, + ACTIONS(2395), 1, + anon_sym_RBRACE, + STATE(1189), 1, + sym_string, + STATE(1525), 1, + sym_import_specifier, + STATE(1602), 1, + sym_module_export_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [41950] = 7, + ACTIONS(873), 1, anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_GT, - sym_jsx_identifier, - [37930] = 7, - ACTIONS(3), 1, + ACTIONS(875), 1, + anon_sym_LBRACK, + ACTIONS(2357), 1, + sym_identifier, + STATE(1121), 1, + sym_destructuring_pattern, + STATE(1217), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(93), 1, + STATE(1054), 2, + sym_object_pattern, + sym_array_pattern, + [41974] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1306), 6, + anon_sym_as, anon_sym_COMMA, - ACTIONS(1756), 1, - anon_sym_EQ, - ACTIONS(1818), 1, anon_sym_RBRACE, - STATE(1142), 1, - aux_sym_object_pattern_repeat1, - STATE(1146), 1, - aux_sym_object_repeat1, - ACTIONS(1558), 2, + anon_sym_from, anon_sym_LPAREN, anon_sym_COLON, - [37953] = 2, - ACTIONS(3), 1, + [41987] = 6, + ACTIONS(1695), 1, + anon_sym_LBRACE, + ACTIONS(2397), 1, + sym_identifier, + ACTIONS(2399), 1, + anon_sym_LBRACK, + STATE(1554), 1, + sym_destructuring_pattern, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2126), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, + STATE(1010), 2, + sym_object_pattern, + sym_array_pattern, + [42008] = 6, + ACTIONS(2374), 1, anon_sym_EQ, - anon_sym_RBRACK, - [37966] = 5, - ACTIONS(3), 1, + ACTIONS(2403), 1, + anon_sym_LPAREN, + STATE(1298), 1, + sym_initializer, + STATE(1358), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2401), 2, + sym_automatic_semicolon, + anon_sym_SEMI, + [42029] = 3, + ACTIONS(2407), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2131), 1, + ACTIONS(2405), 5, + sym_jsx_text, + anon_sym_LBRACE, + anon_sym_GT, + sym_html_character_reference, + anon_sym_LT_SLASH, + [42044] = 5, + ACTIONS(2411), 1, anon_sym_BQUOTE, - ACTIONS(2133), 1, + ACTIONS(2413), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2128), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2409), 2, sym_template_chars, sym_escape_sequence, - STATE(922), 2, + STATE(1065), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [37984] = 6, - ACTIONS(3), 1, + [42063] = 3, + ACTIONS(2415), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2116), 1, + ACTIONS(2417), 5, + anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(2138), 1, - anon_sym_LPAREN, - STATE(1290), 1, - sym_initializer, - STATE(1332), 1, - sym_formal_parameters, - ACTIONS(2136), 2, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [42078] = 3, + ACTIONS(2421), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2419), 5, + sym_jsx_text, + anon_sym_LBRACE, + anon_sym_GT, + sym_html_character_reference, + anon_sym_LT_SLASH, + [42093] = 3, + ACTIONS(1333), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1335), 5, + sym_jsx_text, + anon_sym_LBRACE, + anon_sym_GT, + sym_html_character_reference, + anon_sym_LT_SLASH, + [42108] = 3, + ACTIONS(1274), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1276), 5, + sym_jsx_text, + anon_sym_LBRACE, + anon_sym_GT, + sym_html_character_reference, + anon_sym_LT_SLASH, + [42123] = 6, + ACTIONS(1695), 1, + anon_sym_LBRACE, + ACTIONS(2399), 1, + anon_sym_LBRACK, + ACTIONS(2423), 1, + sym_identifier, + STATE(1145), 1, + sym_destructuring_pattern, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1010), 2, + sym_object_pattern, + sym_array_pattern, + [42144] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1541), 6, sym_automatic_semicolon, anon_sym_SEMI, - [38004] = 3, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + [42157] = 3, + ACTIONS(1353), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2140), 2, - anon_sym_SLASH, + ACTIONS(1355), 5, + sym_jsx_text, + anon_sym_LBRACE, + anon_sym_GT, + sym_html_character_reference, + anon_sym_LT_SLASH, + [42172] = 3, + ACTIONS(1357), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1359), 5, + sym_jsx_text, + anon_sym_LBRACE, + anon_sym_GT, + sym_html_character_reference, + anon_sym_LT_SLASH, + [42187] = 7, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(2341), 1, sym_identifier, - ACTIONS(2142), 4, + STATE(1189), 1, + sym_string, + STATE(1525), 1, + sym_import_specifier, + STATE(1602), 1, + sym_module_export_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [42210] = 3, + ACTIONS(1405), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1407), 5, + sym_jsx_text, anon_sym_LBRACE, anon_sym_GT, - sym_jsx_identifier, - anon_sym_DOT, - [38018] = 5, - ACTIONS(3), 1, + sym_html_character_reference, + anon_sym_LT_SLASH, + [42225] = 3, + ACTIONS(1405), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2146), 1, - anon_sym_BQUOTE, - ACTIONS(2148), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2144), 2, - sym_template_chars, - sym_escape_sequence, - STATE(922), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [38036] = 5, - ACTIONS(3), 1, + ACTIONS(1407), 5, + sym_jsx_text, + anon_sym_LBRACE, + anon_sym_GT, + sym_html_character_reference, + anon_sym_LT_SLASH, + [42240] = 3, + ACTIONS(1405), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1407), 5, + sym_jsx_text, + anon_sym_LBRACE, + anon_sym_GT, + sym_html_character_reference, + anon_sym_LT_SLASH, + [42255] = 3, + ACTIONS(1405), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2148), 1, + ACTIONS(1407), 5, + sym_jsx_text, + anon_sym_LBRACE, + anon_sym_GT, + sym_html_character_reference, + anon_sym_LT_SLASH, + [42270] = 5, + ACTIONS(2413), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2152), 1, + ACTIONS(2425), 1, anon_sym_BQUOTE, - ACTIONS(2150), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2409), 2, sym_template_chars, sym_escape_sequence, - STATE(925), 2, + STATE(1065), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [38054] = 2, - ACTIONS(3), 1, + [42289] = 3, + ACTIONS(2429), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2427), 5, + sym_jsx_text, + anon_sym_LBRACE, + anon_sym_GT, + sym_html_character_reference, + anon_sym_LT_SLASH, + [42304] = 3, + ACTIONS(1361), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1474), 6, + ACTIONS(1363), 5, + sym_jsx_text, + anon_sym_LBRACE, + anon_sym_GT, + sym_html_character_reference, + anon_sym_LT_SLASH, + [42319] = 7, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(2347), 1, + sym_identifier, + STATE(1189), 1, + sym_string, + STATE(1204), 1, + sym_module_export_name, + STATE(1441), 1, + sym_export_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [42342] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2355), 6, sym_automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_in, anon_sym_of, anon_sym_EQ, - [38066] = 2, - ACTIONS(3), 1, + [42355] = 6, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2403), 1, + anon_sym_LPAREN, + STATE(1377), 1, + sym_formal_parameters, + STATE(1523), 1, + sym_initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2431), 2, + sym_automatic_semicolon, + anon_sym_SEMI, + [42376] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1476), 6, + ACTIONS(1543), 6, sym_automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_in, anon_sym_of, anon_sym_EQ, - [38078] = 6, - ACTIONS(3), 1, + [42389] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2116), 1, + ACTIONS(2368), 6, + sym_automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + [42402] = 6, + ACTIONS(2374), 1, anon_sym_EQ, - ACTIONS(2138), 1, + ACTIONS(2403), 1, anon_sym_LPAREN, - STATE(1178), 1, + STATE(1400), 1, sym_formal_parameters, - STATE(1228), 1, + STATE(1516), 1, sym_initializer, - ACTIONS(2154), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2433), 2, sym_automatic_semicolon, anon_sym_SEMI, - [38098] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2156), 1, - sym_identifier, - ACTIONS(2158), 1, - anon_sym_GT, - ACTIONS(2160), 1, - anon_sym_SLASH, - ACTIONS(2162), 1, - sym_jsx_identifier, - STATE(860), 1, - sym_nested_identifier, - STATE(885), 1, - sym_jsx_namespace_name, - [38120] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1643), 1, + [42423] = 6, + ACTIONS(873), 1, anon_sym_LBRACE, - ACTIONS(2164), 1, - sym_identifier, - ACTIONS(2166), 1, + ACTIONS(875), 1, anon_sym_LBRACK, - STATE(1271), 1, + ACTIONS(2435), 1, + sym_identifier, + STATE(1283), 1, sym_destructuring_pattern, - STATE(912), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1054), 2, sym_object_pattern, sym_array_pattern, - [38140] = 5, - ACTIONS(3), 1, + [42444] = 5, + ACTIONS(2413), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2439), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2437), 2, + sym_template_chars, + sym_escape_sequence, + STATE(1050), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [42463] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2168), 1, + ACTIONS(1343), 6, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COLON, + [42476] = 5, + ACTIONS(2441), 1, anon_sym_default, - ACTIONS(2170), 1, + ACTIONS(2443), 1, anon_sym_RBRACE, - ACTIONS(2172), 1, + ACTIONS(2445), 1, anon_sym_case, - STATE(935), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [38158] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2156), 1, - sym_identifier, - ACTIONS(2158), 1, - anon_sym_GT, - ACTIONS(2162), 1, - sym_jsx_identifier, - ACTIONS(2174), 1, - anon_sym_SLASH, - STATE(860), 1, - sym_nested_identifier, - STATE(885), 1, - sym_jsx_namespace_name, - [38180] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1643), 1, - anon_sym_LBRACE, - ACTIONS(2166), 1, - anon_sym_LBRACK, - ACTIONS(2176), 1, - sym_identifier, - STATE(1042), 1, - sym_destructuring_pattern, - STATE(912), 2, - sym_object_pattern, - sym_array_pattern, - [38200] = 5, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2168), 1, - anon_sym_default, - ACTIONS(2172), 1, - anon_sym_case, - ACTIONS(2178), 1, - anon_sym_RBRACE, - STATE(938), 3, + STATE(1066), 3, sym_switch_case, sym_switch_default, aux_sym_switch_body_repeat1, - [38218] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2116), 1, + [42495] = 6, + ACTIONS(2374), 1, anon_sym_EQ, - ACTIONS(2138), 1, + ACTIONS(2403), 1, anon_sym_LPAREN, - STATE(1177), 1, + STATE(1381), 1, sym_formal_parameters, - STATE(1183), 1, + STATE(1524), 1, sym_initializer, - ACTIONS(2180), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2447), 2, sym_automatic_semicolon, anon_sym_SEMI, - [38238] = 5, - ACTIONS(3), 1, + [42516] = 4, + ACTIONS(2383), 1, + sym_identifier, + ACTIONS(2387), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2148), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2184), 1, + ACTIONS(2385), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [42533] = 5, + ACTIONS(2452), 1, anon_sym_BQUOTE, - ACTIONS(2182), 2, + ACTIONS(2454), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2449), 2, sym_template_chars, sym_escape_sequence, - STATE(942), 2, + STATE(1065), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [38256] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2186), 1, + [42552] = 5, + ACTIONS(2441), 1, anon_sym_default, - ACTIONS(2189), 1, - anon_sym_RBRACE, - ACTIONS(2191), 1, + ACTIONS(2445), 1, anon_sym_case, - STATE(938), 3, + ACTIONS(2457), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1070), 3, sym_switch_case, sym_switch_default, aux_sym_switch_body_repeat1, - [38274] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2156), 1, - sym_identifier, - ACTIONS(2158), 1, - anon_sym_GT, - ACTIONS(2162), 1, - sym_jsx_identifier, - ACTIONS(2194), 1, - anon_sym_SLASH, - STATE(860), 1, - sym_nested_identifier, - STATE(885), 1, - sym_jsx_namespace_name, - [38296] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2156), 1, - sym_identifier, - ACTIONS(2158), 1, - anon_sym_GT, - ACTIONS(2162), 1, - sym_jsx_identifier, - ACTIONS(2196), 1, - anon_sym_SLASH, - STATE(860), 1, - sym_nested_identifier, - STATE(885), 1, - sym_jsx_namespace_name, - [38318] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1643), 1, - anon_sym_LBRACE, - ACTIONS(2166), 1, - anon_sym_LBRACK, - ACTIONS(2198), 1, - sym_identifier, - STATE(1359), 1, - sym_destructuring_pattern, - STATE(912), 2, - sym_object_pattern, - sym_array_pattern, - [38338] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2148), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2200), 1, - anon_sym_BQUOTE, - ACTIONS(2144), 2, - sym_template_chars, - sym_escape_sequence, - STATE(922), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [38356] = 4, - ACTIONS(3), 1, + [42571] = 3, + ACTIONS(2421), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2124), 1, - anon_sym_EQ, - ACTIONS(2120), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(2122), 3, + ACTIONS(2419), 5, + sym_jsx_text, anon_sym_LBRACE, anon_sym_GT, - sym_jsx_identifier, - [38372] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2156), 1, - sym_identifier, - ACTIONS(2158), 1, - anon_sym_GT, - ACTIONS(2162), 1, - sym_jsx_identifier, - ACTIONS(2202), 1, - anon_sym_SLASH, - STATE(860), 1, - sym_nested_identifier, - STATE(885), 1, - sym_jsx_namespace_name, - [38394] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2156), 1, - sym_identifier, - ACTIONS(2158), 1, - anon_sym_GT, - ACTIONS(2162), 1, - sym_jsx_identifier, - ACTIONS(2204), 1, - anon_sym_SLASH, - STATE(860), 1, - sym_nested_identifier, - STATE(885), 1, - sym_jsx_namespace_name, - [38416] = 3, - ACTIONS(3), 1, + sym_html_character_reference, + anon_sym_LT_SLASH, + [42586] = 3, + ACTIONS(2421), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2206), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(2208), 4, + ACTIONS(2419), 5, + sym_jsx_text, anon_sym_LBRACE, - anon_sym_EQ, anon_sym_GT, - sym_jsx_identifier, - [38430] = 7, - ACTIONS(3), 1, + sym_html_character_reference, + anon_sym_LT_SLASH, + [42601] = 3, + ACTIONS(2421), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2156), 1, - sym_identifier, - ACTIONS(2158), 1, + ACTIONS(2419), 5, + sym_jsx_text, + anon_sym_LBRACE, anon_sym_GT, - ACTIONS(2162), 1, - sym_jsx_identifier, - ACTIONS(2210), 1, - anon_sym_SLASH, - STATE(860), 1, - sym_nested_identifier, - STATE(885), 1, - sym_jsx_namespace_name, - [38452] = 2, - ACTIONS(3), 1, + sym_html_character_reference, + anon_sym_LT_SLASH, + [42616] = 5, + ACTIONS(2459), 1, + anon_sym_default, + ACTIONS(2462), 1, + anon_sym_RBRACE, + ACTIONS(2464), 1, + anon_sym_case, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2118), 6, - sym_automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_EQ, - [38464] = 2, - ACTIONS(3), 1, + STATE(1070), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [42635] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2114), 6, + ACTIONS(2353), 6, sym_automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_in, anon_sym_of, anon_sym_EQ, - [38476] = 2, - ACTIONS(3), 1, + [42648] = 5, + ACTIONS(2413), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2469), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1478), 6, - sym_automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_EQ, - [38488] = 2, - ACTIONS(3), 1, + ACTIONS(2467), 2, + sym_template_chars, + sym_escape_sequence, + STATE(1036), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [42667] = 3, + ACTIONS(2471), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2473), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_DOT, + anon_sym_SLASH_GT, + [42682] = 3, + ACTIONS(2477), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2475), 5, + sym_jsx_text, + anon_sym_LBRACE, + anon_sym_GT, + sym_html_character_reference, + anon_sym_LT_SLASH, + [42697] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2106), 6, + ACTIONS(2393), 6, sym_automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_in, anon_sym_of, anon_sym_EQ, - [38500] = 2, - ACTIONS(3), 1, + [42710] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2126), 6, + ACTIONS(1545), 6, sym_automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_in, anon_sym_of, anon_sym_EQ, - [38512] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2116), 1, - anon_sym_EQ, - ACTIONS(2138), 1, - anon_sym_LPAREN, - STATE(1229), 1, - sym_initializer, - STATE(1320), 1, - sym_formal_parameters, - ACTIONS(2212), 2, - sym_automatic_semicolon, - anon_sym_SEMI, - [38532] = 7, - ACTIONS(3), 1, + [42723] = 3, + ACTIONS(2481), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2156), 1, - sym_identifier, - ACTIONS(2158), 1, + ACTIONS(2479), 5, + sym_jsx_text, + anon_sym_LBRACE, anon_sym_GT, - ACTIONS(2162), 1, - sym_jsx_identifier, - ACTIONS(2214), 1, - anon_sym_SLASH, - STATE(860), 1, - sym_nested_identifier, - STATE(885), 1, - sym_jsx_namespace_name, - [38554] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2156), 1, + sym_html_character_reference, + anon_sym_LT_SLASH, + [42738] = 3, + ACTIONS(2483), 1, sym_identifier, - ACTIONS(2158), 1, - anon_sym_GT, - ACTIONS(2162), 1, - sym_jsx_identifier, - ACTIONS(2216), 1, - anon_sym_SLASH, - STATE(860), 1, - sym_nested_identifier, - STATE(885), 1, - sym_jsx_namespace_name, - [38576] = 7, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2156), 1, - sym_identifier, - ACTIONS(2158), 1, + ACTIONS(2485), 4, + anon_sym_LBRACE, anon_sym_GT, - ACTIONS(2162), 1, sym_jsx_identifier, - ACTIONS(2218), 1, - anon_sym_SLASH, - STATE(860), 1, - sym_nested_identifier, - STATE(885), 1, - sym_jsx_namespace_name, - [38598] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2156), 1, + anon_sym_SLASH_GT, + [42752] = 6, + ACTIONS(2487), 1, sym_identifier, - ACTIONS(2158), 1, - anon_sym_GT, - ACTIONS(2162), 1, - sym_jsx_identifier, - ACTIONS(2220), 1, - anon_sym_SLASH, - STATE(860), 1, - sym_nested_identifier, - STATE(885), 1, - sym_jsx_namespace_name, - [38620] = 7, - ACTIONS(3), 1, + ACTIONS(2489), 1, + anon_sym_LBRACE, + ACTIONS(2491), 1, + anon_sym_extends, + STATE(502), 1, + sym_class_body, + STATE(1382), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2156), 1, + [42772] = 6, + ACTIONS(2493), 1, sym_identifier, - ACTIONS(2158), 1, + ACTIONS(2495), 1, anon_sym_GT, - ACTIONS(2162), 1, + ACTIONS(2497), 1, sym_jsx_identifier, - ACTIONS(2222), 1, - anon_sym_SLASH, - STATE(860), 1, + STATE(975), 1, sym_nested_identifier, - STATE(885), 1, + STATE(993), 1, sym_jsx_namespace_name, - [38642] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2224), 1, - anon_sym_EQ, - ACTIONS(812), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - [38655] = 5, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1210), 1, + [42792] = 5, + ACTIONS(1409), 1, anon_sym_LPAREN, - ACTIONS(2229), 1, + ACTIONS(2501), 1, anon_sym_LBRACK, - STATE(635), 1, + STATE(590), 1, sym_arguments, - ACTIONS(2227), 2, - sym_identifier, - sym_private_property_identifier, - [38672] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1352), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(1354), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [38685] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1356), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(1358), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [38698] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1356), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(1358), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [38711] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1356), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(1358), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [38724] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2231), 1, + ACTIONS(2499), 2, sym_identifier, - ACTIONS(2233), 1, - anon_sym_LBRACE, - ACTIONS(2235), 1, - anon_sym_extends, - STATE(565), 1, - sym_class_body, - STATE(1215), 1, - sym_class_heritage, - [38743] = 3, - ACTIONS(3), 1, + sym_private_property_identifier, + [42810] = 5, + ACTIONS(1831), 1, + anon_sym_COMMA, + ACTIONS(1969), 1, + anon_sym_RBRACE, + STATE(1237), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1356), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(1358), 3, - anon_sym_LBRACE, + ACTIONS(1558), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [42828] = 6, + ACTIONS(2495), 1, anon_sym_GT, - sym_jsx_identifier, - [38756] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1366), 2, - anon_sym_SLASH, + ACTIONS(2503), 1, sym_identifier, - ACTIONS(1368), 3, - anon_sym_LBRACE, - anon_sym_GT, + ACTIONS(2505), 1, sym_jsx_identifier, - [38769] = 3, - ACTIONS(3), 1, + STATE(980), 1, + sym_nested_identifier, + STATE(1003), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2237), 1, + [42848] = 3, + ACTIONS(2507), 1, anon_sym_EQ, - ACTIONS(812), 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(864), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, - [38782] = 3, - ACTIONS(3), 1, + [42862] = 4, + ACTIONS(1947), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1370), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(1372), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [38795] = 2, - ACTIONS(3), 1, + ACTIONS(1558), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(1966), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [42878] = 3, + ACTIONS(2510), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(812), 5, + ACTIONS(893), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_EQ, anon_sym_RBRACK, - [38806] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2233), 1, - anon_sym_LBRACE, - ACTIONS(2235), 1, + [42892] = 6, + ACTIONS(2491), 1, anon_sym_extends, - ACTIONS(2240), 1, + ACTIONS(2512), 1, sym_identifier, - STATE(627), 1, - sym_class_body, - STATE(1172), 1, - sym_class_heritage, - [38825] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2233), 1, + ACTIONS(2514), 1, anon_sym_LBRACE, - ACTIONS(2235), 1, - anon_sym_extends, - ACTIONS(2242), 1, - sym_identifier, - STATE(627), 1, + STATE(606), 1, sym_class_body, - STATE(1172), 1, + STATE(1384), 1, sym_class_heritage, - [38844] = 6, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2244), 1, - sym_identifier, - ACTIONS(2246), 1, - anon_sym_GT, - ACTIONS(2248), 1, - sym_jsx_identifier, + [42912] = 6, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(2516), 1, + anon_sym_export, + ACTIONS(2518), 1, + anon_sym_class, STATE(868), 1, - sym_nested_identifier, - STATE(897), 1, - sym_jsx_namespace_name, - [38863] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2250), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(2252), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [38876] = 3, - ACTIONS(3), 1, + aux_sym_export_statement_repeat1, + STATE(933), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1328), 2, - anon_sym_SLASH, + [42932] = 6, + ACTIONS(2520), 1, sym_identifier, - ACTIONS(1330), 3, - anon_sym_LBRACE, + ACTIONS(2522), 1, anon_sym_GT, + ACTIONS(2524), 1, sym_jsx_identifier, - [38889] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1121), 1, - anon_sym_LPAREN, - ACTIONS(2256), 1, - anon_sym_LBRACK, - STATE(465), 1, - sym_arguments, - ACTIONS(2254), 2, - sym_identifier, - sym_private_property_identifier, - [38906] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2233), 1, - anon_sym_LBRACE, - ACTIONS(2235), 1, - anon_sym_extends, - ACTIONS(2258), 1, - sym_identifier, - STATE(565), 1, - sym_class_body, - STATE(1215), 1, - sym_class_heritage, - [38925] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1558), 1, - anon_sym_COLON, - ACTIONS(1728), 1, - anon_sym_COMMA, - ACTIONS(1756), 1, - anon_sym_EQ, - ACTIONS(2260), 1, - anon_sym_RBRACE, - STATE(1147), 1, - aux_sym_object_pattern_repeat1, - [38944] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2262), 1, - anon_sym_EQ, - ACTIONS(836), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - [38957] = 6, - ACTIONS(3), 1, + STATE(1375), 1, + sym_nested_identifier, + STATE(1610), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2233), 1, - anon_sym_LBRACE, - ACTIONS(2235), 1, - anon_sym_extends, - ACTIONS(2264), 1, + [42952] = 3, + ACTIONS(2477), 1, sym_identifier, - STATE(565), 1, - sym_class_body, - STATE(1215), 1, - sym_class_heritage, - [38976] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2266), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(2268), 3, + ACTIONS(2475), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [38989] = 6, - ACTIONS(3), 1, + anon_sym_SLASH_GT, + [42966] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1558), 1, - anon_sym_COLON, - ACTIONS(1728), 1, - anon_sym_COMMA, - ACTIONS(1756), 1, + ACTIONS(1306), 5, + sym_automatic_semicolon, + anon_sym_SEMI, + anon_sym_with, + anon_sym_LPAREN, anon_sym_EQ, - ACTIONS(2270), 1, - anon_sym_RBRACE, - STATE(1142), 1, - aux_sym_object_pattern_repeat1, - [39008] = 4, - ACTIONS(3), 1, + [42978] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2116), 1, - anon_sym_EQ, - STATE(1072), 1, - sym_initializer, - ACTIONS(2108), 3, + ACTIONS(2528), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(2526), 3, sym_automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [39023] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1756), 1, - anon_sym_EQ, - ACTIONS(1558), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(1820), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [39038] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2272), 2, - anon_sym_SLASH, + [42992] = 3, + ACTIONS(1361), 1, sym_identifier, - ACTIONS(2274), 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1363), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [39051] = 3, - ACTIONS(3), 1, + anon_sym_SLASH_GT, + [43006] = 3, + ACTIONS(1405), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1242), 2, - anon_sym_SLASH, + ACTIONS(1407), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [43020] = 3, + ACTIONS(1405), 1, sym_identifier, - ACTIONS(1244), 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1407), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [39064] = 6, - ACTIONS(3), 1, + anon_sym_SLASH_GT, + [43034] = 3, + ACTIONS(2530), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2233), 1, + ACTIONS(2532), 4, anon_sym_LBRACE, - ACTIONS(2235), 1, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [43048] = 6, + ACTIONS(2489), 1, + anon_sym_LBRACE, + ACTIONS(2491), 1, anon_sym_extends, - ACTIONS(2276), 1, + ACTIONS(2534), 1, sym_identifier, - STATE(627), 1, + STATE(485), 1, sym_class_body, - STATE(1172), 1, + STATE(1413), 1, sym_class_heritage, - [39083] = 6, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2278), 1, - sym_identifier, - ACTIONS(2280), 1, + [43068] = 6, + ACTIONS(2495), 1, anon_sym_GT, - ACTIONS(2282), 1, + ACTIONS(2536), 1, + sym_identifier, + ACTIONS(2538), 1, sym_jsx_identifier, - STATE(859), 1, + STATE(982), 1, sym_nested_identifier, - STATE(874), 1, + STATE(992), 1, sym_jsx_namespace_name, - [39102] = 6, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(85), 1, + [43088] = 3, + ACTIONS(2540), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2542), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [43102] = 3, + ACTIONS(1405), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1407), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [43116] = 6, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(2347), 1, + sym_identifier, + STATE(1189), 1, + sym_string, + STATE(1605), 1, + sym_module_export_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [43136] = 3, + ACTIONS(2429), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2427), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [43150] = 6, + ACTIONS(91), 1, anon_sym_AT, - ACTIONS(2284), 1, + ACTIONS(2544), 1, anon_sym_export, - ACTIONS(2286), 1, + ACTIONS(2546), 1, anon_sym_class, - STATE(800), 1, + STATE(868), 1, aux_sym_export_statement_repeat1, - STATE(845), 1, + STATE(933), 1, sym_decorator, - [39121] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2290), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(2288), 3, - sym_automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [39134] = 6, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2235), 1, + [43170] = 6, + ACTIONS(2491), 1, anon_sym_extends, - ACTIONS(2292), 1, + ACTIONS(2514), 1, + anon_sym_LBRACE, + ACTIONS(2548), 1, sym_identifier, - ACTIONS(2294), 1, + STATE(582), 1, + sym_class_body, + STATE(1319), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [43190] = 6, + ACTIONS(2491), 1, + anon_sym_extends, + ACTIONS(2514), 1, anon_sym_LBRACE, - STATE(435), 1, + ACTIONS(2550), 1, + sym_identifier, + STATE(606), 1, sym_class_body, - STATE(1245), 1, + STATE(1384), 1, sym_class_heritage, - [39153] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2296), 2, - anon_sym_SLASH, + [43210] = 6, + ACTIONS(815), 1, + anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_SQUOTE, + ACTIONS(2347), 1, + sym_identifier, + STATE(1189), 1, + sym_string, + STATE(1442), 1, + sym_module_export_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [43230] = 3, + ACTIONS(1405), 1, sym_identifier, - ACTIONS(2298), 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1407), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [39166] = 6, - ACTIONS(3), 1, + anon_sym_SLASH_GT, + [43244] = 6, + ACTIONS(2491), 1, + anon_sym_extends, + ACTIONS(2514), 1, + anon_sym_LBRACE, + ACTIONS(2552), 1, + sym_identifier, + STATE(606), 1, + sym_class_body, + STATE(1384), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2156), 1, + [43264] = 3, + ACTIONS(1357), 1, sym_identifier, - ACTIONS(2158), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1359), 4, + anon_sym_LBRACE, anon_sym_GT, - ACTIONS(2162), 1, sym_jsx_identifier, - STATE(860), 1, + anon_sym_SLASH_GT, + [43278] = 6, + ACTIONS(2495), 1, + anon_sym_GT, + ACTIONS(2554), 1, + sym_identifier, + ACTIONS(2556), 1, + sym_jsx_identifier, + STATE(976), 1, sym_nested_identifier, - STATE(885), 1, + STATE(990), 1, sym_jsx_namespace_name, - [39185] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1294), 2, - anon_sym_SLASH, + [43298] = 3, + ACTIONS(1353), 1, sym_identifier, - ACTIONS(1296), 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1355), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [39198] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2300), 1, + anon_sym_SLASH_GT, + [43312] = 6, + ACTIONS(2558), 1, sym_identifier, - ACTIONS(2302), 1, + ACTIONS(2560), 1, anon_sym_GT, - ACTIONS(2304), 1, + ACTIONS(2562), 1, sym_jsx_identifier, - STATE(867), 1, + STATE(1305), 1, sym_nested_identifier, - STATE(890), 1, + STATE(1608), 1, sym_jsx_namespace_name, - [39217] = 6, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2235), 1, + [43332] = 6, + ACTIONS(2491), 1, anon_sym_extends, - ACTIONS(2294), 1, + ACTIONS(2514), 1, anon_sym_LBRACE, - ACTIONS(2306), 1, + ACTIONS(2564), 1, sym_identifier, - STATE(470), 1, + STATE(582), 1, sym_class_body, - STATE(1306), 1, + STATE(1319), 1, sym_class_heritage, - [39236] = 6, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(85), 1, - anon_sym_AT, - ACTIONS(2308), 1, - anon_sym_export, - ACTIONS(2310), 1, - anon_sym_class, - STATE(800), 1, - aux_sym_export_statement_repeat1, - STATE(845), 1, - sym_decorator, - [39255] = 5, - ACTIONS(3), 1, + [43352] = 3, + ACTIONS(1274), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2233), 1, + ACTIONS(1276), 4, anon_sym_LBRACE, - ACTIONS(2312), 1, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [43366] = 6, + ACTIONS(2566), 1, + sym_identifier, + ACTIONS(2568), 1, + anon_sym_GT, + ACTIONS(2570), 1, + sym_jsx_identifier, + STATE(1376), 1, + sym_nested_identifier, + STATE(1609), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [43386] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(864), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_RBRACK, + [43398] = 6, + ACTIONS(2491), 1, anon_sym_extends, - STATE(636), 1, + ACTIONS(2514), 1, + anon_sym_LBRACE, + ACTIONS(2572), 1, + sym_identifier, + STATE(582), 1, sym_class_body, - STATE(1261), 1, + STATE(1319), 1, sym_class_heritage, - [39271] = 4, - ACTIONS(1992), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2314), 1, - anon_sym_DQUOTE, - STATE(1051), 1, - aux_sym_string_repeat1, - ACTIONS(2316), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [39285] = 4, - ACTIONS(1992), 1, + [43418] = 3, + ACTIONS(1333), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1335), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [43432] = 5, + ACTIONS(1214), 1, + anon_sym_LPAREN, + ACTIONS(2576), 1, + anon_sym_LBRACK, + STATE(496), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2574), 2, + sym_identifier, + sym_private_property_identifier, + [43450] = 6, + ACTIONS(1558), 1, + anon_sym_COLON, + ACTIONS(1891), 1, + anon_sym_COMMA, + ACTIONS(1947), 1, + anon_sym_EQ, + ACTIONS(2578), 1, + anon_sym_RBRACE, + STATE(1273), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [43470] = 4, + ACTIONS(2374), 1, + anon_sym_EQ, + STATE(1259), 1, + sym_initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2370), 3, + sym_automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + [43486] = 3, + ACTIONS(2580), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2582), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [43500] = 3, + ACTIONS(2584), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(864), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + [43514] = 6, + ACTIONS(1558), 1, + anon_sym_COLON, + ACTIONS(1891), 1, + anon_sym_COMMA, + ACTIONS(1947), 1, + anon_sym_EQ, + ACTIONS(2587), 1, + anon_sym_RBRACE, + STATE(1241), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [43534] = 6, + ACTIONS(2589), 1, + sym_identifier, + ACTIONS(2591), 1, + anon_sym_GT, + ACTIONS(2593), 1, + sym_jsx_identifier, + STATE(1341), 1, + sym_nested_identifier, + STATE(1618), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2314), 1, - anon_sym_SQUOTE, - STATE(1052), 1, - aux_sym_string_repeat2, - ACTIONS(2318), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [39299] = 2, - ACTIONS(3), 1, + [43554] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1558), 4, + ACTIONS(1343), 5, sym_automatic_semicolon, anon_sym_SEMI, + anon_sym_with, anon_sym_LPAREN, anon_sym_EQ, - [39309] = 2, - ACTIONS(3), 1, + [43566] = 4, + ACTIONS(2597), 1, + anon_sym_COMMA, + STATE(1169), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2595), 2, + sym_automatic_semicolon, + anon_sym_SEMI, + [43581] = 5, + ACTIONS(2599), 1, + anon_sym_COMMA, + ACTIONS(2601), 1, + anon_sym_RPAREN, + ACTIONS(2603), 1, + anon_sym_EQ, + STATE(1279), 1, + aux_sym_formal_parameters_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [43598] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1376), 4, + ACTIONS(1558), 4, sym_automatic_semicolon, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_EQ, - [39319] = 4, - ACTIONS(1992), 1, + [43609] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(2320), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2605), 1, anon_sym_SQUOTE, - STATE(1010), 1, + STATE(1163), 1, aux_sym_string_repeat2, - ACTIONS(2322), 2, + ACTIONS(2607), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [39333] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_AT, - ACTIONS(2286), 1, - anon_sym_class, - STATE(800), 1, - aux_sym_export_statement_repeat1, - STATE(845), 1, - sym_decorator, - [39349] = 4, - ACTIONS(1992), 1, - sym_comment, - ACTIONS(2324), 1, - anon_sym_DQUOTE, - STATE(1024), 1, - aux_sym_string_repeat1, - ACTIONS(2326), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [39363] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_AT, - ACTIONS(2310), 1, - anon_sym_class, - STATE(800), 1, - aux_sym_export_statement_repeat1, - STATE(845), 1, - sym_decorator, - [39379] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2138), 1, + [43626] = 5, + ACTIONS(2403), 1, anon_sym_LPAREN, - ACTIONS(2328), 1, + ACTIONS(2609), 1, sym_identifier, - ACTIONS(2330), 1, + ACTIONS(2611), 1, anon_sym_STAR, - STATE(1292), 1, + STATE(1322), 1, sym_formal_parameters, - [39395] = 5, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(606), 1, - anon_sym_COMMA, - ACTIONS(2332), 1, - anon_sym_EQ, - ACTIONS(2334), 1, - anon_sym_RBRACK, - STATE(1116), 1, - aux_sym_array_pattern_repeat1, - [39411] = 4, - ACTIONS(1992), 1, + [43643] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(2336), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2613), 1, anon_sym_DQUOTE, - STATE(1051), 1, + STATE(1150), 1, aux_sym_string_repeat1, - ACTIONS(2316), 2, + ACTIONS(2615), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [39425] = 4, - ACTIONS(1992), 1, + [43660] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(2336), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2613), 1, anon_sym_SQUOTE, - STATE(1052), 1, + STATE(1170), 1, aux_sym_string_repeat2, - ACTIONS(2318), 2, + ACTIONS(2617), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [39439] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2340), 1, - anon_sym_COMMA, - STATE(1011), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(2338), 2, - sym_automatic_semicolon, - anon_sym_SEMI, - [39453] = 5, + [43677] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2233), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2605), 1, + anon_sym_DQUOTE, + STATE(1162), 1, + aux_sym_string_repeat1, + ACTIONS(2619), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [43694] = 5, + ACTIONS(2514), 1, anon_sym_LBRACE, - ACTIONS(2312), 1, + ACTIONS(2621), 1, anon_sym_extends, - STATE(619), 1, + STATE(604), 1, sym_class_body, - STATE(1323), 1, + STATE(1397), 1, sym_class_heritage, - [39469] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2332), 1, - anon_sym_EQ, - ACTIONS(2343), 1, - anon_sym_COMMA, - ACTIONS(2345), 1, - anon_sym_RPAREN, - STATE(1089), 1, - aux_sym_formal_parameters_repeat1, - [39485] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_AT, - ACTIONS(2347), 1, - anon_sym_class, - STATE(800), 1, - aux_sym_export_statement_repeat1, - STATE(845), 1, - sym_decorator, - [39501] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1558), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(1823), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [39513] = 2, + [43711] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2349), 4, - sym_template_chars, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [39523] = 4, - ACTIONS(1992), 1, - sym_comment, - ACTIONS(2324), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2623), 1, anon_sym_SQUOTE, - STATE(1048), 1, + STATE(1167), 1, aux_sym_string_repeat2, - ACTIONS(2351), 2, + ACTIONS(2625), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [39537] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2353), 1, - sym_identifier, - ACTIONS(2355), 1, - sym_jsx_identifier, - STATE(1235), 1, - sym_nested_identifier, - STATE(1353), 1, - sym_jsx_namespace_name, - [39553] = 5, + [43728] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2233), 1, - anon_sym_LBRACE, - ACTIONS(2312), 1, - anon_sym_extends, - STATE(640), 1, - sym_class_body, - STATE(1186), 1, - sym_class_heritage, - [39569] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2623), 1, + anon_sym_DQUOTE, + STATE(1166), 1, + aux_sym_string_repeat1, + ACTIONS(2627), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [43745] = 5, + ACTIONS(91), 1, anon_sym_AT, - ACTIONS(2357), 1, + ACTIONS(2629), 1, anon_sym_class, - STATE(800), 1, + STATE(868), 1, aux_sym_export_statement_repeat1, - STATE(845), 1, + STATE(933), 1, sym_decorator, - [39585] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1478), 4, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_EQ, - [39595] = 4, - ACTIONS(1992), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2359), 1, - anon_sym_DQUOTE, - STATE(999), 1, - aux_sym_string_repeat1, - ACTIONS(2361), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [39609] = 2, - ACTIONS(3), 1, + [43762] = 5, + ACTIONS(2489), 1, + anon_sym_LBRACE, + ACTIONS(2621), 1, + anon_sym_extends, + STATE(478), 1, + sym_class_body, + STATE(1307), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1474), 4, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_EQ, - [39619] = 4, - ACTIONS(1992), 1, + [43779] = 5, + ACTIONS(2403), 1, + anon_sym_LPAREN, + ACTIONS(2631), 1, + sym_identifier, + ACTIONS(2633), 1, + anon_sym_STAR, + STATE(1322), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2363), 1, - anon_sym_DQUOTE, - STATE(1051), 1, - aux_sym_string_repeat1, - ACTIONS(2316), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [39633] = 4, + [43796] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2367), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2635), 1, + sym_html_character_reference, + ACTIONS(2637), 1, + anon_sym_SQUOTE, + ACTIONS(2639), 1, + sym_unescaped_single_jsx_string_fragment, + STATE(1155), 1, + aux_sym_jsx_string_repeat2, + [43815] = 5, + ACTIONS(645), 1, anon_sym_COMMA, - STATE(1027), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(2365), 2, - sym_automatic_semicolon, - anon_sym_SEMI, - [39647] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2369), 1, + ACTIONS(2603), 1, anon_sym_EQ, - ACTIONS(836), 3, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2641), 1, anon_sym_RBRACK, - [39659] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2367), 1, - anon_sym_COMMA, - STATE(1011), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(2371), 2, - sym_automatic_semicolon, - anon_sym_SEMI, - [39673] = 4, - ACTIONS(3), 1, + STATE(1253), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2367), 1, + [43832] = 4, + ACTIONS(2597), 1, anon_sym_COMMA, - STATE(1029), 1, + STATE(1159), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(2373), 2, - sym_automatic_semicolon, - anon_sym_SEMI, - [39687] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2367), 1, - anon_sym_COMMA, - STATE(1011), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(2375), 2, + ACTIONS(2643), 2, sym_automatic_semicolon, anon_sym_SEMI, - [39701] = 5, + [43847] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2294), 1, - anon_sym_LBRACE, - ACTIONS(2312), 1, - anon_sym_extends, - STATE(424), 1, - sym_class_body, - STATE(1217), 1, - sym_class_heritage, - [39717] = 5, - ACTIONS(3), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2637), 1, + anon_sym_DQUOTE, + ACTIONS(2645), 1, + sym_html_character_reference, + ACTIONS(2647), 1, + sym_unescaped_double_jsx_string_fragment, + STATE(1152), 1, + aux_sym_jsx_string_repeat1, + [43866] = 4, + ACTIONS(2649), 1, + anon_sym_EQ, + STATE(1541), 1, + sym_initializer, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2138), 1, + ACTIONS(2372), 2, + anon_sym_in, + anon_sym_of, + [43881] = 5, + ACTIONS(2403), 1, anon_sym_LPAREN, - ACTIONS(2377), 1, + ACTIONS(2651), 1, sym_identifier, - ACTIONS(2379), 1, + ACTIONS(2653), 1, anon_sym_STAR, - STATE(1242), 1, + STATE(1536), 1, sym_formal_parameters, - [39733] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2381), 1, - sym_identifier, - ACTIONS(2383), 1, - sym_jsx_identifier, - STATE(1174), 1, - sym_nested_identifier, - STATE(1367), 1, - sym_jsx_namespace_name, - [39749] = 4, - ACTIONS(1992), 1, - sym_comment, - ACTIONS(2359), 1, - anon_sym_SQUOTE, - STATE(1000), 1, - aux_sym_string_repeat2, - ACTIONS(2385), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [39763] = 5, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2233), 1, - anon_sym_LBRACE, - ACTIONS(2312), 1, - anon_sym_extends, - STATE(576), 1, - sym_class_body, - STATE(1283), 1, - sym_class_heritage, - [39779] = 5, - ACTIONS(3), 1, + [43898] = 4, + ACTIONS(1554), 1, + anon_sym_COMMA, + STATE(1175), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2312), 1, + ACTIONS(2391), 2, + sym_automatic_semicolon, + anon_sym_SEMI, + [43913] = 5, + ACTIONS(2621), 1, anon_sym_extends, - ACTIONS(2387), 1, - anon_sym_LBRACE, - STATE(290), 1, - sym_class_body, - STATE(1311), 1, - sym_class_heritage, - [39795] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2233), 1, + ACTIONS(2655), 1, anon_sym_LBRACE, - ACTIONS(2312), 1, - anon_sym_extends, - STATE(61), 1, - sym_class_body, - STATE(1295), 1, - sym_class_heritage, - [39811] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_AT, - ACTIONS(2389), 1, - anon_sym_class, - STATE(800), 1, - aux_sym_export_statement_repeat1, - STATE(845), 1, - sym_decorator, - [39827] = 5, - ACTIONS(3), 1, + STATE(320), 1, + sym_class_body, + STATE(1452), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(2393), 1, + [43930] = 4, + ACTIONS(2657), 1, anon_sym_COMMA, - ACTIONS(2395), 1, - anon_sym_RBRACE, - STATE(1108), 1, - sym_import_export_specifier, - [39843] = 5, + STATE(1149), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1627), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [43945] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2138), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2660), 1, + anon_sym_DQUOTE, + STATE(1150), 1, + aux_sym_string_repeat1, + ACTIONS(2662), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [43962] = 5, + ACTIONS(2403), 1, anon_sym_LPAREN, - ACTIONS(2397), 1, + ACTIONS(2665), 1, sym_identifier, - ACTIONS(2399), 1, + ACTIONS(2667), 1, anon_sym_STAR, - STATE(1242), 1, + STATE(1536), 1, sym_formal_parameters, - [39859] = 5, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2401), 1, - sym_identifier, - ACTIONS(2403), 1, - sym_jsx_identifier, - STATE(1189), 1, - sym_nested_identifier, - STATE(1350), 1, - sym_jsx_namespace_name, - [39875] = 5, + [43979] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2405), 1, - sym_identifier, - ACTIONS(2407), 1, - sym_jsx_identifier, - STATE(1274), 1, - sym_nested_identifier, - STATE(1354), 1, - sym_jsx_namespace_name, - [39891] = 4, - ACTIONS(3), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2669), 1, + sym_html_character_reference, + ACTIONS(2671), 1, + anon_sym_DQUOTE, + ACTIONS(2673), 1, + sym_unescaped_double_jsx_string_fragment, + STATE(1184), 1, + aux_sym_jsx_string_repeat1, + [43998] = 5, + ACTIONS(2489), 1, + anon_sym_LBRACE, + ACTIONS(2621), 1, + anon_sym_extends, + STATE(477), 1, + sym_class_body, + STATE(1535), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2409), 1, + [44015] = 5, + ACTIONS(645), 1, + anon_sym_COMMA, + ACTIONS(2603), 1, anon_sym_EQ, - STATE(1250), 1, - sym_initializer, - ACTIONS(2110), 2, - anon_sym_in, - anon_sym_of, - [39905] = 5, + ACTIONS(2675), 1, + anon_sym_RBRACK, + STATE(1244), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [44032] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2138), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2671), 1, + anon_sym_SQUOTE, + ACTIONS(2677), 1, + sym_html_character_reference, + ACTIONS(2679), 1, + sym_unescaped_single_jsx_string_fragment, + STATE(1183), 1, + aux_sym_jsx_string_repeat2, + [44051] = 5, + ACTIONS(1409), 1, anon_sym_LPAREN, - ACTIONS(2411), 1, + ACTIONS(1413), 1, + anon_sym_DOT, + ACTIONS(2681), 1, + sym_optional_chain, + STATE(600), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [44068] = 5, + ACTIONS(2403), 1, + anon_sym_LPAREN, + ACTIONS(2683), 1, sym_identifier, - ACTIONS(2413), 1, + ACTIONS(2685), 1, anon_sym_STAR, - STATE(1242), 1, + STATE(1322), 1, sym_formal_parameters, - [39921] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2415), 1, + [44085] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1583), 4, + sym_automatic_semicolon, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_EQ, + [44096] = 4, + ACTIONS(2597), 1, anon_sym_COMMA, - STATE(1044), 1, - aux_sym_array_repeat1, - ACTIONS(1499), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [39935] = 5, - ACTIONS(3), 1, + STATE(1181), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2687), 2, + sym_automatic_semicolon, + anon_sym_SEMI, + [44111] = 5, + ACTIONS(2514), 1, + anon_sym_LBRACE, + ACTIONS(2621), 1, + anon_sym_extends, + STATE(623), 1, + sym_class_body, + STATE(1372), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [44128] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2138), 1, + ACTIONS(1558), 2, anon_sym_LPAREN, - ACTIONS(2418), 1, - sym_identifier, - ACTIONS(2420), 1, - anon_sym_STAR, - STATE(1292), 1, - sym_formal_parameters, - [39951] = 4, - ACTIONS(1992), 1, + anon_sym_COLON, + ACTIONS(1989), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [44141] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(2320), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2689), 1, anon_sym_DQUOTE, - STATE(1009), 1, + STATE(1150), 1, aux_sym_string_repeat1, - ACTIONS(2422), 2, + ACTIONS(2615), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [39965] = 4, + [44158] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1558), 1, - anon_sym_COLON, - ACTIONS(1756), 1, - anon_sym_EQ, - ACTIONS(2424), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [39979] = 4, - ACTIONS(1992), 1, - sym_comment, - ACTIONS(2363), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2689), 1, anon_sym_SQUOTE, - STATE(1052), 1, + STATE(1170), 1, aux_sym_string_repeat2, - ACTIONS(2318), 2, + ACTIONS(2617), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [39993] = 5, - ACTIONS(3), 1, + [44175] = 5, + ACTIONS(2514), 1, + anon_sym_LBRACE, + ACTIONS(2621), 1, + anon_sym_extends, + STATE(70), 1, + sym_class_body, + STATE(1299), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2138), 1, + [44192] = 5, + ACTIONS(2403), 1, anon_sym_LPAREN, - ACTIONS(2426), 1, + ACTIONS(2691), 1, sym_identifier, - ACTIONS(2428), 1, + ACTIONS(2693), 1, anon_sym_STAR, - STATE(1278), 1, + STATE(1399), 1, sym_formal_parameters, - [40009] = 5, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2294), 1, - anon_sym_LBRACE, - ACTIONS(2312), 1, - anon_sym_extends, - STATE(421), 1, - sym_class_body, - STATE(1270), 1, - sym_class_heritage, - [40025] = 4, - ACTIONS(1992), 1, + [44209] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(2430), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2695), 1, anon_sym_DQUOTE, - STATE(1051), 1, + STATE(1150), 1, aux_sym_string_repeat1, - ACTIONS(2432), 2, + ACTIONS(2615), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [40039] = 4, - ACTIONS(1992), 1, + [44226] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(2435), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2695), 1, anon_sym_SQUOTE, - STATE(1052), 1, + STATE(1170), 1, aux_sym_string_repeat2, - ACTIONS(2437), 2, + ACTIONS(2617), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [40053] = 5, + [44243] = 4, + ACTIONS(2699), 1, + anon_sym_with, + STATE(1367), 1, + sym_import_attribute, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2697), 2, + sym_automatic_semicolon, + anon_sym_SEMI, + [44258] = 4, + ACTIONS(2597), 1, + anon_sym_COMMA, + STATE(1181), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2701), 2, + sym_automatic_semicolon, + anon_sym_SEMI, + [44273] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2312), 1, - anon_sym_extends, - ACTIONS(2387), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + anon_sym_SQUOTE, + STATE(1170), 1, + aux_sym_string_repeat2, + ACTIONS(2705), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [44290] = 4, + ACTIONS(2710), 1, + anon_sym_from, + STATE(1423), 1, + sym_from_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2708), 2, + sym_automatic_semicolon, + anon_sym_SEMI, + [44305] = 5, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(2712), 1, + anon_sym_class, + STATE(868), 1, + aux_sym_export_statement_repeat1, + STATE(933), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [44322] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1545), 4, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + [44333] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1541), 4, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + [44344] = 4, + ACTIONS(2714), 1, + anon_sym_COMMA, + STATE(1175), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1465), 2, + sym_automatic_semicolon, + anon_sym_SEMI, + [44359] = 5, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(2546), 1, + anon_sym_class, + STATE(868), 1, + aux_sym_export_statement_repeat1, + STATE(933), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [44376] = 5, + ACTIONS(2403), 1, + anon_sym_LPAREN, + ACTIONS(2717), 1, + sym_identifier, + ACTIONS(2719), 1, + anon_sym_STAR, + STATE(1536), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [44393] = 5, + ACTIONS(2403), 1, + anon_sym_LPAREN, + ACTIONS(2721), 1, + sym_identifier, + ACTIONS(2723), 1, + anon_sym_STAR, + STATE(1411), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [44410] = 5, + ACTIONS(2514), 1, anon_sym_LBRACE, - STATE(298), 1, + ACTIONS(2621), 1, + anon_sym_extends, + STATE(74), 1, sym_class_body, - STATE(1330), 1, + STATE(1439), 1, sym_class_heritage, - [40069] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [44427] = 4, + ACTIONS(1558), 1, + anon_sym_COLON, + ACTIONS(1947), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2725), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [44442] = 4, + ACTIONS(2729), 1, + anon_sym_COMMA, + STATE(1181), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1380), 4, + ACTIONS(2727), 2, sym_automatic_semicolon, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_EQ, - [40079] = 2, + [44457] = 4, + ACTIONS(2699), 1, + anon_sym_with, + STATE(1379), 1, + sym_import_attribute, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2732), 2, + sym_automatic_semicolon, + anon_sym_SEMI, + [44472] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1284), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [40089] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2734), 1, + sym_html_character_reference, + ACTIONS(2737), 1, + anon_sym_SQUOTE, + ACTIONS(2739), 1, + sym_unescaped_single_jsx_string_fragment, + STATE(1183), 1, + aux_sym_jsx_string_repeat2, + [44491] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2233), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2742), 1, + sym_html_character_reference, + ACTIONS(2745), 1, + anon_sym_DQUOTE, + ACTIONS(2747), 1, + sym_unescaped_double_jsx_string_fragment, + STATE(1184), 1, + aux_sym_jsx_string_repeat1, + [44510] = 5, + ACTIONS(2514), 1, anon_sym_LBRACE, - ACTIONS(2312), 1, + ACTIONS(2621), 1, anon_sym_extends, - STATE(58), 1, + STATE(648), 1, sym_class_body, - STATE(1267), 1, + STATE(1366), 1, sym_class_heritage, - [40105] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1109), 1, - anon_sym_LBRACE, - ACTIONS(2440), 1, - anon_sym_STAR, - STATE(1345), 2, - sym_namespace_import_export, - sym_named_imports, - [40119] = 5, - ACTIONS(3), 1, + [44527] = 5, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(2750), 1, + anon_sym_class, + STATE(868), 1, + aux_sym_export_statement_repeat1, + STATE(933), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2138), 1, + [44544] = 5, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(2442), 1, - sym_identifier, - ACTIONS(2444), 1, - anon_sym_STAR, - STATE(1292), 1, - sym_formal_parameters, - [40135] = 4, - ACTIONS(1992), 1, + ACTIONS(1218), 1, + anon_sym_DOT, + ACTIONS(2752), 1, + sym_optional_chain, + STATE(487), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [44561] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(2446), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2754), 1, anon_sym_DQUOTE, - STATE(1066), 1, + STATE(1197), 1, aux_sym_string_repeat1, - ACTIONS(2448), 2, + ACTIONS(2756), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [40149] = 4, - ACTIONS(3), 1, + [44578] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2452), 1, + ACTIONS(2758), 4, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_from, - STATE(1192), 1, - sym_from_clause, - ACTIONS(2450), 2, - sym_automatic_semicolon, - anon_sym_SEMI, - [40163] = 4, - ACTIONS(1992), 1, + [44589] = 3, + ACTIONS(2760), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(893), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + [44602] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(2446), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2762), 1, anon_sym_SQUOTE, - STATE(1064), 1, + STATE(1133), 1, aux_sym_string_repeat2, - ACTIONS(2454), 2, + ACTIONS(2764), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [40177] = 2, + [44619] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1520), 4, - sym_automatic_semicolon, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_EQ, - [40187] = 5, - ACTIONS(3), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2762), 1, + anon_sym_DQUOTE, + STATE(1132), 1, + aux_sym_string_repeat1, + ACTIONS(2766), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [44636] = 5, + ACTIONS(2621), 1, + anon_sym_extends, + ACTIONS(2655), 1, + anon_sym_LBRACE, + STATE(317), 1, + sym_class_body, + STATE(1418), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(606), 1, - anon_sym_COMMA, - ACTIONS(2332), 1, - anon_sym_EQ, - ACTIONS(2456), 1, - anon_sym_RBRACK, - STATE(1152), 1, - aux_sym_array_pattern_repeat1, - [40203] = 4, - ACTIONS(1992), 1, + [44653] = 5, + ACTIONS(2514), 1, + anon_sym_LBRACE, + ACTIONS(2621), 1, + anon_sym_extends, + STATE(652), 1, + sym_class_body, + STATE(1350), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [44670] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(2458), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2768), 1, anon_sym_SQUOTE, - STATE(1052), 1, + STATE(1170), 1, aux_sym_string_repeat2, - ACTIONS(2318), 2, + ACTIONS(2617), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [40217] = 5, - ACTIONS(3), 1, + [44687] = 5, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(2518), 1, + anon_sym_class, + STATE(868), 1, + aux_sym_export_statement_repeat1, + STATE(933), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2138), 1, - anon_sym_LPAREN, - ACTIONS(2460), 1, - sym_identifier, - ACTIONS(2462), 1, - anon_sym_STAR, - STATE(1249), 1, - sym_formal_parameters, - [40233] = 4, - ACTIONS(1992), 1, + [44704] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(2458), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2768), 1, anon_sym_DQUOTE, - STATE(1051), 1, + STATE(1150), 1, aux_sym_string_repeat1, - ACTIONS(2316), 2, + ACTIONS(2615), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [40247] = 5, + [44721] = 4, + ACTIONS(2241), 1, + anon_sym_STAR, + ACTIONS(2243), 1, + anon_sym_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1597), 2, + sym_namespace_import, + sym_named_imports, + [44736] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2770), 4, + sym_template_chars, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [44747] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(2464), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2754), 1, + anon_sym_SQUOTE, + STATE(1195), 1, + aux_sym_string_repeat2, + ACTIONS(2772), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [44764] = 4, + ACTIONS(1859), 1, + anon_sym_DQUOTE, + ACTIONS(1861), 1, + anon_sym_SQUOTE, + STATE(1213), 1, + sym_string, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [44778] = 4, + ACTIONS(675), 1, + anon_sym_COMMA, + ACTIONS(1663), 1, + anon_sym_RPAREN, + STATE(1208), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [44792] = 4, + ACTIONS(2774), 1, anon_sym_COMMA, - ACTIONS(2466), 1, + ACTIONS(2776), 1, anon_sym_RBRACE, - STATE(1122), 1, - sym_import_export_specifier, - [40263] = 4, - ACTIONS(3), 1, + STATE(1230), 1, + aux_sym_export_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2138), 1, - anon_sym_LPAREN, - ACTIONS(2468), 1, - sym_identifier, - STATE(1281), 1, - sym_formal_parameters, - [40276] = 4, - ACTIONS(3), 1, + [44806] = 3, + ACTIONS(2778), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(637), 1, + ACTIONS(2780), 2, anon_sym_COMMA, - ACTIONS(2470), 1, + anon_sym_RBRACE, + [44818] = 3, + ACTIONS(2758), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2782), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [44830] = 4, + ACTIONS(675), 1, + anon_sym_COMMA, + ACTIONS(2784), 1, anon_sym_RPAREN, - STATE(1044), 1, + STATE(1149), 1, aux_sym_array_repeat1, - [40289] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1970), 1, - anon_sym_COLON, - ACTIONS(1978), 1, - anon_sym_DOT, - ACTIONS(2472), 1, - anon_sym_GT, - [40302] = 2, - ACTIONS(1992), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1356), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [40311] = 2, - ACTIONS(3), 1, + [44844] = 3, + ACTIONS(2786), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2288), 3, + ACTIONS(2788), 2, sym_automatic_semicolon, anon_sym_SEMI, + [44856] = 4, + ACTIONS(675), 1, anon_sym_COMMA, - [40320] = 2, - ACTIONS(1992), 1, + ACTIONS(2790), 1, + anon_sym_RPAREN, + STATE(1149), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1356), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [40329] = 2, - ACTIONS(1992), 1, + [44870] = 4, + ACTIONS(917), 1, + anon_sym_while, + ACTIONS(2792), 1, + anon_sym_else, + STATE(395), 1, + sym_else_clause, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1356), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [40338] = 2, - ACTIONS(1992), 1, + [44884] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1356), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [40347] = 2, - ACTIONS(1992), 1, + ACTIONS(2794), 3, + sym_automatic_semicolon, + anon_sym_SEMI, + anon_sym_from, + [44894] = 3, + ACTIONS(2603), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1366), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [40356] = 2, - ACTIONS(1992), 1, + ACTIONS(2796), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [44906] = 4, + ACTIONS(2798), 1, + anon_sym_COMMA, + ACTIONS(2800), 1, + anon_sym_RBRACE, + STATE(1245), 1, + aux_sym_named_imports_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1370), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [40365] = 4, - ACTIONS(3), 1, + [44920] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2474), 1, - sym_identifier, - STATE(788), 1, - sym_decorator_member_expression, - STATE(847), 1, - sym_decorator_call_expression, - [40378] = 3, - ACTIONS(3), 1, + ACTIONS(2802), 3, + sym_automatic_semicolon, + anon_sym_SEMI, + anon_sym_with, + [44930] = 4, + ACTIONS(2796), 1, + anon_sym_RBRACK, + ACTIONS(2804), 1, + anon_sym_COMMA, + STATE(1214), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2476), 1, - anon_sym_EQ, - ACTIONS(1089), 2, - anon_sym_in, - anon_sym_of, - [40389] = 3, - ACTIONS(3), 1, + [44944] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2478), 1, - sym_identifier, - ACTIONS(2480), 2, + ACTIONS(2807), 3, sym_automatic_semicolon, anon_sym_SEMI, - [40400] = 3, - ACTIONS(3), 1, + anon_sym_from, + [44954] = 4, + ACTIONS(2599), 1, + anon_sym_COMMA, + ACTIONS(2601), 1, + anon_sym_RPAREN, + STATE(1279), 1, + aux_sym_formal_parameters_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2482), 1, - sym_identifier, - ACTIONS(2484), 2, + [44968] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2727), 3, sym_automatic_semicolon, anon_sym_SEMI, - [40411] = 4, - ACTIONS(3), 1, + anon_sym_COMMA, + [44978] = 4, + ACTIONS(1891), 1, + anon_sym_COMMA, + ACTIONS(2587), 1, + anon_sym_RBRACE, + STATE(1241), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(606), 1, + [44992] = 4, + ACTIONS(675), 1, anon_sym_COMMA, - ACTIONS(2334), 1, - anon_sym_RBRACK, - STATE(1116), 1, - aux_sym_array_pattern_repeat1, - [40424] = 4, - ACTIONS(3), 1, + ACTIONS(2809), 1, + anon_sym_RPAREN, + STATE(1149), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [45006] = 4, + ACTIONS(2257), 1, + anon_sym_COLON, + ACTIONS(2263), 1, + anon_sym_DOT, + ACTIONS(2811), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [45020] = 4, + ACTIONS(2257), 1, + anon_sym_COLON, + ACTIONS(2263), 1, + anon_sym_DOT, + ACTIONS(2813), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(637), 1, + [45034] = 4, + ACTIONS(675), 1, anon_sym_COMMA, - ACTIONS(1501), 1, - anon_sym_RBRACK, - STATE(1112), 1, + ACTIONS(1625), 1, + anon_sym_RPAREN, + STATE(1149), 1, aux_sym_array_repeat1, - [40437] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2486), 1, - anon_sym_LPAREN, - ACTIONS(2488), 1, - anon_sym_await, - STATE(39), 1, - sym_for_header, - [40450] = 4, - ACTIONS(3), 1, + [45048] = 4, + ACTIONS(675), 1, + anon_sym_COMMA, + ACTIONS(1625), 1, + anon_sym_RPAREN, + STATE(1219), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [45062] = 4, + ACTIONS(1831), 1, + anon_sym_COMMA, + ACTIONS(2815), 1, + anon_sym_RBRACE, + STATE(1239), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [45076] = 3, + ACTIONS(2760), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1208), 2, + anon_sym_in, + anon_sym_of, + [45088] = 3, + ACTIONS(1523), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2138), 1, + ACTIONS(1558), 2, anon_sym_LPAREN, - ACTIONS(2490), 1, - sym_identifier, - STATE(1333), 1, - sym_formal_parameters, - [40463] = 2, - ACTIONS(3), 1, + anon_sym_COLON, + [45100] = 4, + ACTIONS(2817), 1, + anon_sym_COMMA, + ACTIONS(2820), 1, + anon_sym_RBRACE, + STATE(1227), 1, + aux_sym_export_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [45114] = 4, + ACTIONS(2257), 1, + anon_sym_COLON, + ACTIONS(2263), 1, + anon_sym_DOT, + ACTIONS(2822), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2338), 3, + [45128] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2824), 3, sym_automatic_semicolon, anon_sym_SEMI, + anon_sym_from, + [45138] = 4, + ACTIONS(2366), 1, + anon_sym_RBRACE, + ACTIONS(2826), 1, anon_sym_COMMA, - [40472] = 4, - ACTIONS(3), 1, + STATE(1227), 1, + aux_sym_export_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [45152] = 3, + ACTIONS(2510), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2138), 1, + ACTIONS(1208), 2, + anon_sym_in, + anon_sym_of, + [45164] = 4, + ACTIONS(2403), 1, anon_sym_LPAREN, - ACTIONS(2492), 1, - sym_identifier, - STATE(1286), 1, + ACTIONS(2828), 1, + anon_sym_COLON, + STATE(1398), 1, sym_formal_parameters, - [40485] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2452), 1, - anon_sym_from, - ACTIONS(2494), 1, - anon_sym_as, - STATE(1192), 1, - sym_from_clause, - [40498] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(647), 1, - anon_sym_RPAREN, - ACTIONS(2496), 1, - anon_sym_COMMA, - STATE(1154), 1, - aux_sym_formal_parameters_repeat1, - [40511] = 4, - ACTIONS(3), 1, + [45178] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2138), 1, + ACTIONS(1627), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [45188] = 4, + ACTIONS(2403), 1, anon_sym_LPAREN, - ACTIONS(2498), 1, + ACTIONS(2830), 1, sym_identifier, - STATE(1198), 1, + STATE(1308), 1, sym_formal_parameters, - [40524] = 2, - ACTIONS(1992), 1, - sym_comment, - ACTIONS(2500), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [40533] = 2, - ACTIONS(1992), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2500), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [40542] = 4, - ACTIONS(3), 1, + [45202] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(637), 1, + ACTIONS(2832), 3, + sym_automatic_semicolon, + anon_sym_SEMI, + anon_sym_from, + [45212] = 4, + ACTIONS(675), 1, anon_sym_COMMA, - ACTIONS(1497), 1, + ACTIONS(1677), 1, anon_sym_RPAREN, - STATE(1095), 1, + STATE(1149), 1, aux_sym_array_repeat1, - [40555] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(637), 1, + [45226] = 4, + ACTIONS(1831), 1, anon_sym_COMMA, - ACTIONS(1497), 1, - anon_sym_RPAREN, - STATE(1044), 1, - aux_sym_array_repeat1, - [40568] = 4, - ACTIONS(3), 1, + ACTIONS(2834), 1, + anon_sym_RBRACE, + STATE(1266), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(637), 1, + [45240] = 4, + ACTIONS(675), 1, anon_sym_COMMA, - ACTIONS(2502), 1, + ACTIONS(1677), 1, anon_sym_RPAREN, - STATE(1044), 1, + STATE(1206), 1, aux_sym_array_repeat1, - [40581] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1970), 1, - anon_sym_COLON, - ACTIONS(1978), 1, - anon_sym_DOT, - ACTIONS(2504), 1, - anon_sym_GT, - [40594] = 4, - ACTIONS(3), 1, + [45254] = 4, + ACTIONS(1831), 1, + anon_sym_COMMA, + ACTIONS(2836), 1, + anon_sym_RBRACE, + STATE(1266), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2343), 1, + [45268] = 4, + ACTIONS(675), 1, anon_sym_COMMA, - ACTIONS(2345), 1, + ACTIONS(1663), 1, anon_sym_RPAREN, - STATE(1089), 1, - aux_sym_formal_parameters_repeat1, - [40607] = 4, - ACTIONS(3), 1, + STATE(1149), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1728), 1, + [45282] = 4, + ACTIONS(1891), 1, anon_sym_COMMA, - ACTIONS(2270), 1, + ACTIONS(2838), 1, anon_sym_RBRACE, - STATE(1142), 1, + STATE(1264), 1, aux_sym_object_pattern_repeat1, - [40620] = 2, - ACTIONS(1992), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2500), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [40629] = 4, - ACTIONS(3), 1, + [45296] = 3, + ACTIONS(2603), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2506), 1, - anon_sym_LBRACE, - ACTIONS(2508), 1, + ACTIONS(2840), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [45308] = 4, + ACTIONS(2842), 1, anon_sym_LPAREN, - STATE(294), 1, - sym_statement_block, - [40642] = 2, - ACTIONS(1992), 1, + ACTIONS(2844), 1, + anon_sym_await, + STATE(51), 1, + sym_for_header, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2500), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [40651] = 4, - ACTIONS(3), 1, + [45322] = 4, + ACTIONS(645), 1, + anon_sym_COMMA, + ACTIONS(2846), 1, + anon_sym_RBRACK, + STATE(1214), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [45336] = 4, + ACTIONS(2395), 1, + anon_sym_RBRACE, + ACTIONS(2848), 1, + anon_sym_COMMA, + STATE(1262), 1, + aux_sym_named_imports_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1970), 1, + [45350] = 4, + ACTIONS(2257), 1, anon_sym_COLON, - ACTIONS(1978), 1, + ACTIONS(2263), 1, anon_sym_DOT, - ACTIONS(2510), 1, + ACTIONS(2850), 1, anon_sym_GT, - [40664] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1113), 1, - anon_sym_DQUOTE, - ACTIONS(1115), 1, - anon_sym_SQUOTE, - STATE(1197), 1, - sym_string, - [40677] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2512), 1, + [45364] = 4, + ACTIONS(1831), 1, anon_sym_COMMA, - ACTIONS(2514), 1, + ACTIONS(2815), 1, anon_sym_RBRACE, - STATE(1137), 1, + STATE(1266), 1, aux_sym_object_repeat1, - [40690] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2516), 3, - sym_automatic_semicolon, - anon_sym_SEMI, - anon_sym_from, - [40699] = 4, - ACTIONS(3), 1, + [45378] = 4, + ACTIONS(2403), 1, + anon_sym_LPAREN, + ACTIONS(2852), 1, + sym_identifier, + STATE(1308), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2518), 1, + [45392] = 4, + ACTIONS(2403), 1, anon_sym_LPAREN, - ACTIONS(2520), 1, - anon_sym_await, - STATE(40), 1, - sym_for_header, - [40712] = 3, - ACTIONS(3), 1, + ACTIONS(2854), 1, + sym_identifier, + STATE(1318), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2524), 1, - anon_sym_as, - ACTIONS(2522), 2, + [45406] = 4, + ACTIONS(1891), 1, anon_sym_COMMA, + ACTIONS(2578), 1, anon_sym_RBRACE, - [40723] = 4, - ACTIONS(3), 1, + STATE(1273), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2526), 1, + [45420] = 4, + ACTIONS(1831), 1, anon_sym_COMMA, - ACTIONS(2528), 1, + ACTIONS(2856), 1, anon_sym_RBRACE, - STATE(1167), 1, - aux_sym_export_clause_repeat1, - [40736] = 2, - ACTIONS(3), 1, + STATE(1275), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [45434] = 4, + ACTIONS(2858), 1, + anon_sym_LPAREN, + ACTIONS(2860), 1, + anon_sym_await, + STATE(44), 1, + sym_for_header, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1499), 3, + [45448] = 4, + ACTIONS(645), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2862), 1, anon_sym_RBRACK, - [40745] = 3, - ACTIONS(3), 1, + STATE(1214), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2332), 1, - anon_sym_EQ, - ACTIONS(2530), 2, + [45462] = 4, + ACTIONS(675), 1, anon_sym_COMMA, + ACTIONS(2864), 1, anon_sym_RBRACK, - [40756] = 4, - ACTIONS(3), 1, + STATE(1149), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2138), 1, + [45476] = 4, + ACTIONS(2403), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2866), 1, anon_sym_COLON, - STATE(1178), 1, + STATE(1398), 1, sym_formal_parameters, - [40769] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(637), 1, + [45490] = 4, + ACTIONS(1831), 1, anon_sym_COMMA, - ACTIONS(2534), 1, - anon_sym_RBRACK, - STATE(1044), 1, - aux_sym_array_repeat1, - [40782] = 4, - ACTIONS(3), 1, + ACTIONS(2856), 1, + anon_sym_RBRACE, + STATE(1266), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1728), 1, + [45504] = 4, + ACTIONS(1891), 1, anon_sym_COMMA, - ACTIONS(2260), 1, + ACTIONS(2578), 1, anon_sym_RBRACE, - STATE(1147), 1, + STATE(1264), 1, aux_sym_object_pattern_repeat1, - [40795] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2512), 1, + [45518] = 4, + ACTIONS(1891), 1, anon_sym_COMMA, - ACTIONS(2536), 1, + ACTIONS(2587), 1, anon_sym_RBRACE, - STATE(1146), 1, - aux_sym_object_repeat1, - [40808] = 4, - ACTIONS(3), 1, + STATE(1264), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1823), 1, - anon_sym_RBRACE, - ACTIONS(2538), 1, + [45532] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2526), 3, + sym_automatic_semicolon, + anon_sym_SEMI, anon_sym_COMMA, - STATE(1115), 1, - aux_sym_object_repeat1, - [40821] = 4, - ACTIONS(3), 1, + [45542] = 4, + ACTIONS(2710), 1, + anon_sym_from, + ACTIONS(2868), 1, + anon_sym_as, + STATE(1423), 1, + sym_from_clause, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(606), 1, + [45556] = 4, + ACTIONS(645), 1, anon_sym_COMMA, - ACTIONS(2541), 1, + ACTIONS(2675), 1, anon_sym_RBRACK, - STATE(1170), 1, + STATE(1214), 1, aux_sym_array_pattern_repeat1, - [40834] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2512), 1, + [45570] = 4, + ACTIONS(2870), 1, anon_sym_COMMA, - ACTIONS(2536), 1, + ACTIONS(2873), 1, anon_sym_RBRACE, - STATE(1115), 1, - aux_sym_object_repeat1, - [40847] = 4, - ACTIONS(3), 1, + STATE(1262), 1, + aux_sym_named_imports_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1728), 1, - anon_sym_COMMA, - ACTIONS(2260), 1, + [45584] = 3, + ACTIONS(2875), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2877), 2, + sym_automatic_semicolon, + anon_sym_SEMI, + [45596] = 4, + ACTIONS(2725), 1, anon_sym_RBRACE, - STATE(1119), 1, + ACTIONS(2879), 1, + anon_sym_COMMA, + STATE(1264), 1, aux_sym_object_pattern_repeat1, - [40860] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [45610] = 4, + ACTIONS(675), 1, + anon_sym_COMMA, + ACTIONS(1687), 1, + anon_sym_RBRACK, + STATE(1149), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2424), 1, + [45624] = 4, + ACTIONS(1989), 1, anon_sym_RBRACE, - ACTIONS(2543), 1, + ACTIONS(2882), 1, anon_sym_COMMA, - STATE(1119), 1, - aux_sym_object_pattern_repeat1, - [40873] = 4, - ACTIONS(3), 1, + STATE(1266), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2391), 1, + [45638] = 3, + ACTIONS(2501), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2499), 2, sym_identifier, - ACTIONS(2546), 1, - anon_sym_RBRACE, - STATE(1299), 1, - sym_import_export_specifier, - [40886] = 2, - ACTIONS(1992), 1, + sym_private_property_identifier, + [45650] = 4, + ACTIONS(2885), 1, + anon_sym_COMMA, + ACTIONS(2888), 1, + anon_sym_RPAREN, + STATE(1268), 1, + aux_sym_formal_parameters_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2548), 3, + [45664] = 4, + ACTIONS(2890), 1, anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [40895] = 4, - ACTIONS(3), 1, + ACTIONS(2892), 1, + anon_sym_LPAREN, + STATE(330), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2550), 1, + [45678] = 3, + ACTIONS(2603), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2888), 2, anon_sym_COMMA, - ACTIONS(2552), 1, + anon_sym_RPAREN, + [45690] = 4, + ACTIONS(2894), 1, + sym_identifier, + STATE(835), 1, + sym_decorator_member_expression, + STATE(926), 1, + sym_decorator_call_expression, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [45704] = 3, + ACTIONS(2896), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2245), 2, + anon_sym_LPAREN, + sym_optional_chain, + [45716] = 4, + ACTIONS(1891), 1, + anon_sym_COMMA, + ACTIONS(2898), 1, anon_sym_RBRACE, - STATE(1138), 1, - aux_sym_export_clause_repeat1, - [40908] = 4, - ACTIONS(3), 1, + STATE(1264), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [45730] = 4, + ACTIONS(1831), 1, + anon_sym_COMMA, + ACTIONS(1969), 1, + anon_sym_RBRACE, + STATE(1266), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [45744] = 4, + ACTIONS(1831), 1, + anon_sym_COMMA, + ACTIONS(2900), 1, + anon_sym_RBRACE, + STATE(1266), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [45758] = 4, + ACTIONS(1831), 1, + anon_sym_COMMA, + ACTIONS(1969), 1, + anon_sym_RBRACE, + STATE(1237), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2138), 1, + [45772] = 4, + ACTIONS(2403), 1, anon_sym_LPAREN, - ACTIONS(2554), 1, - anon_sym_COLON, - STATE(1178), 1, + ACTIONS(2902), 1, + sym_identifier, + STATE(1370), 1, sym_formal_parameters, - [40921] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2391), 1, + [45786] = 4, + ACTIONS(2403), 1, + anon_sym_LPAREN, + ACTIONS(2904), 1, sym_identifier, - ACTIONS(2556), 1, - anon_sym_RBRACE, - STATE(1299), 1, - sym_import_export_specifier, - [40934] = 4, - ACTIONS(3), 1, + STATE(1318), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [45800] = 4, + ACTIONS(687), 1, + anon_sym_RPAREN, + ACTIONS(2906), 1, + anon_sym_COMMA, + STATE(1268), 1, + aux_sym_formal_parameters_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [45814] = 4, + ACTIONS(675), 1, + anon_sym_COMMA, + ACTIONS(2908), 1, + anon_sym_RBRACK, + STATE(1149), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [45828] = 4, + ACTIONS(2403), 1, + anon_sym_LPAREN, + ACTIONS(2910), 1, + sym_identifier, + STATE(1308), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(606), 1, + [45842] = 4, + ACTIONS(645), 1, anon_sym_COMMA, - ACTIONS(2456), 1, + ACTIONS(2641), 1, anon_sym_RBRACK, - STATE(1152), 1, + STATE(1214), 1, aux_sym_array_pattern_repeat1, - [40947] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(867), 1, - anon_sym_while, - ACTIONS(2558), 1, - anon_sym_else, - STATE(352), 1, - sym_else_clause, - [40960] = 4, - ACTIONS(3), 1, + [45856] = 3, + ACTIONS(2912), 1, + sym_automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(637), 1, + ACTIONS(2372), 2, + anon_sym_in, + anon_sym_of, + [45868] = 4, + ACTIONS(675), 1, anon_sym_COMMA, - ACTIONS(1491), 1, + ACTIONS(1687), 1, anon_sym_RBRACK, - STATE(1151), 1, + STATE(1280), 1, aux_sym_array_repeat1, - [40973] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2138), 1, + [45882] = 4, + ACTIONS(2403), 1, anon_sym_LPAREN, - ACTIONS(2560), 1, + ACTIONS(2914), 1, sym_identifier, - STATE(1281), 1, + STATE(1318), 1, sym_formal_parameters, - [40986] = 2, - ACTIONS(1992), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1242), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [40995] = 2, - ACTIONS(1992), 1, + [45896] = 4, + ACTIONS(645), 1, + anon_sym_COMMA, + ACTIONS(2675), 1, + anon_sym_RBRACK, + STATE(1244), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2296), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [41004] = 4, - ACTIONS(3), 1, + [45910] = 3, + ACTIONS(2576), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(637), 1, + ACTIONS(2574), 2, + sym_identifier, + sym_private_property_identifier, + [45922] = 4, + ACTIONS(675), 1, anon_sym_COMMA, - ACTIONS(1501), 1, + ACTIONS(1673), 1, anon_sym_RBRACK, - STATE(1044), 1, + STATE(1149), 1, aux_sym_array_repeat1, - [41017] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [45936] = 4, + ACTIONS(2403), 1, + anon_sym_LPAREN, + ACTIONS(2916), 1, + sym_identifier, + STATE(1396), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(637), 1, + [45950] = 4, + ACTIONS(675), 1, anon_sym_COMMA, - ACTIONS(1491), 1, + ACTIONS(1673), 1, anon_sym_RBRACK, - STATE(1044), 1, + STATE(1254), 1, aux_sym_array_repeat1, - [41030] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(606), 1, + [45964] = 4, + ACTIONS(645), 1, anon_sym_COMMA, - ACTIONS(2456), 1, + ACTIONS(2641), 1, anon_sym_RBRACK, - STATE(1170), 1, + STATE(1253), 1, aux_sym_array_pattern_repeat1, - [41043] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(606), 1, - anon_sym_COMMA, - ACTIONS(2334), 1, - anon_sym_RBRACK, - STATE(1170), 1, - aux_sym_array_pattern_repeat1, - [41056] = 3, - ACTIONS(3), 1, + [45978] = 3, + ACTIONS(2247), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2332), 1, - anon_sym_EQ, - ACTIONS(2562), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [41067] = 2, - ACTIONS(3), 1, + ACTIONS(2245), 2, + anon_sym_LPAREN, + sym_optional_chain, + [45990] = 3, + ACTIONS(2403), 1, + anon_sym_LPAREN, + STATE(1355), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [46001] = 3, + ACTIONS(2403), 1, + anon_sym_LPAREN, + STATE(1364), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [46012] = 3, + ACTIONS(2890), 1, + anon_sym_LBRACE, + STATE(333), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2564), 3, + [46023] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1560), 2, sym_automatic_semicolon, anon_sym_SEMI, - anon_sym_from, - [41076] = 4, - ACTIONS(3), 1, + [46032] = 3, + ACTIONS(2918), 1, + anon_sym_LPAREN, + STATE(26), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2512), 1, - anon_sym_COMMA, - ACTIONS(2566), 1, - anon_sym_RBRACE, - STATE(1115), 1, - aux_sym_object_repeat1, - [41089] = 4, - ACTIONS(3), 1, + [46043] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2556), 1, - anon_sym_RBRACE, - ACTIONS(2568), 1, - anon_sym_COMMA, - STATE(1164), 1, - aux_sym_export_clause_repeat1, - [41102] = 4, - ACTIONS(3), 1, + ACTIONS(2920), 2, + sym_automatic_semicolon, + anon_sym_SEMI, + [46052] = 3, + ACTIONS(2514), 1, + anon_sym_LBRACE, + STATE(69), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [46063] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1552), 2, + sym_automatic_semicolon, + anon_sym_SEMI, + [46072] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2922), 2, + sym_automatic_semicolon, + anon_sym_SEMI, + [46081] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2924), 2, + sym_automatic_semicolon, + anon_sym_SEMI, + [46090] = 3, + ACTIONS(2918), 1, + anon_sym_LPAREN, + STATE(42), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [46101] = 3, + ACTIONS(2403), 1, + anon_sym_LPAREN, + STATE(1429), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [46112] = 3, + ACTIONS(2263), 1, + anon_sym_DOT, + ACTIONS(2813), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [46123] = 3, + ACTIONS(2403), 1, + anon_sym_LPAREN, + STATE(1542), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [46134] = 3, + ACTIONS(2489), 1, + anon_sym_LBRACE, + STATE(484), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [46145] = 3, + ACTIONS(2926), 1, + anon_sym_LBRACE, + STATE(612), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [46156] = 3, + ACTIONS(2403), 1, + anon_sym_LPAREN, + STATE(1540), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [46167] = 3, + ACTIONS(2926), 1, + anon_sym_LBRACE, + STATE(75), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [46178] = 3, + ACTIONS(2918), 1, + anon_sym_LPAREN, + STATE(1403), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [46189] = 3, + ACTIONS(2890), 1, + anon_sym_LBRACE, + STATE(873), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [46200] = 3, + ACTIONS(2890), 1, + anon_sym_LBRACE, + STATE(870), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [46211] = 3, + ACTIONS(2928), 1, + anon_sym_LBRACE, + STATE(482), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [46222] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2930), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [46231] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(637), 1, + ACTIONS(2888), 2, anon_sym_COMMA, - ACTIONS(2570), 1, anon_sym_RPAREN, - STATE(1044), 1, - aux_sym_array_repeat1, - [41115] = 4, - ACTIONS(3), 1, + [46240] = 3, + ACTIONS(2403), 1, + anon_sym_LPAREN, + STATE(1534), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [46251] = 3, + ACTIONS(2926), 1, + anon_sym_LBRACE, + STATE(607), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [46262] = 3, + ACTIONS(2514), 1, + anon_sym_LBRACE, + STATE(560), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2138), 1, + [46273] = 3, + ACTIONS(2403), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, - sym_identifier, - STATE(1198), 1, + STATE(1310), 1, sym_formal_parameters, - [41128] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2256), 1, - anon_sym_LBRACK, - ACTIONS(2254), 2, + [46284] = 3, + ACTIONS(2890), 1, + anon_sym_LBRACE, + STATE(860), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [46295] = 3, + ACTIONS(2926), 1, + anon_sym_LBRACE, + STATE(561), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [46306] = 3, + ACTIONS(2890), 1, + anon_sym_LBRACE, + STATE(859), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [46317] = 3, + ACTIONS(2932), 1, sym_identifier, - sym_private_property_identifier, - [41139] = 4, - ACTIONS(3), 1, + ACTIONS(2934), 1, + sym_jsx_identifier, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1728), 1, - anon_sym_COMMA, - ACTIONS(2574), 1, - anon_sym_RBRACE, - STATE(1119), 1, - aux_sym_object_pattern_repeat1, - [41152] = 4, - ACTIONS(3), 1, + [46328] = 3, + ACTIONS(2918), 1, + anon_sym_LPAREN, + STATE(33), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2512), 1, - anon_sym_COMMA, - ACTIONS(2514), 1, - anon_sym_RBRACE, - STATE(1115), 1, - aux_sym_object_repeat1, - [41165] = 3, - ACTIONS(3), 1, + [46339] = 3, + ACTIONS(1957), 1, + anon_sym_LBRACE, + STATE(845), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2262), 1, - anon_sym_EQ, - ACTIONS(1089), 2, - anon_sym_in, - anon_sym_of, - [41176] = 2, - ACTIONS(1992), 1, + [46350] = 3, + ACTIONS(1957), 1, + anon_sym_LBRACE, + STATE(844), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2272), 3, + [46361] = 3, + ACTIONS(1957), 1, anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [41185] = 4, - ACTIONS(3), 1, + STATE(859), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2512), 1, - anon_sym_COMMA, - ACTIONS(2576), 1, - anon_sym_RBRACE, - STATE(1115), 1, - aux_sym_object_repeat1, - [41198] = 4, - ACTIONS(3), 1, + [46372] = 3, + ACTIONS(1957), 1, + anon_sym_LBRACE, + STATE(860), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1728), 1, - anon_sym_COMMA, - ACTIONS(2578), 1, - anon_sym_RBRACE, - STATE(1119), 1, - aux_sym_object_pattern_repeat1, - [41211] = 3, - ACTIONS(3), 1, + [46383] = 3, + ACTIONS(1957), 1, + anon_sym_LBRACE, + STATE(870), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2332), 1, - anon_sym_EQ, - ACTIONS(2580), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [41222] = 2, - ACTIONS(1992), 1, + [46394] = 3, + ACTIONS(1957), 1, + anon_sym_LBRACE, + STATE(873), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [46405] = 3, + ACTIONS(2926), 1, + anon_sym_LBRACE, + STATE(654), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [46416] = 3, + ACTIONS(1957), 1, + anon_sym_LBRACE, + STATE(848), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [46427] = 3, + ACTIONS(1957), 1, + anon_sym_LBRACE, + STATE(849), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [46438] = 3, + ACTIONS(1957), 1, + anon_sym_LBRACE, + STATE(850), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [46449] = 3, + ACTIONS(1957), 1, + anon_sym_LBRACE, + STATE(851), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [46460] = 3, + ACTIONS(1957), 1, + anon_sym_LBRACE, + STATE(852), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [46471] = 3, + ACTIONS(1957), 1, + anon_sym_LBRACE, + STATE(854), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1294), 3, + [46482] = 3, + ACTIONS(2257), 1, + anon_sym_COLON, + ACTIONS(2811), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [46493] = 3, + ACTIONS(1957), 1, anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [41231] = 4, - ACTIONS(3), 1, + STATE(855), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1970), 1, - anon_sym_COLON, - ACTIONS(1978), 1, + [46504] = 3, + ACTIONS(2263), 1, anon_sym_DOT, - ACTIONS(2582), 1, + ACTIONS(2811), 1, anon_sym_GT, - [41244] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(637), 1, - anon_sym_COMMA, - ACTIONS(2584), 1, - anon_sym_RBRACK, - STATE(1044), 1, - aux_sym_array_repeat1, - [41257] = 4, - ACTIONS(3), 1, + [46515] = 3, + ACTIONS(2890), 1, + anon_sym_LBRACE, + STATE(844), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(606), 1, - anon_sym_COMMA, - ACTIONS(2586), 1, - anon_sym_RBRACK, - STATE(1170), 1, - aux_sym_array_pattern_repeat1, - [41270] = 4, - ACTIONS(3), 1, + [46526] = 3, + ACTIONS(1957), 1, + anon_sym_LBRACE, + STATE(842), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1728), 1, - anon_sym_COMMA, - ACTIONS(2270), 1, - anon_sym_RBRACE, - STATE(1119), 1, - aux_sym_object_pattern_repeat1, - [41283] = 4, - ACTIONS(3), 1, + [46537] = 3, + ACTIONS(1957), 1, + anon_sym_LBRACE, + STATE(857), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2580), 1, - anon_sym_RPAREN, - ACTIONS(2588), 1, - anon_sym_COMMA, - STATE(1154), 1, - aux_sym_formal_parameters_repeat1, - [41296] = 4, - ACTIONS(3), 1, + [46548] = 3, + ACTIONS(1957), 1, + anon_sym_LBRACE, + STATE(858), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2138), 1, - anon_sym_LPAREN, - ACTIONS(2591), 1, - sym_identifier, - STATE(1281), 1, - sym_formal_parameters, - [41309] = 4, - ACTIONS(3), 1, + [46559] = 3, + ACTIONS(1957), 1, + anon_sym_LBRACE, + STATE(843), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(637), 1, - anon_sym_COMMA, - ACTIONS(1493), 1, - anon_sym_RPAREN, - STATE(1069), 1, - aux_sym_array_repeat1, - [41322] = 4, - ACTIONS(3), 1, + [46570] = 3, + ACTIONS(1957), 1, + anon_sym_LBRACE, + STATE(863), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2138), 1, - anon_sym_LPAREN, - ACTIONS(2593), 1, - sym_identifier, - STATE(1198), 1, - sym_formal_parameters, - [41335] = 4, - ACTIONS(3), 1, + [46581] = 3, + ACTIONS(1957), 1, + anon_sym_LBRACE, + STATE(867), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(637), 1, - anon_sym_COMMA, - ACTIONS(1493), 1, - anon_sym_RPAREN, - STATE(1044), 1, - aux_sym_array_repeat1, - [41348] = 3, - ACTIONS(3), 1, + [46592] = 3, + ACTIONS(2926), 1, + anon_sym_LBRACE, + STATE(655), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2229), 1, - anon_sym_LBRACK, - ACTIONS(2227), 2, - sym_identifier, - sym_private_property_identifier, - [41359] = 4, - ACTIONS(3), 1, + [46603] = 3, + ACTIONS(2514), 1, + anon_sym_LBRACE, + STATE(656), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(2595), 1, - anon_sym_RBRACE, - STATE(1299), 1, - sym_import_export_specifier, - [41372] = 2, - ACTIONS(1992), 1, + [46614] = 3, + ACTIONS(2926), 1, + anon_sym_LBRACE, + STATE(657), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1328), 3, + [46625] = 3, + ACTIONS(2926), 1, anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [41381] = 2, - ACTIONS(3), 1, + STATE(658), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [46636] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2597), 3, + ACTIONS(2936), 2, sym_automatic_semicolon, anon_sym_SEMI, - anon_sym_from, - [41390] = 4, - ACTIONS(3), 1, + [46645] = 3, + ACTIONS(2890), 1, + anon_sym_LBRACE, + STATE(845), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [46656] = 3, + ACTIONS(2890), 1, + anon_sym_LBRACE, + STATE(850), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2391), 1, + [46667] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2938), 2, sym_identifier, - ACTIONS(2599), 1, - anon_sym_RBRACE, - STATE(1299), 1, - sym_import_export_specifier, - [41403] = 4, - ACTIONS(3), 1, + sym_private_property_identifier, + [46676] = 3, + ACTIONS(1957), 1, + anon_sym_LBRACE, + STATE(862), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2601), 1, - anon_sym_COMMA, - ACTIONS(2604), 1, - anon_sym_RBRACE, - STATE(1164), 1, - aux_sym_export_clause_repeat1, - [41416] = 4, - ACTIONS(3), 1, + [46687] = 3, + ACTIONS(1957), 1, + anon_sym_LBRACE, + STATE(875), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(637), 1, - anon_sym_COMMA, - ACTIONS(1503), 1, - anon_sym_RPAREN, - STATE(1139), 1, - aux_sym_array_repeat1, - [41429] = 4, - ACTIONS(3), 1, + [46698] = 3, + ACTIONS(1957), 1, + anon_sym_LBRACE, + STATE(872), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(637), 1, - anon_sym_COMMA, - ACTIONS(1503), 1, - anon_sym_RPAREN, - STATE(1044), 1, - aux_sym_array_repeat1, - [41442] = 4, - ACTIONS(3), 1, + [46709] = 3, + ACTIONS(1957), 1, + anon_sym_LBRACE, + STATE(871), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2595), 1, - anon_sym_RBRACE, - ACTIONS(2606), 1, - anon_sym_COMMA, - STATE(1164), 1, - aux_sym_export_clause_repeat1, - [41455] = 2, - ACTIONS(3), 1, + [46720] = 3, + ACTIONS(1957), 1, + anon_sym_LBRACE, + STATE(866), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [46731] = 3, + ACTIONS(2257), 1, + anon_sym_COLON, + ACTIONS(2822), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [46742] = 3, + ACTIONS(1957), 1, + anon_sym_LBRACE, + STATE(865), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [46753] = 3, + ACTIONS(1957), 1, + anon_sym_LBRACE, + STATE(864), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [46764] = 3, + ACTIONS(1957), 1, + anon_sym_LBRACE, + STATE(861), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [46775] = 3, + ACTIONS(2514), 1, + anon_sym_LBRACE, + STATE(659), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [46786] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2608), 3, + ACTIONS(2940), 2, sym_automatic_semicolon, anon_sym_SEMI, - anon_sym_from, - [41464] = 2, - ACTIONS(1992), 1, + [46795] = 3, + ACTIONS(2926), 1, + anon_sym_LBRACE, + STATE(662), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1352), 3, + [46806] = 3, + ACTIONS(2926), 1, anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [41473] = 4, - ACTIONS(3), 1, + STATE(663), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2530), 1, - anon_sym_RBRACK, - ACTIONS(2610), 1, - anon_sym_COMMA, - STATE(1170), 1, - aux_sym_array_pattern_repeat1, - [41486] = 3, - ACTIONS(3), 1, + [46817] = 3, + ACTIONS(2928), 1, + anon_sym_LBRACE, + STATE(493), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2138), 1, - anon_sym_LPAREN, - STATE(1288), 1, - sym_formal_parameters, - [41496] = 3, - ACTIONS(3), 1, + [46828] = 3, + ACTIONS(2926), 1, + anon_sym_LBRACE, + STATE(651), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2233), 1, + [46839] = 3, + ACTIONS(2514), 1, anon_sym_LBRACE, - STATE(622), 1, + STATE(649), 1, sym_class_body, - [41506] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1970), 1, + [46850] = 3, + ACTIONS(2257), 1, anon_sym_COLON, - ACTIONS(2504), 1, + ACTIONS(2850), 1, anon_sym_GT, - [41516] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [46861] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1978), 1, + ACTIONS(2499), 2, + sym_identifier, + sym_private_property_identifier, + [46870] = 3, + ACTIONS(2263), 1, anon_sym_DOT, - ACTIONS(2504), 1, + ACTIONS(2850), 1, anon_sym_GT, - [41526] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1558), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [41534] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2613), 1, - anon_sym_LPAREN, - STATE(1216), 1, - sym_parenthesized_expression, - [41544] = 3, - ACTIONS(3), 1, + [46881] = 3, + ACTIONS(2263), 1, + anon_sym_DOT, + ACTIONS(2822), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2506), 1, + [46892] = 3, + ACTIONS(1957), 1, anon_sym_LBRACE, - STATE(790), 1, + STATE(846), 1, sym_statement_block, - [41554] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2506), 1, - anon_sym_LBRACE, - STATE(816), 1, - sym_statement_block, - [41564] = 2, - ACTIONS(3), 1, + [46903] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2615), 2, + ACTIONS(2942), 2, sym_automatic_semicolon, anon_sym_SEMI, - [41572] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2617), 1, - anon_sym_LPAREN, - STATE(23), 1, - sym_for_header, - [41582] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2619), 1, - anon_sym_LPAREN, - STATE(27), 1, - sym_parenthesized_expression, - [41592] = 3, - ACTIONS(3), 1, + [46912] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2621), 1, + ACTIONS(2944), 2, + sym_automatic_semicolon, + anon_sym_SEMI, + [46921] = 3, + ACTIONS(1957), 1, anon_sym_LBRACE, - STATE(573), 1, + STATE(853), 1, sym_statement_block, - [41602] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2623), 2, - sym_automatic_semicolon, - anon_sym_SEMI, - [41610] = 3, - ACTIONS(3), 1, + [46932] = 3, + ACTIONS(1957), 1, + anon_sym_LBRACE, + STATE(876), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2138), 1, - anon_sym_LPAREN, - STATE(1284), 1, - sym_formal_parameters, - [41620] = 3, - ACTIONS(3), 1, + [46943] = 3, + ACTIONS(2489), 1, + anon_sym_LBRACE, + STATE(459), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2138), 1, - anon_sym_LPAREN, - STATE(1207), 1, - sym_formal_parameters, - [41630] = 3, - ACTIONS(3), 1, + [46954] = 3, + ACTIONS(2946), 1, + anon_sym_LBRACE, + STATE(1378), 1, + sym_object, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2233), 1, + [46965] = 3, + ACTIONS(2514), 1, anon_sym_LBRACE, - STATE(574), 1, + STATE(629), 1, sym_class_body, - [41640] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1970), 1, - anon_sym_COLON, - ACTIONS(2510), 1, - anon_sym_GT, - [41650] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2621), 1, + [46976] = 3, + ACTIONS(2890), 1, anon_sym_LBRACE, - STATE(575), 1, + STATE(301), 1, sym_statement_block, - [41660] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1978), 1, - anon_sym_DOT, - ACTIONS(2510), 1, + [46987] = 3, + ACTIONS(2257), 1, + anon_sym_COLON, + ACTIONS(2813), 1, anon_sym_GT, - [41670] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2506), 1, - anon_sym_LBRACE, - STATE(340), 1, - sym_statement_block, - [41680] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2138), 1, + [46998] = 3, + ACTIONS(2403), 1, anon_sym_LPAREN, - STATE(1223), 1, + STATE(1432), 1, sym_formal_parameters, - [41690] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2625), 2, + [47009] = 3, + ACTIONS(2918), 1, + anon_sym_LPAREN, + STATE(38), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [47020] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2948), 2, sym_automatic_semicolon, anon_sym_SEMI, - [41698] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2138), 1, + [47029] = 3, + ACTIONS(2918), 1, anon_sym_LPAREN, - STATE(1209), 1, - sym_formal_parameters, - [41708] = 3, - ACTIONS(3), 1, + STATE(54), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2138), 1, + [47040] = 3, + ACTIONS(2403), 1, anon_sym_LPAREN, - STATE(1210), 1, + STATE(1510), 1, sym_formal_parameters, - [41718] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [47051] = 3, + ACTIONS(1957), 1, + anon_sym_LBRACE, + STATE(883), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2506), 1, + [47062] = 3, + ACTIONS(2926), 1, anon_sym_LBRACE, - STATE(799), 1, + STATE(646), 1, sym_statement_block, - [41728] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2627), 2, + [47073] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2950), 2, anon_sym_LBRACE, anon_sym_EQ_GT, - [41736] = 2, - ACTIONS(3), 1, + [47082] = 3, + ACTIONS(2918), 1, + anon_sym_LPAREN, + STATE(50), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2629), 2, - sym_automatic_semicolon, - anon_sym_SEMI, - [41744] = 3, - ACTIONS(3), 1, + [47093] = 3, + ACTIONS(2928), 1, + anon_sym_LBRACE, + STATE(509), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2621), 1, + [47104] = 3, + ACTIONS(2514), 1, + anon_sym_LBRACE, + STATE(644), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [47115] = 3, + ACTIONS(2890), 1, anon_sym_LBRACE, - STATE(563), 1, + STATE(847), 1, sym_statement_block, - [41754] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2631), 1, + [47126] = 3, + ACTIONS(2928), 1, anon_sym_LBRACE, - STATE(423), 1, + STATE(507), 1, sym_statement_block, - [41764] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2619), 1, - anon_sym_LPAREN, - STATE(31), 1, - sym_parenthesized_expression, - [41774] = 3, - ACTIONS(3), 1, + [47137] = 3, + ACTIONS(1957), 1, + anon_sym_LBRACE, + STATE(847), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2621), 1, + [47148] = 3, + ACTIONS(2890), 1, anon_sym_LBRACE, - STATE(56), 1, + STATE(848), 1, sym_statement_block, - [41784] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2619), 1, + [47159] = 3, + ACTIONS(2952), 1, anon_sym_LPAREN, - STATE(36), 1, - sym_parenthesized_expression, - [41794] = 3, - ACTIONS(3), 1, + STATE(25), 1, + sym_for_header, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2619), 1, - anon_sym_LPAREN, - STATE(38), 1, - sym_parenthesized_expression, - [41804] = 3, - ACTIONS(3), 1, + [47170] = 3, + ACTIONS(2954), 1, + anon_sym_LBRACE, + STATE(363), 1, + sym_switch_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [47181] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2619), 1, + ACTIONS(2574), 2, + sym_identifier, + sym_private_property_identifier, + [47190] = 3, + ACTIONS(2952), 1, anon_sym_LPAREN, - STATE(32), 1, - sym_parenthesized_expression, - [41814] = 3, - ACTIONS(3), 1, + STATE(37), 1, + sym_for_header, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2633), 1, + [47201] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2956), 2, sym_identifier, - ACTIONS(2635), 1, - anon_sym_STAR, - [41824] = 2, - ACTIONS(3), 1, + sym_private_property_identifier, + [47210] = 3, + ACTIONS(2403), 1, + anon_sym_LPAREN, + STATE(1354), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2637), 2, + [47221] = 3, + ACTIONS(2926), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [41832] = 3, - ACTIONS(3), 1, + STATE(73), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [47232] = 3, + ACTIONS(2403), 1, + anon_sym_LPAREN, + STATE(1342), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [47243] = 3, + ACTIONS(2403), 1, + anon_sym_LPAREN, + STATE(1444), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2506), 1, + [47254] = 3, + ACTIONS(2928), 1, anon_sym_LBRACE, - STATE(804), 1, + STATE(470), 1, sym_statement_block, - [41842] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2530), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [41850] = 3, - ACTIONS(3), 1, + [47265] = 3, + ACTIONS(2403), 1, + anon_sym_LPAREN, + STATE(1393), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2506), 1, + [47276] = 3, + ACTIONS(2489), 1, anon_sym_LBRACE, - STATE(808), 1, - sym_statement_block, - [41860] = 3, - ACTIONS(3), 1, + STATE(469), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [47287] = 3, + ACTIONS(2403), 1, + anon_sym_LPAREN, + STATE(1323), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2506), 1, + [47298] = 3, + ACTIONS(2890), 1, anon_sym_LBRACE, - STATE(805), 1, + STATE(849), 1, sym_statement_block, - [41870] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2639), 1, - sym_identifier, - ACTIONS(2641), 1, - anon_sym_STAR, - [41880] = 3, - ACTIONS(3), 1, + [47309] = 3, + ACTIONS(2710), 1, + anon_sym_from, + STATE(1182), 1, + sym_from_clause, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2138), 1, - anon_sym_LPAREN, - STATE(1314), 1, - sym_formal_parameters, - [41890] = 3, - ACTIONS(3), 1, + [47320] = 3, + ACTIONS(2958), 1, + anon_sym_COMMA, + ACTIONS(2960), 1, + anon_sym_from, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2617), 1, - anon_sym_LPAREN, - STATE(35), 1, - sym_for_header, - [41900] = 3, - ACTIONS(3), 1, + [47331] = 3, + ACTIONS(2655), 1, + anon_sym_LBRACE, + STATE(318), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2138), 1, + [47342] = 3, + ACTIONS(2403), 1, anon_sym_LPAREN, - STATE(1320), 1, + STATE(1448), 1, sym_formal_parameters, - [41910] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2233), 1, + [47353] = 3, + ACTIONS(2962), 1, anon_sym_LBRACE, - STATE(621), 1, - sym_class_body, - [41920] = 2, - ACTIONS(3), 1, + STATE(319), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2643), 2, - sym_automatic_semicolon, - anon_sym_SEMI, - [41928] = 3, - ACTIONS(3), 1, + [47364] = 3, + ACTIONS(2890), 1, + anon_sym_LBRACE, + STATE(851), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2294), 1, + [47375] = 3, + ACTIONS(2890), 1, anon_sym_LBRACE, - STATE(429), 1, - sym_class_body, - [41938] = 2, - ACTIONS(3), 1, + STATE(852), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2645), 2, - sym_automatic_semicolon, - anon_sym_SEMI, - [41946] = 2, - ACTIONS(3), 1, + [47386] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1079), 2, + ACTIONS(2964), 2, sym_automatic_semicolon, anon_sym_SEMI, - [41954] = 2, - ACTIONS(3), 1, + [47395] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2647), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [41962] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [47404] = 3, + ACTIONS(2403), 1, + anon_sym_LPAREN, + STATE(1321), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2619), 1, + [47415] = 3, + ACTIONS(2403), 1, anon_sym_LPAREN, - STATE(41), 1, - sym_parenthesized_expression, - [41972] = 3, - ACTIONS(3), 1, + STATE(1313), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2138), 1, + [47426] = 3, + ACTIONS(2403), 1, anon_sym_LPAREN, - STATE(1287), 1, + STATE(1312), 1, sym_formal_parameters, - [41982] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2621), 1, + [47437] = 3, + ACTIONS(2890), 1, anon_sym_LBRACE, - STATE(55), 1, + STATE(854), 1, sym_statement_block, - [41992] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2649), 1, - sym_identifier, - ACTIONS(2651), 1, - sym_jsx_identifier, - [42002] = 3, - ACTIONS(3), 1, + [47448] = 3, + ACTIONS(2926), 1, + anon_sym_LBRACE, + STATE(68), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2619), 1, - anon_sym_LPAREN, - STATE(1308), 1, - sym_parenthesized_expression, - [42012] = 3, - ACTIONS(3), 1, + [47459] = 3, + ACTIONS(2890), 1, + anon_sym_LBRACE, + STATE(855), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1970), 1, - anon_sym_COLON, - ACTIONS(2472), 1, - anon_sym_GT, - [42022] = 2, - ACTIONS(3), 1, + [47470] = 3, + ACTIONS(2890), 1, + anon_sym_LBRACE, + STATE(842), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1495), 2, - sym_automatic_semicolon, - anon_sym_SEMI, - [42030] = 2, - ACTIONS(3), 1, + [47481] = 3, + ACTIONS(2890), 1, + anon_sym_LBRACE, + STATE(846), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2653), 2, - sym_automatic_semicolon, - anon_sym_SEMI, - [42038] = 2, - ACTIONS(3), 1, + [47492] = 3, + ACTIONS(2966), 1, + sym_identifier, + ACTIONS(2968), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2655), 2, - sym_automatic_semicolon, - anon_sym_SEMI, - [42046] = 2, - ACTIONS(3), 1, + [47503] = 3, + ACTIONS(2403), 1, + anon_sym_LPAREN, + STATE(1381), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2657), 2, - sym_automatic_semicolon, - anon_sym_SEMI, - [42054] = 3, - ACTIONS(3), 1, + [47514] = 3, + ACTIONS(2403), 1, + anon_sym_LPAREN, + STATE(1514), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2621), 1, + [47525] = 3, + ACTIONS(2403), 1, + anon_sym_LPAREN, + STATE(1380), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [47536] = 3, + ACTIONS(2890), 1, anon_sym_LBRACE, - STATE(577), 1, + STATE(876), 1, sym_statement_block, - [42064] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2138), 1, + [47547] = 3, + ACTIONS(2403), 1, anon_sym_LPAREN, - STATE(1262), 1, + STATE(1519), 1, sym_formal_parameters, - [42074] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2506), 1, + [47558] = 3, + ACTIONS(2514), 1, anon_sym_LBRACE, - STATE(281), 1, - sym_statement_block, - [42084] = 3, - ACTIONS(3), 1, + STATE(71), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2138), 1, + [47569] = 3, + ACTIONS(2403), 1, anon_sym_LPAREN, - STATE(1309), 1, + STATE(1420), 1, sym_formal_parameters, - [42094] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1978), 1, - anon_sym_DOT, - ACTIONS(2472), 1, - anon_sym_GT, - [42104] = 3, - ACTIONS(3), 1, + [47580] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2820), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [47589] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2506), 1, + ACTIONS(2970), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [47598] = 3, + ACTIONS(2890), 1, anon_sym_LBRACE, - STATE(792), 1, + STATE(875), 1, sym_statement_block, - [42114] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2138), 1, - anon_sym_LPAREN, - STATE(1325), 1, - sym_formal_parameters, - [42124] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2659), 2, - sym_automatic_semicolon, - anon_sym_SEMI, - [42132] = 3, - ACTIONS(3), 1, + [47609] = 3, + ACTIONS(2962), 1, + anon_sym_LBRACE, + STATE(337), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2138), 1, + [47620] = 3, + ACTIONS(2403), 1, anon_sym_LPAREN, - STATE(1334), 1, + STATE(1371), 1, sym_formal_parameters, - [42142] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2138), 1, - anon_sym_LPAREN, - STATE(1199), 1, - sym_formal_parameters, - [42152] = 2, - ACTIONS(3), 1, + [47631] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1470), 2, + ACTIONS(1379), 2, sym_automatic_semicolon, anon_sym_SEMI, - [42160] = 3, - ACTIONS(3), 1, + [47640] = 3, + ACTIONS(2403), 1, + anon_sym_LPAREN, + STATE(1369), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2621), 1, + [47651] = 3, + ACTIONS(2962), 1, anon_sym_LBRACE, - STATE(624), 1, + STATE(336), 1, sym_statement_block, - [42170] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2138), 1, + [47662] = 3, + ACTIONS(2403), 1, anon_sym_LPAREN, - STATE(1264), 1, + STATE(1443), 1, sym_formal_parameters, - [42180] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1558), 1, + [47673] = 3, + ACTIONS(2403), 1, anon_sym_LPAREN, - ACTIONS(1936), 1, - anon_sym_EQ_GT, - [42190] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2294), 1, - anon_sym_LBRACE, - STATE(447), 1, - sym_class_body, - [42200] = 2, - ACTIONS(3), 1, + STATE(1368), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1942), 2, - sym_automatic_semicolon, - anon_sym_SEMI, - [42208] = 3, - ACTIONS(3), 1, + [47684] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2621), 1, + ACTIONS(2796), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [47693] = 3, + ACTIONS(2655), 1, anon_sym_LBRACE, - STATE(54), 1, - sym_statement_block, - [42218] = 2, - ACTIONS(3), 1, + STATE(335), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2562), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [42226] = 3, - ACTIONS(3), 1, + [47704] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2631), 1, + ACTIONS(1583), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [47713] = 3, + ACTIONS(2890), 1, anon_sym_LBRACE, - STATE(448), 1, + STATE(857), 1, sym_statement_block, - [42236] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2290), 2, - anon_sym_in, - anon_sym_of, - [42244] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2391), 1, - sym_identifier, - STATE(1299), 1, - sym_import_export_specifier, - [42254] = 2, - ACTIONS(3), 1, + [47724] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2661), 2, + ACTIONS(1261), 2, sym_automatic_semicolon, anon_sym_SEMI, - [42262] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2138), 1, + [47733] = 3, + ACTIONS(2403), 1, anon_sym_LPAREN, - STATE(1317), 1, + STATE(1495), 1, sym_formal_parameters, - [42272] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2663), 1, - anon_sym_COMMA, - ACTIONS(2665), 1, - anon_sym_from, - [42282] = 2, - ACTIONS(3), 1, + [47744] = 3, + ACTIONS(2890), 1, + anon_sym_LBRACE, + STATE(861), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [47755] = 3, + ACTIONS(2403), 1, + anon_sym_LPAREN, + STATE(1508), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2667), 2, + [47766] = 3, + ACTIONS(2890), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [42290] = 3, - ACTIONS(3), 1, + STATE(864), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2138), 1, + [47777] = 3, + ACTIONS(2403), 1, anon_sym_LPAREN, - STATE(1307), 1, + STATE(1466), 1, sym_formal_parameters, - [42300] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2138), 1, + [47788] = 3, + ACTIONS(2403), 1, anon_sym_LPAREN, - STATE(1182), 1, + STATE(1465), 1, sym_formal_parameters, - [42310] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2138), 1, + [47799] = 3, + ACTIONS(2403), 1, anon_sym_LPAREN, - STATE(1188), 1, + STATE(1464), 1, sym_formal_parameters, - [42320] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2631), 1, + [47810] = 3, + ACTIONS(2403), 1, + anon_sym_LPAREN, + STATE(1498), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [47821] = 3, + ACTIONS(2890), 1, anon_sym_LBRACE, - STATE(430), 1, + STATE(865), 1, sym_statement_block, - [42330] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2254), 2, - sym_identifier, - sym_private_property_identifier, - [42338] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2233), 1, + [47832] = 3, + ACTIONS(2890), 1, anon_sym_LBRACE, - STATE(571), 1, - sym_class_body, - [42348] = 3, - ACTIONS(3), 1, + STATE(866), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2669), 1, + [47843] = 3, + ACTIONS(2890), 1, anon_sym_LBRACE, - STATE(295), 1, + STATE(871), 1, sym_statement_block, - [42358] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2138), 1, + [47854] = 3, + ACTIONS(2403), 1, anon_sym_LPAREN, - STATE(1231), 1, + STATE(1365), 1, sym_formal_parameters, - [42368] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2621), 1, + [47865] = 3, + ACTIONS(2890), 1, anon_sym_LBRACE, - STATE(641), 1, + STATE(858), 1, sym_statement_block, - [42378] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2138), 1, + [47876] = 3, + ACTIONS(2403), 1, anon_sym_LPAREN, - STATE(1177), 1, + STATE(1363), 1, sym_formal_parameters, - [42388] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2138), 1, + [47887] = 3, + ACTIONS(2403), 1, anon_sym_LPAREN, - STATE(1318), 1, + STATE(1361), 1, sym_formal_parameters, - [42398] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2233), 1, - anon_sym_LBRACE, - STATE(59), 1, - sym_class_body, - [42408] = 3, - ACTIONS(3), 1, + [47898] = 3, + ACTIONS(2403), 1, + anon_sym_LPAREN, + STATE(1360), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2138), 1, + [47909] = 3, + ACTIONS(2403), 1, anon_sym_LPAREN, - STATE(1277), 1, + STATE(1359), 1, sym_formal_parameters, - [42418] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2580), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [42426] = 3, - ACTIONS(3), 1, + [47920] = 3, + ACTIONS(2403), 1, + anon_sym_LPAREN, + STATE(1357), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2294), 1, - anon_sym_LBRACE, - STATE(422), 1, - sym_class_body, - [42436] = 2, - ACTIONS(3), 1, + [47931] = 3, + ACTIONS(2403), 1, + anon_sym_LPAREN, + STATE(1496), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2110), 2, - anon_sym_in, - anon_sym_of, - [42444] = 3, - ACTIONS(3), 1, + [47942] = 3, + ACTIONS(2403), 1, + anon_sym_LPAREN, + STATE(1468), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2138), 1, + [47953] = 3, + ACTIONS(2403), 1, anon_sym_LPAREN, - STATE(1259), 1, + STATE(1352), 1, sym_formal_parameters, - [42454] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1970), 1, - anon_sym_COLON, - ACTIONS(2582), 1, - anon_sym_GT, - [42464] = 3, - ACTIONS(3), 1, + [47964] = 3, + ACTIONS(2403), 1, + anon_sym_LPAREN, + STATE(1351), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1978), 1, - anon_sym_DOT, - ACTIONS(2582), 1, - anon_sym_GT, - [42474] = 3, - ACTIONS(3), 1, + [47975] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2452), 1, + ACTIONS(2840), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [47984] = 3, + ACTIONS(2403), 1, + anon_sym_LPAREN, + STATE(1349), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [47995] = 3, + ACTIONS(2403), 1, + anon_sym_LPAREN, + STATE(1454), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [48006] = 3, + ACTIONS(2710), 1, anon_sym_from, - STATE(1192), 1, + STATE(1423), 1, sym_from_clause, - [42484] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2227), 2, - sym_identifier, - sym_private_property_identifier, - [42492] = 3, - ACTIONS(3), 1, + [48017] = 3, + ACTIONS(2403), 1, + anon_sym_LPAREN, + STATE(1348), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2631), 1, - anon_sym_LBRACE, - STATE(427), 1, - sym_statement_block, - [42502] = 3, - ACTIONS(3), 1, + [48028] = 3, + ACTIONS(2403), 1, + anon_sym_LPAREN, + STATE(1347), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2631), 1, - anon_sym_LBRACE, - STATE(474), 1, - sym_statement_block, - [42512] = 3, - ACTIONS(3), 1, + [48039] = 3, + ACTIONS(2403), 1, + anon_sym_LPAREN, + STATE(1346), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2138), 1, + [48050] = 3, + ACTIONS(2403), 1, anon_sym_LPAREN, - STATE(1201), 1, + STATE(1345), 1, sym_formal_parameters, - [42522] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2138), 1, + [48061] = 3, + ACTIONS(2403), 1, anon_sym_LPAREN, - STATE(1247), 1, + STATE(1344), 1, sym_formal_parameters, - [42532] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2621), 1, - anon_sym_LBRACE, - STATE(559), 1, - sym_statement_block, - [42542] = 3, - ACTIONS(3), 1, + [48072] = 3, + ACTIONS(2403), 1, + anon_sym_LPAREN, + STATE(1343), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2506), 1, - anon_sym_LBRACE, - STATE(302), 1, - sym_statement_block, - [42552] = 3, - ACTIONS(3), 1, + [48083] = 3, + ACTIONS(2403), 1, + anon_sym_LPAREN, + STATE(1340), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2233), 1, - anon_sym_LBRACE, - STATE(632), 1, - sym_class_body, - [42562] = 3, - ACTIONS(3), 1, + [48094] = 3, + ACTIONS(2403), 1, + anon_sym_LPAREN, + STATE(1338), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2621), 1, - anon_sym_LBRACE, - STATE(60), 1, - sym_statement_block, - [42572] = 3, - ACTIONS(3), 1, + [48105] = 3, + ACTIONS(2403), 1, + anon_sym_LPAREN, + STATE(1337), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2138), 1, + [48116] = 3, + ACTIONS(2403), 1, anon_sym_LPAREN, - STATE(1319), 1, + STATE(1336), 1, sym_formal_parameters, - [42582] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2631), 1, - anon_sym_LBRACE, - STATE(481), 1, - sym_statement_block, - [42592] = 3, - ACTIONS(3), 1, + [48127] = 3, + ACTIONS(2403), 1, + anon_sym_LPAREN, + STATE(1335), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2621), 1, - anon_sym_LBRACE, - STATE(634), 1, - sym_statement_block, - [42602] = 3, - ACTIONS(3), 1, + [48138] = 3, + ACTIONS(2403), 1, + anon_sym_LPAREN, + STATE(1334), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2506), 1, - anon_sym_LBRACE, - STATE(793), 1, - sym_statement_block, - [42612] = 3, - ACTIONS(3), 1, + [48149] = 3, + ACTIONS(2403), 1, + anon_sym_LPAREN, + STATE(1333), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2506), 1, + [48160] = 3, + ACTIONS(2890), 1, anon_sym_LBRACE, - STATE(794), 1, + STATE(872), 1, sym_statement_block, - [42622] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2671), 2, - sym_automatic_semicolon, - anon_sym_SEMI, - [42630] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2424), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [42638] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2621), 1, + [48171] = 3, + ACTIONS(2890), 1, anon_sym_LBRACE, - STATE(599), 1, + STATE(843), 1, sym_statement_block, - [42648] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2631), 1, - anon_sym_LBRACE, - STATE(428), 1, - sym_statement_block, - [42658] = 3, - ACTIONS(3), 1, + [48182] = 3, + ACTIONS(2972), 1, + sym_identifier, + ACTIONS(2974), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2506), 1, + [48193] = 3, + ACTIONS(2890), 1, anon_sym_LBRACE, - STATE(795), 1, + STATE(863), 1, sym_statement_block, - [42668] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2233), 1, - anon_sym_LBRACE, - STATE(57), 1, - sym_class_body, - [42678] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2138), 1, + [48204] = 3, + ACTIONS(2403), 1, anon_sym_LPAREN, - STATE(1293), 1, + STATE(1332), 1, sym_formal_parameters, - [42688] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2506), 1, - anon_sym_LBRACE, - STATE(796), 1, - sym_statement_block, - [42698] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2673), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [42706] = 2, - ACTIONS(3), 1, + [48215] = 3, + ACTIONS(2403), 1, + anon_sym_LPAREN, + STATE(1431), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2604), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [42714] = 3, - ACTIONS(3), 1, + [48226] = 3, + ACTIONS(2403), 1, + anon_sym_LPAREN, + STATE(1331), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2506), 1, - anon_sym_LBRACE, - STATE(797), 1, - sym_statement_block, - [42724] = 3, - ACTIONS(3), 1, + [48237] = 3, + ACTIONS(2403), 1, + anon_sym_LPAREN, + STATE(1330), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2452), 1, - anon_sym_from, - STATE(1230), 1, - sym_from_clause, - [42734] = 3, - ACTIONS(3), 1, + [48248] = 3, + ACTIONS(2403), 1, + anon_sym_LPAREN, + STATE(1329), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2506), 1, - anon_sym_LBRACE, - STATE(798), 1, - sym_statement_block, - [42744] = 2, - ACTIONS(3), 1, + [48259] = 3, + ACTIONS(2403), 1, + anon_sym_LPAREN, + STATE(1328), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1284), 2, - sym_automatic_semicolon, - anon_sym_SEMI, - [42752] = 3, - ACTIONS(3), 1, + [48270] = 3, + ACTIONS(2403), 1, + anon_sym_LPAREN, + STATE(1327), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2138), 1, + [48281] = 3, + ACTIONS(2403), 1, anon_sym_LPAREN, - STATE(1310), 1, + STATE(1326), 1, sym_formal_parameters, - [42762] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2669), 1, + [48292] = 3, + ACTIONS(2403), 1, + anon_sym_LPAREN, + STATE(1430), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [48303] = 3, + ACTIONS(2890), 1, anon_sym_LBRACE, - STATE(304), 1, + STATE(867), 1, sym_statement_block, - [42772] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2294), 1, - anon_sym_LBRACE, - STATE(483), 1, - sym_class_body, - [42782] = 3, - ACTIONS(3), 1, + [48314] = 3, + ACTIONS(2403), 1, + anon_sym_LPAREN, + STATE(1428), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2621), 1, + [48325] = 3, + ACTIONS(2962), 1, anon_sym_LBRACE, - STATE(572), 1, + STATE(314), 1, sym_statement_block, - [42792] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2675), 1, - anon_sym_LBRACE, - STATE(334), 1, - sym_switch_body, - [42802] = 3, - ACTIONS(3), 1, + [48336] = 3, + ACTIONS(2403), 1, + anon_sym_LPAREN, + STATE(1422), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2669), 1, + [48347] = 3, + ACTIONS(1558), 1, + anon_sym_LPAREN, + ACTIONS(2171), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [48358] = 3, + ACTIONS(2928), 1, anon_sym_LBRACE, - STATE(305), 1, + STATE(474), 1, sym_statement_block, - [42812] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2669), 1, + [48369] = 3, + ACTIONS(2890), 1, anon_sym_LBRACE, - STATE(301), 1, + STATE(853), 1, sym_statement_block, - [42822] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2387), 1, - anon_sym_LBRACE, - STATE(291), 1, - sym_class_body, - [42832] = 2, - ACTIONS(3), 1, + [48380] = 3, + ACTIONS(2403), 1, + anon_sym_LPAREN, + STATE(1421), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1520), 2, + [48391] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2976), 2, + sym_automatic_semicolon, + anon_sym_SEMI, + [48400] = 3, + ACTIONS(2403), 1, anon_sym_LPAREN, - anon_sym_COLON, - [42840] = 3, - ACTIONS(3), 1, + STATE(1415), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2138), 1, + [48411] = 3, + ACTIONS(2403), 1, anon_sym_LPAREN, - STATE(1324), 1, + STATE(1401), 1, sym_formal_parameters, - [42850] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2506), 1, + [48422] = 3, + ACTIONS(2890), 1, anon_sym_LBRACE, - STATE(806), 1, + STATE(862), 1, sym_statement_block, - [42860] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1823), 2, + [48433] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1989), 2, anon_sym_COMMA, anon_sym_RBRACE, - [42868] = 3, - ACTIONS(3), 1, + [48442] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2138), 1, + ACTIONS(2978), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [48451] = 3, + ACTIONS(2403), 1, anon_sym_LPAREN, - STATE(1236), 1, + STATE(1437), 1, sym_formal_parameters, - [42878] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2506), 1, - anon_sym_LBRACE, - STATE(807), 1, - sym_statement_block, - [42888] = 3, - ACTIONS(3), 1, + [48462] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2506), 1, - anon_sym_LBRACE, - STATE(815), 1, - sym_statement_block, - [42898] = 3, - ACTIONS(3), 1, + ACTIONS(2980), 2, + sym_automatic_semicolon, + anon_sym_SEMI, + [48471] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2506), 1, - anon_sym_LBRACE, - STATE(812), 1, - sym_statement_block, - [42908] = 3, - ACTIONS(3), 1, + ACTIONS(2982), 2, + sym_automatic_semicolon, + anon_sym_SEMI, + [48480] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2506), 1, + ACTIONS(2873), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [48489] = 3, + ACTIONS(2890), 1, anon_sym_LBRACE, - STATE(801), 1, + STATE(384), 1, sym_statement_block, - [42918] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2138), 1, - anon_sym_LPAREN, - STATE(1289), 1, - sym_formal_parameters, - [42928] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2138), 1, - anon_sym_LPAREN, - STATE(1294), 1, - sym_formal_parameters, - [42938] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2233), 1, - anon_sym_LBRACE, - STATE(638), 1, - sym_class_body, - [42948] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2506), 1, - anon_sym_LBRACE, - STATE(813), 1, - sym_statement_block, - [42958] = 3, - ACTIONS(3), 1, + [48500] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2621), 1, - anon_sym_LBRACE, - STATE(639), 1, - sym_statement_block, - [42968] = 3, - ACTIONS(3), 1, + ACTIONS(1570), 2, + sym_automatic_semicolon, + anon_sym_SEMI, + [48509] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2138), 1, + ACTIONS(2725), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [48518] = 3, + ACTIONS(2403), 1, anon_sym_LPAREN, - STATE(1297), 1, + STATE(1457), 1, sym_formal_parameters, - [42978] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2138), 1, + [48529] = 3, + ACTIONS(2403), 1, anon_sym_LPAREN, - STATE(1300), 1, + STATE(1459), 1, sym_formal_parameters, - [42988] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2138), 1, + [48540] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(508), 2, + sym_automatic_semicolon, + anon_sym_SEMI, + [48549] = 3, + ACTIONS(2984), 1, anon_sym_LPAREN, - STATE(1302), 1, - sym_formal_parameters, - [42998] = 3, - ACTIONS(3), 1, + STATE(331), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2138), 1, + [48560] = 3, + ACTIONS(2403), 1, anon_sym_LPAREN, - STATE(1305), 1, + STATE(1314), 1, sym_formal_parameters, - [43008] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2387), 1, + [48571] = 3, + ACTIONS(2926), 1, + anon_sym_LBRACE, + STATE(72), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [48582] = 3, + ACTIONS(2489), 1, anon_sym_LBRACE, - STATE(293), 1, + STATE(490), 1, sym_class_body, - [43018] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [48593] = 3, + ACTIONS(2926), 1, + anon_sym_LBRACE, + STATE(578), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2138), 1, + [48604] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2986), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [48613] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2988), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [48622] = 3, + ACTIONS(2403), 1, anon_sym_LPAREN, - STATE(1195), 1, + STATE(1408), 1, sym_formal_parameters, - [43028] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2506), 1, + [48633] = 3, + ACTIONS(2928), 1, anon_sym_LBRACE, - STATE(814), 1, + STATE(465), 1, sym_statement_block, - [43038] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2631), 1, - anon_sym_LBRACE, - STATE(484), 1, - sym_statement_block, - [43048] = 3, - ACTIONS(3), 1, + [48644] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2621), 1, + ACTIONS(2528), 2, + anon_sym_in, + anon_sym_of, + [48653] = 3, + ACTIONS(2928), 1, anon_sym_LBRACE, - STATE(561), 1, + STATE(506), 1, sym_statement_block, - [43058] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2138), 1, + [48664] = 3, + ACTIONS(2403), 1, anon_sym_LPAREN, - STATE(1332), 1, + STATE(1513), 1, sym_formal_parameters, - [43068] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1466), 2, - sym_automatic_semicolon, + [48675] = 2, + ACTIONS(1651), 1, anon_sym_SEMI, - [43076] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2677), 1, - anon_sym_SLASH2, - [43083] = 2, - ACTIONS(1992), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2679), 1, - sym_regex_pattern, - [43090] = 2, - ACTIONS(3), 1, + [48683] = 2, + ACTIONS(1645), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2681), 1, - anon_sym_GT, - [43097] = 2, - ACTIONS(3), 1, + [48691] = 2, + ACTIONS(2990), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2683), 1, + [48699] = 2, + ACTIONS(2992), 1, anon_sym_EQ_GT, - [43104] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2685), 1, - anon_sym_GT, - [43111] = 2, - ACTIONS(1992), 1, + [48707] = 2, + ACTIONS(1635), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2687), 1, - sym_regex_pattern, - [43118] = 2, - ACTIONS(3), 1, + [48715] = 2, + ACTIONS(1633), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2689), 1, - anon_sym_while, - [43125] = 2, - ACTIONS(3), 1, + [48723] = 2, + ACTIONS(2994), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2691), 1, - anon_sym_GT, - [43132] = 2, - ACTIONS(3), 1, + [48731] = 2, + ACTIONS(2996), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2693), 1, - anon_sym_from, - [43139] = 2, - ACTIONS(3), 1, + [48739] = 2, + ACTIONS(1495), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2695), 1, - anon_sym_GT, - [43146] = 2, - ACTIONS(3), 1, + [48747] = 2, + ACTIONS(2998), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1572), 1, + [48755] = 2, + ACTIONS(3000), 1, anon_sym_RPAREN, - [43153] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2697), 1, - anon_sym_SLASH2, - [43160] = 2, - ACTIONS(3), 1, + [48763] = 2, + ACTIONS(3002), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2699), 1, - anon_sym_GT, - [43167] = 2, + [48771] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2510), 1, - anon_sym_GT, - [43174] = 2, - ACTIONS(3), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3004), 1, + sym_regex_pattern, + [48781] = 2, + ACTIONS(3006), 1, + anon_sym_from, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2701), 1, - anon_sym_GT, - [43181] = 2, + [48789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2703), 1, - ts_builtin_sym_end, - [43188] = 2, - ACTIONS(3), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3008), 1, + sym_regex_pattern, + [48799] = 2, + ACTIONS(1649), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2472), 1, - anon_sym_GT, - [43195] = 2, - ACTIONS(3), 1, + [48807] = 2, + ACTIONS(1647), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2582), 1, - anon_sym_GT, - [43202] = 2, - ACTIONS(3), 1, + [48815] = 2, + ACTIONS(1641), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2705), 1, - anon_sym_SLASH2, - [43209] = 2, - ACTIONS(3), 1, + [48823] = 2, + ACTIONS(1643), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2707), 1, - anon_sym_GT, - [43216] = 2, - ACTIONS(3), 1, + [48831] = 2, + ACTIONS(3010), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2709), 1, - anon_sym_EQ, - [43223] = 2, - ACTIONS(3), 1, + [48839] = 2, + ACTIONS(1639), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2711), 1, - anon_sym_EQ_GT, - [43230] = 2, - ACTIONS(3), 1, + [48847] = 2, + ACTIONS(3012), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2713), 1, - anon_sym_RPAREN, - [43237] = 2, - ACTIONS(3), 1, + [48855] = 2, + ACTIONS(3014), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2715), 1, - anon_sym_EQ_GT, - [43244] = 2, - ACTIONS(3), 1, + [48863] = 2, + ACTIONS(3016), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2717), 1, - anon_sym_SLASH2, - [43251] = 2, - ACTIONS(3), 1, + [48871] = 2, + ACTIONS(1657), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2719), 1, - anon_sym_EQ_GT, - [43258] = 2, - ACTIONS(3), 1, + [48879] = 2, + ACTIONS(1637), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2721), 1, + [48887] = 2, + ACTIONS(3018), 1, anon_sym_from, - [43265] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2723), 1, - anon_sym_COLON, - [43272] = 2, - ACTIONS(3), 1, + [48895] = 2, + ACTIONS(1441), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2725), 1, - anon_sym_target, - [43279] = 2, - ACTIONS(3), 1, + [48903] = 2, + ACTIONS(2510), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1574), 1, - anon_sym_RPAREN, - [43286] = 2, - ACTIONS(3), 1, + [48911] = 2, + ACTIONS(3020), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2504), 1, - anon_sym_GT, - [43293] = 2, - ACTIONS(3), 1, + [48919] = 2, + ACTIONS(3022), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2727), 1, - sym_identifier, - [43300] = 2, - ACTIONS(3), 1, + [48927] = 2, + ACTIONS(2776), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2729), 1, - anon_sym_GT, - [43307] = 2, - ACTIONS(3), 1, + [48935] = 2, + ACTIONS(3024), 1, + anon_sym_meta, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2731), 1, - anon_sym_EQ, - [43314] = 2, - ACTIONS(3), 1, + [48943] = 2, + ACTIONS(1659), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1513), 1, + [48951] = 2, + ACTIONS(1667), 1, anon_sym_RPAREN, - [43321] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2733), 1, - anon_sym_GT, - [43328] = 2, - ACTIONS(3), 1, + [48959] = 2, + ACTIONS(1947), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2735), 1, - sym_identifier, - [43335] = 2, - ACTIONS(3), 1, + [48967] = 2, + ACTIONS(3026), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2737), 1, - anon_sym_GT, - [43342] = 2, - ACTIONS(3), 1, + [48975] = 2, + ACTIONS(3028), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1586), 1, - anon_sym_RBRACK, - [43349] = 2, - ACTIONS(3), 1, + [48983] = 2, + ACTIONS(3030), 1, + anon_sym_meta, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2739), 1, - anon_sym_GT, - [43356] = 2, - ACTIONS(3), 1, + [48991] = 2, + ACTIONS(2960), 1, + anon_sym_from, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2741), 1, - anon_sym_target, - [43363] = 2, - ACTIONS(3), 1, + [48999] = 2, + ACTIONS(3032), 1, + ts_builtin_sym_end, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1570), 1, - anon_sym_RBRACE, - [43370] = 2, - ACTIONS(3), 1, + [49007] = 2, + ACTIONS(3034), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2743), 1, - anon_sym_GT, - [43377] = 2, - ACTIONS(3), 1, + [49015] = 2, + ACTIONS(3024), 1, + anon_sym_target, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1511), 1, - anon_sym_RBRACE, - [43384] = 2, - ACTIONS(3), 1, + [49023] = 2, + ACTIONS(1523), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2745), 1, + [49031] = 2, + ACTIONS(3036), 1, sym_identifier, - [43391] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2747), 1, - anon_sym_GT, - [43398] = 2, - ACTIONS(3), 1, + [49039] = 2, + ACTIONS(3038), 1, + anon_sym_from, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2262), 1, - anon_sym_EQ, - [43405] = 2, + [49047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2749), 1, - anon_sym_from, - [43412] = 2, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3040), 1, + sym_regex_pattern, + [49057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2665), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3042), 1, + anon_sym_SLASH2, + [49067] = 2, + ACTIONS(3044), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [49075] = 2, + ACTIONS(3046), 1, anon_sym_from, - [43419] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2369), 1, - anon_sym_EQ, - [43426] = 2, + [49083] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2751), 1, - sym_identifier, - [43433] = 2, - ACTIONS(3), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3048), 1, + sym_regex_pattern, + [49093] = 2, + ACTIONS(1653), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2753), 1, - anon_sym_EQ_GT, - [43440] = 2, - ACTIONS(3), 1, + [49101] = 2, + ACTIONS(1685), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2755), 1, - anon_sym_EQ_GT, - [43447] = 2, - ACTIONS(3), 1, + [49109] = 2, + ACTIONS(3050), 1, + anon_sym_from, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2528), 1, + [49117] = 2, + ACTIONS(3052), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [49125] = 2, + ACTIONS(2800), 1, anon_sym_RBRACE, - [43454] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1507), 1, - anon_sym_RPAREN, - [43461] = 2, - ACTIONS(3), 1, + [49133] = 2, + ACTIONS(3054), 1, + anon_sym_from, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2757), 1, - anon_sym_GT, - [43468] = 2, - ACTIONS(3), 1, + [49141] = 2, + ACTIONS(3056), 1, + anon_sym_function, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2759), 1, - anon_sym_EQ_GT, - [43475] = 2, - ACTIONS(3), 1, + [49149] = 2, + ACTIONS(3058), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1756), 1, - anon_sym_EQ, - [43482] = 2, - ACTIONS(3), 1, + [49157] = 2, + ACTIONS(1631), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [49165] = 2, + ACTIONS(1629), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2761), 1, + [49173] = 2, + ACTIONS(3060), 1, anon_sym_from, - [43489] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1576), 1, + [49181] = 2, + ACTIONS(1671), 1, anon_sym_RBRACK, - [43496] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1578), 1, + [49189] = 2, + ACTIONS(1623), 1, anon_sym_RPAREN, - [43503] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2763), 1, - anon_sym_function, - [43510] = 2, - ACTIONS(3), 1, + [49197] = 2, + ACTIONS(2813), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2765), 1, - sym_identifier, - [43517] = 2, - ACTIONS(3), 1, + [49205] = 2, + ACTIONS(2822), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2767), 1, + [49213] = 2, + ACTIONS(2850), 1, anon_sym_GT, - [43524] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2769), 1, - sym_identifier, - [43531] = 2, - ACTIONS(3), 1, + [49221] = 2, + ACTIONS(1689), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2771), 1, - anon_sym_GT, - [43538] = 2, + [49229] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1582), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3062), 1, + anon_sym_SLASH2, + [49239] = 2, + ACTIONS(1691), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [49247] = 2, + ACTIONS(1621), 1, anon_sym_RPAREN, - [43545] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1505), 1, - anon_sym_COLON, - [43552] = 2, - ACTIONS(1992), 1, + [49255] = 2, + ACTIONS(1679), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2773), 1, - sym_regex_pattern, - [43559] = 2, - ACTIONS(3), 1, + [49263] = 2, + ACTIONS(1669), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1566), 1, + [49271] = 2, + ACTIONS(1665), 1, anon_sym_RPAREN, - [43566] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2775), 1, + [49279] = 2, + ACTIONS(2811), 1, anon_sym_GT, - [43573] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2777), 1, - anon_sym_GT, - [43580] = 2, + [49287] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1584), 1, - anon_sym_RPAREN, - [43587] = 2, - ACTIONS(3), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3064), 1, + anon_sym_SLASH2, + [49297] = 2, + ACTIONS(3030), 1, + anon_sym_target, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2779), 1, + [49305] = 2, + ACTIONS(3066), 1, sym_identifier, - [43594] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2781), 1, - anon_sym_EQ_GT, - [43601] = 2, + [49313] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_EQ_GT, - [43608] = 2, - ACTIONS(3), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3068), 1, + anon_sym_SLASH2, + [49323] = 2, + ACTIONS(1731), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1936), 1, + [49331] = 2, + ACTIONS(2171), 1, anon_sym_EQ_GT, - [43615] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2494), 1, - anon_sym_as, - [43622] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2785), 1, + [49339] = 2, + ACTIONS(3070), 1, anon_sym_EQ_GT, - [43629] = 2, - ACTIONS(1992), 1, - sym_comment, - ACTIONS(2787), 1, - sym_regex_pattern, - [43636] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2789), 1, - anon_sym_GT, - [43643] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2791), 1, + [49347] = 2, + ACTIONS(3072), 1, anon_sym_EQ_GT, - [43650] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2793), 1, + [49355] = 2, + ACTIONS(3074), 1, anon_sym_EQ_GT, - [43657] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2795), 1, + [49363] = 2, + ACTIONS(3076), 1, anon_sym_EQ_GT, - [43664] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1556), 1, + [49371] = 2, + ACTIONS(1655), 1, anon_sym_RBRACE, - [43671] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1560), 1, - anon_sym_RBRACK, - [43678] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2797), 1, - anon_sym_GT, - [43685] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1515), 1, - anon_sym_RBRACK, - [43692] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2799), 1, + [49379] = 2, + ACTIONS(3078), 1, anon_sym_EQ_GT, - [43699] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2801), 1, - anon_sym_from, - [43706] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2476), 1, - anon_sym_EQ, - [43713] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2803), 1, - anon_sym_GT, - [43720] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2805), 1, - anon_sym_GT, - [43727] = 2, - ACTIONS(3), 1, + [49387] = 2, + ACTIONS(1681), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2807), 1, + [49395] = 2, + ACTIONS(3080), 1, anon_sym_COLON, - [43734] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2809), 1, - anon_sym_GT, - [43741] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1580), 1, - anon_sym_RPAREN, - [43748] = 2, - ACTIONS(3), 1, + [49403] = 2, + ACTIONS(3082), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2811), 1, - anon_sym_from, - [43755] = 2, - ACTIONS(3), 1, + [49411] = 2, + ACTIONS(3084), 1, + anon_sym_while, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2813), 1, - anon_sym_GT, - [43762] = 2, - ACTIONS(3), 1, + [49419] = 2, + ACTIONS(3086), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2815), 1, - anon_sym_GT, - [43769] = 2, - ACTIONS(3), 1, + [49427] = 2, + ACTIONS(3088), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2817), 1, - anon_sym_GT, - [43776] = 2, - ACTIONS(3), 1, + [49435] = 2, + ACTIONS(2760), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2819), 1, - anon_sym_GT, - [43783] = 2, - ACTIONS(3), 1, + [49443] = 2, + ACTIONS(1609), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2821), 1, - anon_sym_GT, - [43790] = 2, - ACTIONS(3), 1, + [49451] = 2, + ACTIONS(1661), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2823), 1, - sym_identifier, - [43797] = 2, - ACTIONS(3), 1, + [49459] = 2, + ACTIONS(1675), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2825), 1, + [49467] = 2, + ACTIONS(3090), 1, anon_sym_EQ, - [43804] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2552), 1, - anon_sym_RBRACE, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(269)] = 0, - [SMALL_STATE(270)] = 85, - [SMALL_STATE(271)] = 156, - [SMALL_STATE(272)] = 227, - [SMALL_STATE(273)] = 312, - [SMALL_STATE(274)] = 398, - [SMALL_STATE(275)] = 484, - [SMALL_STATE(276)] = 572, - [SMALL_STATE(277)] = 656, - [SMALL_STATE(278)] = 742, - [SMALL_STATE(279)] = 826, - [SMALL_STATE(280)] = 910, - [SMALL_STATE(281)] = 996, - [SMALL_STATE(282)] = 1074, - [SMALL_STATE(283)] = 1158, - [SMALL_STATE(284)] = 1244, - [SMALL_STATE(285)] = 1329, - [SMALL_STATE(286)] = 1411, - [SMALL_STATE(287)] = 1483, - [SMALL_STATE(288)] = 1565, - [SMALL_STATE(289)] = 1647, - [SMALL_STATE(290)] = 1733, - [SMALL_STATE(291)] = 1802, - [SMALL_STATE(292)] = 1871, - [SMALL_STATE(293)] = 1938, - [SMALL_STATE(294)] = 2007, - [SMALL_STATE(295)] = 2074, - [SMALL_STATE(296)] = 2143, - [SMALL_STATE(297)] = 2228, - [SMALL_STATE(298)] = 2295, - [SMALL_STATE(299)] = 2364, - [SMALL_STATE(300)] = 2433, - [SMALL_STATE(301)] = 2504, - [SMALL_STATE(302)] = 2573, - [SMALL_STATE(303)] = 2640, - [SMALL_STATE(304)] = 2721, - [SMALL_STATE(305)] = 2790, - [SMALL_STATE(306)] = 2859, - [SMALL_STATE(307)] = 2926, - [SMALL_STATE(308)] = 2993, - [SMALL_STATE(309)] = 3060, - [SMALL_STATE(310)] = 3129, - [SMALL_STATE(311)] = 3196, - [SMALL_STATE(312)] = 3277, - [SMALL_STATE(313)] = 3343, - [SMALL_STATE(314)] = 3409, - [SMALL_STATE(315)] = 3475, - [SMALL_STATE(316)] = 3541, - [SMALL_STATE(317)] = 3607, - [SMALL_STATE(318)] = 3673, - [SMALL_STATE(319)] = 3739, - [SMALL_STATE(320)] = 3805, - [SMALL_STATE(321)] = 3871, - [SMALL_STATE(322)] = 3937, - [SMALL_STATE(323)] = 4003, - [SMALL_STATE(324)] = 4069, - [SMALL_STATE(325)] = 4135, - [SMALL_STATE(326)] = 4201, - [SMALL_STATE(327)] = 4267, - [SMALL_STATE(328)] = 4333, - [SMALL_STATE(329)] = 4399, - [SMALL_STATE(330)] = 4465, - [SMALL_STATE(331)] = 4531, - [SMALL_STATE(332)] = 4597, - [SMALL_STATE(333)] = 4663, - [SMALL_STATE(334)] = 4729, - [SMALL_STATE(335)] = 4795, - [SMALL_STATE(336)] = 4861, - [SMALL_STATE(337)] = 4927, - [SMALL_STATE(338)] = 4993, - [SMALL_STATE(339)] = 5059, - [SMALL_STATE(340)] = 5125, - [SMALL_STATE(341)] = 5191, - [SMALL_STATE(342)] = 5257, - [SMALL_STATE(343)] = 5323, - [SMALL_STATE(344)] = 5389, - [SMALL_STATE(345)] = 5455, - [SMALL_STATE(346)] = 5521, - [SMALL_STATE(347)] = 5587, - [SMALL_STATE(348)] = 5653, - [SMALL_STATE(349)] = 5719, - [SMALL_STATE(350)] = 5785, - [SMALL_STATE(351)] = 5851, - [SMALL_STATE(352)] = 5917, - [SMALL_STATE(353)] = 5983, - [SMALL_STATE(354)] = 6049, - [SMALL_STATE(355)] = 6115, - [SMALL_STATE(356)] = 6181, - [SMALL_STATE(357)] = 6247, - [SMALL_STATE(358)] = 6313, - [SMALL_STATE(359)] = 6379, - [SMALL_STATE(360)] = 6445, - [SMALL_STATE(361)] = 6526, - [SMALL_STATE(362)] = 6607, - [SMALL_STATE(363)] = 6688, - [SMALL_STATE(364)] = 6752, - [SMALL_STATE(365)] = 6820, - [SMALL_STATE(366)] = 6884, - [SMALL_STATE(367)] = 6948, - [SMALL_STATE(368)] = 7012, - [SMALL_STATE(369)] = 7081, - [SMALL_STATE(370)] = 7150, - [SMALL_STATE(371)] = 7212, - [SMALL_STATE(372)] = 7278, - [SMALL_STATE(373)] = 7348, - [SMALL_STATE(374)] = 7410, - [SMALL_STATE(375)] = 7478, - [SMALL_STATE(376)] = 7544, - [SMALL_STATE(377)] = 7612, - [SMALL_STATE(378)] = 7682, - [SMALL_STATE(379)] = 7752, - [SMALL_STATE(380)] = 7814, - [SMALL_STATE(381)] = 7876, - [SMALL_STATE(382)] = 7944, - [SMALL_STATE(383)] = 8014, - [SMALL_STATE(384)] = 8086, - [SMALL_STATE(385)] = 8154, - [SMALL_STATE(386)] = 8224, - [SMALL_STATE(387)] = 8285, - [SMALL_STATE(388)] = 8346, - [SMALL_STATE(389)] = 8411, - [SMALL_STATE(390)] = 8478, - [SMALL_STATE(391)] = 8547, - [SMALL_STATE(392)] = 8614, - [SMALL_STATE(393)] = 8675, - [SMALL_STATE(394)] = 8736, - [SMALL_STATE(395)] = 8801, - [SMALL_STATE(396)] = 8870, - [SMALL_STATE(397)] = 8937, - [SMALL_STATE(398)] = 9003, - [SMALL_STATE(399)] = 9069, - [SMALL_STATE(400)] = 9139, - [SMALL_STATE(401)] = 9208, - [SMALL_STATE(402)] = 9273, - [SMALL_STATE(403)] = 9338, - [SMALL_STATE(404)] = 9405, - [SMALL_STATE(405)] = 9471, - [SMALL_STATE(406)] = 9533, - [SMALL_STATE(407)] = 9601, - [SMALL_STATE(408)] = 9665, - [SMALL_STATE(409)] = 9719, - [SMALL_STATE(410)] = 9783, - [SMALL_STATE(411)] = 9845, - [SMALL_STATE(412)] = 9909, - [SMALL_STATE(413)] = 9962, - [SMALL_STATE(414)] = 10013, - [SMALL_STATE(415)] = 10066, - [SMALL_STATE(416)] = 10125, - [SMALL_STATE(417)] = 10176, - [SMALL_STATE(418)] = 10229, - [SMALL_STATE(419)] = 10280, - [SMALL_STATE(420)] = 10333, - [SMALL_STATE(421)] = 10427, - [SMALL_STATE(422)] = 10475, - [SMALL_STATE(423)] = 10523, - [SMALL_STATE(424)] = 10571, - [SMALL_STATE(425)] = 10619, - [SMALL_STATE(426)] = 10681, - [SMALL_STATE(427)] = 10741, - [SMALL_STATE(428)] = 10789, - [SMALL_STATE(429)] = 10837, - [SMALL_STATE(430)] = 10885, - [SMALL_STATE(431)] = 10933, - [SMALL_STATE(432)] = 10981, - [SMALL_STATE(433)] = 11035, - [SMALL_STATE(434)] = 11083, - [SMALL_STATE(435)] = 11177, - [SMALL_STATE(436)] = 11225, - [SMALL_STATE(437)] = 11273, - [SMALL_STATE(438)] = 11321, - [SMALL_STATE(439)] = 11369, - [SMALL_STATE(440)] = 11417, - [SMALL_STATE(441)] = 11511, - [SMALL_STATE(442)] = 11559, - [SMALL_STATE(443)] = 11653, - [SMALL_STATE(444)] = 11701, - [SMALL_STATE(445)] = 11749, - [SMALL_STATE(446)] = 11799, - [SMALL_STATE(447)] = 11847, - [SMALL_STATE(448)] = 11895, - [SMALL_STATE(449)] = 11943, - [SMALL_STATE(450)] = 11991, - [SMALL_STATE(451)] = 12039, - [SMALL_STATE(452)] = 12087, - [SMALL_STATE(453)] = 12151, - [SMALL_STATE(454)] = 12247, - [SMALL_STATE(455)] = 12295, - [SMALL_STATE(456)] = 12369, - [SMALL_STATE(457)] = 12455, - [SMALL_STATE(458)] = 12543, - [SMALL_STATE(459)] = 12613, - [SMALL_STATE(460)] = 12695, - [SMALL_STATE(461)] = 12779, - [SMALL_STATE(462)] = 12865, - [SMALL_STATE(463)] = 12933, - [SMALL_STATE(464)] = 13011, - [SMALL_STATE(465)] = 13073, - [SMALL_STATE(466)] = 13121, - [SMALL_STATE(467)] = 13169, - [SMALL_STATE(468)] = 13263, - [SMALL_STATE(469)] = 13311, - [SMALL_STATE(470)] = 13405, - [SMALL_STATE(471)] = 13453, - [SMALL_STATE(472)] = 13501, - [SMALL_STATE(473)] = 13549, - [SMALL_STATE(474)] = 13643, - [SMALL_STATE(475)] = 13691, - [SMALL_STATE(476)] = 13739, - [SMALL_STATE(477)] = 13833, - [SMALL_STATE(478)] = 13881, - [SMALL_STATE(479)] = 13929, - [SMALL_STATE(480)] = 13977, - [SMALL_STATE(481)] = 14025, - [SMALL_STATE(482)] = 14073, - [SMALL_STATE(483)] = 14121, - [SMALL_STATE(484)] = 14169, - [SMALL_STATE(485)] = 14217, - [SMALL_STATE(486)] = 14265, - [SMALL_STATE(487)] = 14313, - [SMALL_STATE(488)] = 14361, - [SMALL_STATE(489)] = 14409, - [SMALL_STATE(490)] = 14457, - [SMALL_STATE(491)] = 14551, - [SMALL_STATE(492)] = 14599, - [SMALL_STATE(493)] = 14647, - [SMALL_STATE(494)] = 14695, - [SMALL_STATE(495)] = 14743, - [SMALL_STATE(496)] = 14791, - [SMALL_STATE(497)] = 14839, - [SMALL_STATE(498)] = 14887, - [SMALL_STATE(499)] = 14935, - [SMALL_STATE(500)] = 14997, - [SMALL_STATE(501)] = 15087, - [SMALL_STATE(502)] = 15134, - [SMALL_STATE(503)] = 15191, - [SMALL_STATE(504)] = 15244, - [SMALL_STATE(505)] = 15295, - [SMALL_STATE(506)] = 15388, - [SMALL_STATE(507)] = 15437, - [SMALL_STATE(508)] = 15530, - [SMALL_STATE(509)] = 15623, - [SMALL_STATE(510)] = 15670, - [SMALL_STATE(511)] = 15765, - [SMALL_STATE(512)] = 15858, - [SMALL_STATE(513)] = 15951, - [SMALL_STATE(514)] = 16044, - [SMALL_STATE(515)] = 16095, - [SMALL_STATE(516)] = 16188, - [SMALL_STATE(517)] = 16281, - [SMALL_STATE(518)] = 16374, - [SMALL_STATE(519)] = 16423, - [SMALL_STATE(520)] = 16520, - [SMALL_STATE(521)] = 16569, - [SMALL_STATE(522)] = 16618, - [SMALL_STATE(523)] = 16667, - [SMALL_STATE(524)] = 16716, - [SMALL_STATE(525)] = 16765, - [SMALL_STATE(526)] = 16858, - [SMALL_STATE(527)] = 16907, - [SMALL_STATE(528)] = 17000, - [SMALL_STATE(529)] = 17093, - [SMALL_STATE(530)] = 17182, - [SMALL_STATE(531)] = 17245, - [SMALL_STATE(532)] = 17318, - [SMALL_STATE(533)] = 17403, - [SMALL_STATE(534)] = 17490, - [SMALL_STATE(535)] = 17559, - [SMALL_STATE(536)] = 17640, - [SMALL_STATE(537)] = 17723, - [SMALL_STATE(538)] = 17808, - [SMALL_STATE(539)] = 17875, - [SMALL_STATE(540)] = 17952, - [SMALL_STATE(541)] = 18041, - [SMALL_STATE(542)] = 18134, - [SMALL_STATE(543)] = 18227, - [SMALL_STATE(544)] = 18320, - [SMALL_STATE(545)] = 18413, - [SMALL_STATE(546)] = 18506, - [SMALL_STATE(547)] = 18599, - [SMALL_STATE(548)] = 18676, - [SMALL_STATE(549)] = 18739, - [SMALL_STATE(550)] = 18812, - [SMALL_STATE(551)] = 18897, - [SMALL_STATE(552)] = 18984, - [SMALL_STATE(553)] = 19053, - [SMALL_STATE(554)] = 19134, - [SMALL_STATE(555)] = 19217, - [SMALL_STATE(556)] = 19302, - [SMALL_STATE(557)] = 19369, - [SMALL_STATE(558)] = 19462, - [SMALL_STATE(559)] = 19555, - [SMALL_STATE(560)] = 19601, - [SMALL_STATE(561)] = 19695, - [SMALL_STATE(562)] = 19745, - [SMALL_STATE(563)] = 19839, - [SMALL_STATE(564)] = 19885, - [SMALL_STATE(565)] = 19935, - [SMALL_STATE(566)] = 19981, - [SMALL_STATE(567)] = 20027, - [SMALL_STATE(568)] = 20073, - [SMALL_STATE(569)] = 20119, - [SMALL_STATE(570)] = 20165, - [SMALL_STATE(571)] = 20211, - [SMALL_STATE(572)] = 20261, - [SMALL_STATE(573)] = 20307, - [SMALL_STATE(574)] = 20353, - [SMALL_STATE(575)] = 20399, - [SMALL_STATE(576)] = 20449, - [SMALL_STATE(577)] = 20499, - [SMALL_STATE(578)] = 20545, - [SMALL_STATE(579)] = 20591, - [SMALL_STATE(580)] = 20687, - [SMALL_STATE(581)] = 20737, - [SMALL_STATE(582)] = 20783, - [SMALL_STATE(583)] = 20833, - [SMALL_STATE(584)] = 20879, - [SMALL_STATE(585)] = 20929, - [SMALL_STATE(586)] = 20977, - [SMALL_STATE(587)] = 21023, - [SMALL_STATE(588)] = 21069, - [SMALL_STATE(589)] = 21115, - [SMALL_STATE(590)] = 21161, - [SMALL_STATE(591)] = 21213, - [SMALL_STATE(592)] = 21265, - [SMALL_STATE(593)] = 21317, - [SMALL_STATE(594)] = 21363, - [SMALL_STATE(595)] = 21459, - [SMALL_STATE(596)] = 21505, - [SMALL_STATE(597)] = 21601, - [SMALL_STATE(598)] = 21649, - [SMALL_STATE(599)] = 21701, - [SMALL_STATE(600)] = 21747, - [SMALL_STATE(601)] = 21841, - [SMALL_STATE(602)] = 21893, - [SMALL_STATE(603)] = 21989, - [SMALL_STATE(604)] = 22039, - [SMALL_STATE(605)] = 22085, - [SMALL_STATE(606)] = 22131, - [SMALL_STATE(607)] = 22223, - [SMALL_STATE(608)] = 22269, - [SMALL_STATE(609)] = 22317, - [SMALL_STATE(610)] = 22363, - [SMALL_STATE(611)] = 22459, - [SMALL_STATE(612)] = 22505, - [SMALL_STATE(613)] = 22551, - [SMALL_STATE(614)] = 22597, - [SMALL_STATE(615)] = 22643, - [SMALL_STATE(616)] = 22689, - [SMALL_STATE(617)] = 22735, - [SMALL_STATE(618)] = 22781, - [SMALL_STATE(619)] = 22827, - [SMALL_STATE(620)] = 22873, - [SMALL_STATE(621)] = 22923, - [SMALL_STATE(622)] = 22969, - [SMALL_STATE(623)] = 23015, - [SMALL_STATE(624)] = 23063, - [SMALL_STATE(625)] = 23109, - [SMALL_STATE(626)] = 23155, - [SMALL_STATE(627)] = 23201, - [SMALL_STATE(628)] = 23247, - [SMALL_STATE(629)] = 23293, - [SMALL_STATE(630)] = 23387, - [SMALL_STATE(631)] = 23433, - [SMALL_STATE(632)] = 23529, - [SMALL_STATE(633)] = 23579, - [SMALL_STATE(634)] = 23625, - [SMALL_STATE(635)] = 23675, - [SMALL_STATE(636)] = 23721, - [SMALL_STATE(637)] = 23771, - [SMALL_STATE(638)] = 23863, - [SMALL_STATE(639)] = 23909, - [SMALL_STATE(640)] = 23955, - [SMALL_STATE(641)] = 24001, - [SMALL_STATE(642)] = 24051, - [SMALL_STATE(643)] = 24144, - [SMALL_STATE(644)] = 24237, - [SMALL_STATE(645)] = 24286, - [SMALL_STATE(646)] = 24377, - [SMALL_STATE(647)] = 24470, - [SMALL_STATE(648)] = 24563, - [SMALL_STATE(649)] = 24656, - [SMALL_STATE(650)] = 24705, - [SMALL_STATE(651)] = 24796, - [SMALL_STATE(652)] = 24889, - [SMALL_STATE(653)] = 24938, - [SMALL_STATE(654)] = 25029, - [SMALL_STATE(655)] = 25120, - [SMALL_STATE(656)] = 25181, - [SMALL_STATE(657)] = 25252, - [SMALL_STATE(658)] = 25335, - [SMALL_STATE(659)] = 25428, - [SMALL_STATE(660)] = 25521, - [SMALL_STATE(661)] = 25606, - [SMALL_STATE(662)] = 25699, - [SMALL_STATE(663)] = 25790, - [SMALL_STATE(664)] = 25881, - [SMALL_STATE(665)] = 25948, - [SMALL_STATE(666)] = 26027, - [SMALL_STATE(667)] = 26118, - [SMALL_STATE(668)] = 26199, - [SMALL_STATE(669)] = 26282, - [SMALL_STATE(670)] = 26347, - [SMALL_STATE(671)] = 26422, - [SMALL_STATE(672)] = 26515, - [SMALL_STATE(673)] = 26602, - [SMALL_STATE(674)] = 26695, - [SMALL_STATE(675)] = 26786, - [SMALL_STATE(676)] = 26877, - [SMALL_STATE(677)] = 26968, - [SMALL_STATE(678)] = 27061, - [SMALL_STATE(679)] = 27154, - [SMALL_STATE(680)] = 27245, - [SMALL_STATE(681)] = 27336, - [SMALL_STATE(682)] = 27429, - [SMALL_STATE(683)] = 27522, - [SMALL_STATE(684)] = 27615, - [SMALL_STATE(685)] = 27708, - [SMALL_STATE(686)] = 27801, - [SMALL_STATE(687)] = 27891, - [SMALL_STATE(688)] = 27981, - [SMALL_STATE(689)] = 28071, - [SMALL_STATE(690)] = 28161, - [SMALL_STATE(691)] = 28251, - [SMALL_STATE(692)] = 28311, - [SMALL_STATE(693)] = 28381, - [SMALL_STATE(694)] = 28463, - [SMALL_STATE(695)] = 28547, - [SMALL_STATE(696)] = 28613, - [SMALL_STATE(697)] = 28691, - [SMALL_STATE(698)] = 28771, - [SMALL_STATE(699)] = 28853, - [SMALL_STATE(700)] = 28917, - [SMALL_STATE(701)] = 28991, - [SMALL_STATE(702)] = 29077, - [SMALL_STATE(703)] = 29127, - [SMALL_STATE(704)] = 29217, - [SMALL_STATE(705)] = 29307, - [SMALL_STATE(706)] = 29397, - [SMALL_STATE(707)] = 29487, - [SMALL_STATE(708)] = 29577, - [SMALL_STATE(709)] = 29667, - [SMALL_STATE(710)] = 29757, - [SMALL_STATE(711)] = 29807, - [SMALL_STATE(712)] = 29897, - [SMALL_STATE(713)] = 29989, - [SMALL_STATE(714)] = 30079, - [SMALL_STATE(715)] = 30169, - [SMALL_STATE(716)] = 30259, - [SMALL_STATE(717)] = 30349, - [SMALL_STATE(718)] = 30399, - [SMALL_STATE(719)] = 30449, - [SMALL_STATE(720)] = 30494, - [SMALL_STATE(721)] = 30543, - [SMALL_STATE(722)] = 30588, - [SMALL_STATE(723)] = 30675, - [SMALL_STATE(724)] = 30724, - [SMALL_STATE(725)] = 30773, - [SMALL_STATE(726)] = 30822, - [SMALL_STATE(727)] = 30909, - [SMALL_STATE(728)] = 30994, - [SMALL_STATE(729)] = 31079, - [SMALL_STATE(730)] = 31164, - [SMALL_STATE(731)] = 31249, - [SMALL_STATE(732)] = 31334, - [SMALL_STATE(733)] = 31419, - [SMALL_STATE(734)] = 31504, - [SMALL_STATE(735)] = 31581, - [SMALL_STATE(736)] = 31640, - [SMALL_STATE(737)] = 31699, - [SMALL_STATE(738)] = 31753, - [SMALL_STATE(739)] = 31815, - [SMALL_STATE(740)] = 31871, - [SMALL_STATE(741)] = 31933, - [SMALL_STATE(742)] = 31989, - [SMALL_STATE(743)] = 32047, - [SMALL_STATE(744)] = 32109, - [SMALL_STATE(745)] = 32165, - [SMALL_STATE(746)] = 32223, - [SMALL_STATE(747)] = 32285, - [SMALL_STATE(748)] = 32343, - [SMALL_STATE(749)] = 32399, - [SMALL_STATE(750)] = 32457, - [SMALL_STATE(751)] = 32519, - [SMALL_STATE(752)] = 32577, - [SMALL_STATE(753)] = 32639, - [SMALL_STATE(754)] = 32695, - [SMALL_STATE(755)] = 32753, - [SMALL_STATE(756)] = 32815, - [SMALL_STATE(757)] = 32877, - [SMALL_STATE(758)] = 32933, - [SMALL_STATE(759)] = 32991, - [SMALL_STATE(760)] = 33047, - [SMALL_STATE(761)] = 33098, - [SMALL_STATE(762)] = 33149, - [SMALL_STATE(763)] = 33200, - [SMALL_STATE(764)] = 33251, - [SMALL_STATE(765)] = 33302, - [SMALL_STATE(766)] = 33353, - [SMALL_STATE(767)] = 33404, - [SMALL_STATE(768)] = 33454, - [SMALL_STATE(769)] = 33502, - [SMALL_STATE(770)] = 33549, - [SMALL_STATE(771)] = 33594, - [SMALL_STATE(772)] = 33651, - [SMALL_STATE(773)] = 33694, - [SMALL_STATE(774)] = 33737, - [SMALL_STATE(775)] = 33782, - [SMALL_STATE(776)] = 33825, - [SMALL_STATE(777)] = 33872, - [SMALL_STATE(778)] = 33917, - [SMALL_STATE(779)] = 33962, - [SMALL_STATE(780)] = 34000, - [SMALL_STATE(781)] = 34040, - [SMALL_STATE(782)] = 34092, - [SMALL_STATE(783)] = 34130, - [SMALL_STATE(784)] = 34168, - [SMALL_STATE(785)] = 34206, - [SMALL_STATE(786)] = 34244, - [SMALL_STATE(787)] = 34296, - [SMALL_STATE(788)] = 34334, - [SMALL_STATE(789)] = 34365, - [SMALL_STATE(790)] = 34410, - [SMALL_STATE(791)] = 34434, - [SMALL_STATE(792)] = 34474, - [SMALL_STATE(793)] = 34498, - [SMALL_STATE(794)] = 34522, - [SMALL_STATE(795)] = 34546, - [SMALL_STATE(796)] = 34570, - [SMALL_STATE(797)] = 34594, - [SMALL_STATE(798)] = 34618, - [SMALL_STATE(799)] = 34642, - [SMALL_STATE(800)] = 34666, - [SMALL_STATE(801)] = 34696, - [SMALL_STATE(802)] = 34720, - [SMALL_STATE(803)] = 34762, - [SMALL_STATE(804)] = 34786, - [SMALL_STATE(805)] = 34810, - [SMALL_STATE(806)] = 34834, - [SMALL_STATE(807)] = 34858, - [SMALL_STATE(808)] = 34882, - [SMALL_STATE(809)] = 34906, - [SMALL_STATE(810)] = 34948, - [SMALL_STATE(811)] = 34992, - [SMALL_STATE(812)] = 35034, - [SMALL_STATE(813)] = 35058, - [SMALL_STATE(814)] = 35082, - [SMALL_STATE(815)] = 35106, - [SMALL_STATE(816)] = 35130, - [SMALL_STATE(817)] = 35154, - [SMALL_STATE(818)] = 35192, - [SMALL_STATE(819)] = 35234, - [SMALL_STATE(820)] = 35269, - [SMALL_STATE(821)] = 35294, - [SMALL_STATE(822)] = 35329, - [SMALL_STATE(823)] = 35364, - [SMALL_STATE(824)] = 35399, - [SMALL_STATE(825)] = 35434, - [SMALL_STATE(826)] = 35455, - [SMALL_STATE(827)] = 35490, - [SMALL_STATE(828)] = 35525, - [SMALL_STATE(829)] = 35546, - [SMALL_STATE(830)] = 35581, - [SMALL_STATE(831)] = 35616, - [SMALL_STATE(832)] = 35651, - [SMALL_STATE(833)] = 35672, - [SMALL_STATE(834)] = 35693, - [SMALL_STATE(835)] = 35714, - [SMALL_STATE(836)] = 35746, - [SMALL_STATE(837)] = 35768, - [SMALL_STATE(838)] = 35790, - [SMALL_STATE(839)] = 35822, - [SMALL_STATE(840)] = 35854, - [SMALL_STATE(841)] = 35876, - [SMALL_STATE(842)] = 35908, - [SMALL_STATE(843)] = 35940, - [SMALL_STATE(844)] = 35972, - [SMALL_STATE(845)] = 36004, - [SMALL_STATE(846)] = 36026, - [SMALL_STATE(847)] = 36048, - [SMALL_STATE(848)] = 36070, - [SMALL_STATE(849)] = 36092, - [SMALL_STATE(850)] = 36127, - [SMALL_STATE(851)] = 36162, - [SMALL_STATE(852)] = 36197, - [SMALL_STATE(853)] = 36232, - [SMALL_STATE(854)] = 36258, - [SMALL_STATE(855)] = 36284, - [SMALL_STATE(856)] = 36310, - [SMALL_STATE(857)] = 36336, - [SMALL_STATE(858)] = 36362, - [SMALL_STATE(859)] = 36394, - [SMALL_STATE(860)] = 36426, - [SMALL_STATE(861)] = 36458, - [SMALL_STATE(862)] = 36484, - [SMALL_STATE(863)] = 36510, - [SMALL_STATE(864)] = 36542, - [SMALL_STATE(865)] = 36568, - [SMALL_STATE(866)] = 36600, - [SMALL_STATE(867)] = 36632, - [SMALL_STATE(868)] = 36664, - [SMALL_STATE(869)] = 36696, - [SMALL_STATE(870)] = 36722, - [SMALL_STATE(871)] = 36745, - [SMALL_STATE(872)] = 36768, - [SMALL_STATE(873)] = 36797, - [SMALL_STATE(874)] = 36820, - [SMALL_STATE(875)] = 36849, - [SMALL_STATE(876)] = 36872, - [SMALL_STATE(877)] = 36901, - [SMALL_STATE(878)] = 36930, - [SMALL_STATE(879)] = 36959, - [SMALL_STATE(880)] = 36988, - [SMALL_STATE(881)] = 37017, - [SMALL_STATE(882)] = 37046, - [SMALL_STATE(883)] = 37075, - [SMALL_STATE(884)] = 37104, - [SMALL_STATE(885)] = 37127, - [SMALL_STATE(886)] = 37156, - [SMALL_STATE(887)] = 37185, - [SMALL_STATE(888)] = 37214, - [SMALL_STATE(889)] = 37243, - [SMALL_STATE(890)] = 37272, - [SMALL_STATE(891)] = 37301, - [SMALL_STATE(892)] = 37330, - [SMALL_STATE(893)] = 37359, - [SMALL_STATE(894)] = 37388, - [SMALL_STATE(895)] = 37417, - [SMALL_STATE(896)] = 37440, - [SMALL_STATE(897)] = 37463, - [SMALL_STATE(898)] = 37492, - [SMALL_STATE(899)] = 37515, - [SMALL_STATE(900)] = 37538, - [SMALL_STATE(901)] = 37561, - [SMALL_STATE(902)] = 37584, - [SMALL_STATE(903)] = 37607, - [SMALL_STATE(904)] = 37630, - [SMALL_STATE(905)] = 37653, - [SMALL_STATE(906)] = 37666, - [SMALL_STATE(907)] = 37689, - [SMALL_STATE(908)] = 37712, - [SMALL_STATE(909)] = 37731, - [SMALL_STATE(910)] = 37754, - [SMALL_STATE(911)] = 37777, - [SMALL_STATE(912)] = 37800, - [SMALL_STATE(913)] = 37813, - [SMALL_STATE(914)] = 37832, - [SMALL_STATE(915)] = 37845, - [SMALL_STATE(916)] = 37868, - [SMALL_STATE(917)] = 37883, - [SMALL_STATE(918)] = 37902, - [SMALL_STATE(919)] = 37915, - [SMALL_STATE(920)] = 37930, - [SMALL_STATE(921)] = 37953, - [SMALL_STATE(922)] = 37966, - [SMALL_STATE(923)] = 37984, - [SMALL_STATE(924)] = 38004, - [SMALL_STATE(925)] = 38018, - [SMALL_STATE(926)] = 38036, - [SMALL_STATE(927)] = 38054, - [SMALL_STATE(928)] = 38066, - [SMALL_STATE(929)] = 38078, - [SMALL_STATE(930)] = 38098, - [SMALL_STATE(931)] = 38120, - [SMALL_STATE(932)] = 38140, - [SMALL_STATE(933)] = 38158, - [SMALL_STATE(934)] = 38180, - [SMALL_STATE(935)] = 38200, - [SMALL_STATE(936)] = 38218, - [SMALL_STATE(937)] = 38238, - [SMALL_STATE(938)] = 38256, - [SMALL_STATE(939)] = 38274, - [SMALL_STATE(940)] = 38296, - [SMALL_STATE(941)] = 38318, - [SMALL_STATE(942)] = 38338, - [SMALL_STATE(943)] = 38356, - [SMALL_STATE(944)] = 38372, - [SMALL_STATE(945)] = 38394, - [SMALL_STATE(946)] = 38416, - [SMALL_STATE(947)] = 38430, - [SMALL_STATE(948)] = 38452, - [SMALL_STATE(949)] = 38464, - [SMALL_STATE(950)] = 38476, - [SMALL_STATE(951)] = 38488, - [SMALL_STATE(952)] = 38500, - [SMALL_STATE(953)] = 38512, - [SMALL_STATE(954)] = 38532, - [SMALL_STATE(955)] = 38554, - [SMALL_STATE(956)] = 38576, - [SMALL_STATE(957)] = 38598, - [SMALL_STATE(958)] = 38620, - [SMALL_STATE(959)] = 38642, - [SMALL_STATE(960)] = 38655, - [SMALL_STATE(961)] = 38672, - [SMALL_STATE(962)] = 38685, - [SMALL_STATE(963)] = 38698, - [SMALL_STATE(964)] = 38711, - [SMALL_STATE(965)] = 38724, - [SMALL_STATE(966)] = 38743, - [SMALL_STATE(967)] = 38756, - [SMALL_STATE(968)] = 38769, - [SMALL_STATE(969)] = 38782, - [SMALL_STATE(970)] = 38795, - [SMALL_STATE(971)] = 38806, - [SMALL_STATE(972)] = 38825, - [SMALL_STATE(973)] = 38844, - [SMALL_STATE(974)] = 38863, - [SMALL_STATE(975)] = 38876, - [SMALL_STATE(976)] = 38889, - [SMALL_STATE(977)] = 38906, - [SMALL_STATE(978)] = 38925, - [SMALL_STATE(979)] = 38944, - [SMALL_STATE(980)] = 38957, - [SMALL_STATE(981)] = 38976, - [SMALL_STATE(982)] = 38989, - [SMALL_STATE(983)] = 39008, - [SMALL_STATE(984)] = 39023, - [SMALL_STATE(985)] = 39038, - [SMALL_STATE(986)] = 39051, - [SMALL_STATE(987)] = 39064, - [SMALL_STATE(988)] = 39083, - [SMALL_STATE(989)] = 39102, - [SMALL_STATE(990)] = 39121, - [SMALL_STATE(991)] = 39134, - [SMALL_STATE(992)] = 39153, - [SMALL_STATE(993)] = 39166, - [SMALL_STATE(994)] = 39185, - [SMALL_STATE(995)] = 39198, - [SMALL_STATE(996)] = 39217, - [SMALL_STATE(997)] = 39236, - [SMALL_STATE(998)] = 39255, - [SMALL_STATE(999)] = 39271, - [SMALL_STATE(1000)] = 39285, - [SMALL_STATE(1001)] = 39299, - [SMALL_STATE(1002)] = 39309, - [SMALL_STATE(1003)] = 39319, - [SMALL_STATE(1004)] = 39333, - [SMALL_STATE(1005)] = 39349, - [SMALL_STATE(1006)] = 39363, - [SMALL_STATE(1007)] = 39379, - [SMALL_STATE(1008)] = 39395, - [SMALL_STATE(1009)] = 39411, - [SMALL_STATE(1010)] = 39425, - [SMALL_STATE(1011)] = 39439, - [SMALL_STATE(1012)] = 39453, - [SMALL_STATE(1013)] = 39469, - [SMALL_STATE(1014)] = 39485, - [SMALL_STATE(1015)] = 39501, - [SMALL_STATE(1016)] = 39513, - [SMALL_STATE(1017)] = 39523, - [SMALL_STATE(1018)] = 39537, - [SMALL_STATE(1019)] = 39553, - [SMALL_STATE(1020)] = 39569, - [SMALL_STATE(1021)] = 39585, - [SMALL_STATE(1022)] = 39595, - [SMALL_STATE(1023)] = 39609, - [SMALL_STATE(1024)] = 39619, - [SMALL_STATE(1025)] = 39633, - [SMALL_STATE(1026)] = 39647, - [SMALL_STATE(1027)] = 39659, - [SMALL_STATE(1028)] = 39673, - [SMALL_STATE(1029)] = 39687, - [SMALL_STATE(1030)] = 39701, - [SMALL_STATE(1031)] = 39717, - [SMALL_STATE(1032)] = 39733, - [SMALL_STATE(1033)] = 39749, - [SMALL_STATE(1034)] = 39763, - [SMALL_STATE(1035)] = 39779, - [SMALL_STATE(1036)] = 39795, - [SMALL_STATE(1037)] = 39811, - [SMALL_STATE(1038)] = 39827, - [SMALL_STATE(1039)] = 39843, - [SMALL_STATE(1040)] = 39859, - [SMALL_STATE(1041)] = 39875, - [SMALL_STATE(1042)] = 39891, - [SMALL_STATE(1043)] = 39905, - [SMALL_STATE(1044)] = 39921, - [SMALL_STATE(1045)] = 39935, - [SMALL_STATE(1046)] = 39951, - [SMALL_STATE(1047)] = 39965, - [SMALL_STATE(1048)] = 39979, - [SMALL_STATE(1049)] = 39993, - [SMALL_STATE(1050)] = 40009, - [SMALL_STATE(1051)] = 40025, - [SMALL_STATE(1052)] = 40039, - [SMALL_STATE(1053)] = 40053, - [SMALL_STATE(1054)] = 40069, - [SMALL_STATE(1055)] = 40079, - [SMALL_STATE(1056)] = 40089, - [SMALL_STATE(1057)] = 40105, - [SMALL_STATE(1058)] = 40119, - [SMALL_STATE(1059)] = 40135, - [SMALL_STATE(1060)] = 40149, - [SMALL_STATE(1061)] = 40163, - [SMALL_STATE(1062)] = 40177, - [SMALL_STATE(1063)] = 40187, - [SMALL_STATE(1064)] = 40203, - [SMALL_STATE(1065)] = 40217, - [SMALL_STATE(1066)] = 40233, - [SMALL_STATE(1067)] = 40247, - [SMALL_STATE(1068)] = 40263, - [SMALL_STATE(1069)] = 40276, - [SMALL_STATE(1070)] = 40289, - [SMALL_STATE(1071)] = 40302, - [SMALL_STATE(1072)] = 40311, - [SMALL_STATE(1073)] = 40320, - [SMALL_STATE(1074)] = 40329, - [SMALL_STATE(1075)] = 40338, - [SMALL_STATE(1076)] = 40347, - [SMALL_STATE(1077)] = 40356, - [SMALL_STATE(1078)] = 40365, - [SMALL_STATE(1079)] = 40378, - [SMALL_STATE(1080)] = 40389, - [SMALL_STATE(1081)] = 40400, - [SMALL_STATE(1082)] = 40411, - [SMALL_STATE(1083)] = 40424, - [SMALL_STATE(1084)] = 40437, - [SMALL_STATE(1085)] = 40450, - [SMALL_STATE(1086)] = 40463, - [SMALL_STATE(1087)] = 40472, - [SMALL_STATE(1088)] = 40485, - [SMALL_STATE(1089)] = 40498, - [SMALL_STATE(1090)] = 40511, - [SMALL_STATE(1091)] = 40524, - [SMALL_STATE(1092)] = 40533, - [SMALL_STATE(1093)] = 40542, - [SMALL_STATE(1094)] = 40555, - [SMALL_STATE(1095)] = 40568, - [SMALL_STATE(1096)] = 40581, - [SMALL_STATE(1097)] = 40594, - [SMALL_STATE(1098)] = 40607, - [SMALL_STATE(1099)] = 40620, - [SMALL_STATE(1100)] = 40629, - [SMALL_STATE(1101)] = 40642, - [SMALL_STATE(1102)] = 40651, - [SMALL_STATE(1103)] = 40664, - [SMALL_STATE(1104)] = 40677, - [SMALL_STATE(1105)] = 40690, - [SMALL_STATE(1106)] = 40699, - [SMALL_STATE(1107)] = 40712, - [SMALL_STATE(1108)] = 40723, - [SMALL_STATE(1109)] = 40736, - [SMALL_STATE(1110)] = 40745, - [SMALL_STATE(1111)] = 40756, - [SMALL_STATE(1112)] = 40769, - [SMALL_STATE(1113)] = 40782, - [SMALL_STATE(1114)] = 40795, - [SMALL_STATE(1115)] = 40808, - [SMALL_STATE(1116)] = 40821, - [SMALL_STATE(1117)] = 40834, - [SMALL_STATE(1118)] = 40847, - [SMALL_STATE(1119)] = 40860, - [SMALL_STATE(1120)] = 40873, - [SMALL_STATE(1121)] = 40886, - [SMALL_STATE(1122)] = 40895, - [SMALL_STATE(1123)] = 40908, - [SMALL_STATE(1124)] = 40921, - [SMALL_STATE(1125)] = 40934, - [SMALL_STATE(1126)] = 40947, - [SMALL_STATE(1127)] = 40960, - [SMALL_STATE(1128)] = 40973, - [SMALL_STATE(1129)] = 40986, - [SMALL_STATE(1130)] = 40995, - [SMALL_STATE(1131)] = 41004, - [SMALL_STATE(1132)] = 41017, - [SMALL_STATE(1133)] = 41030, - [SMALL_STATE(1134)] = 41043, - [SMALL_STATE(1135)] = 41056, - [SMALL_STATE(1136)] = 41067, - [SMALL_STATE(1137)] = 41076, - [SMALL_STATE(1138)] = 41089, - [SMALL_STATE(1139)] = 41102, - [SMALL_STATE(1140)] = 41115, - [SMALL_STATE(1141)] = 41128, - [SMALL_STATE(1142)] = 41139, - [SMALL_STATE(1143)] = 41152, - [SMALL_STATE(1144)] = 41165, - [SMALL_STATE(1145)] = 41176, - [SMALL_STATE(1146)] = 41185, - [SMALL_STATE(1147)] = 41198, - [SMALL_STATE(1148)] = 41211, - [SMALL_STATE(1149)] = 41222, - [SMALL_STATE(1150)] = 41231, - [SMALL_STATE(1151)] = 41244, - [SMALL_STATE(1152)] = 41257, - [SMALL_STATE(1153)] = 41270, - [SMALL_STATE(1154)] = 41283, - [SMALL_STATE(1155)] = 41296, - [SMALL_STATE(1156)] = 41309, - [SMALL_STATE(1157)] = 41322, - [SMALL_STATE(1158)] = 41335, - [SMALL_STATE(1159)] = 41348, - [SMALL_STATE(1160)] = 41359, - [SMALL_STATE(1161)] = 41372, - [SMALL_STATE(1162)] = 41381, - [SMALL_STATE(1163)] = 41390, - [SMALL_STATE(1164)] = 41403, - [SMALL_STATE(1165)] = 41416, - [SMALL_STATE(1166)] = 41429, - [SMALL_STATE(1167)] = 41442, - [SMALL_STATE(1168)] = 41455, - [SMALL_STATE(1169)] = 41464, - [SMALL_STATE(1170)] = 41473, - [SMALL_STATE(1171)] = 41486, - [SMALL_STATE(1172)] = 41496, - [SMALL_STATE(1173)] = 41506, - [SMALL_STATE(1174)] = 41516, - [SMALL_STATE(1175)] = 41526, - [SMALL_STATE(1176)] = 41534, - [SMALL_STATE(1177)] = 41544, - [SMALL_STATE(1178)] = 41554, - [SMALL_STATE(1179)] = 41564, - [SMALL_STATE(1180)] = 41572, - [SMALL_STATE(1181)] = 41582, - [SMALL_STATE(1182)] = 41592, - [SMALL_STATE(1183)] = 41602, - [SMALL_STATE(1184)] = 41610, - [SMALL_STATE(1185)] = 41620, - [SMALL_STATE(1186)] = 41630, - [SMALL_STATE(1187)] = 41640, - [SMALL_STATE(1188)] = 41650, - [SMALL_STATE(1189)] = 41660, - [SMALL_STATE(1190)] = 41670, - [SMALL_STATE(1191)] = 41680, - [SMALL_STATE(1192)] = 41690, - [SMALL_STATE(1193)] = 41698, - [SMALL_STATE(1194)] = 41708, - [SMALL_STATE(1195)] = 41718, - [SMALL_STATE(1196)] = 41728, - [SMALL_STATE(1197)] = 41736, - [SMALL_STATE(1198)] = 41744, - [SMALL_STATE(1199)] = 41754, - [SMALL_STATE(1200)] = 41764, - [SMALL_STATE(1201)] = 41774, - [SMALL_STATE(1202)] = 41784, - [SMALL_STATE(1203)] = 41794, - [SMALL_STATE(1204)] = 41804, - [SMALL_STATE(1205)] = 41814, - [SMALL_STATE(1206)] = 41824, - [SMALL_STATE(1207)] = 41832, - [SMALL_STATE(1208)] = 41842, - [SMALL_STATE(1209)] = 41850, - [SMALL_STATE(1210)] = 41860, - [SMALL_STATE(1211)] = 41870, - [SMALL_STATE(1212)] = 41880, - [SMALL_STATE(1213)] = 41890, - [SMALL_STATE(1214)] = 41900, - [SMALL_STATE(1215)] = 41910, - [SMALL_STATE(1216)] = 41920, - [SMALL_STATE(1217)] = 41928, - [SMALL_STATE(1218)] = 41938, - [SMALL_STATE(1219)] = 41946, - [SMALL_STATE(1220)] = 41954, - [SMALL_STATE(1221)] = 41962, - [SMALL_STATE(1222)] = 41972, - [SMALL_STATE(1223)] = 41982, - [SMALL_STATE(1224)] = 41992, - [SMALL_STATE(1225)] = 42002, - [SMALL_STATE(1226)] = 42012, - [SMALL_STATE(1227)] = 42022, - [SMALL_STATE(1228)] = 42030, - [SMALL_STATE(1229)] = 42038, - [SMALL_STATE(1230)] = 42046, - [SMALL_STATE(1231)] = 42054, - [SMALL_STATE(1232)] = 42064, - [SMALL_STATE(1233)] = 42074, - [SMALL_STATE(1234)] = 42084, - [SMALL_STATE(1235)] = 42094, - [SMALL_STATE(1236)] = 42104, - [SMALL_STATE(1237)] = 42114, - [SMALL_STATE(1238)] = 42124, - [SMALL_STATE(1239)] = 42132, - [SMALL_STATE(1240)] = 42142, - [SMALL_STATE(1241)] = 42152, - [SMALL_STATE(1242)] = 42160, - [SMALL_STATE(1243)] = 42170, - [SMALL_STATE(1244)] = 42180, - [SMALL_STATE(1245)] = 42190, - [SMALL_STATE(1246)] = 42200, - [SMALL_STATE(1247)] = 42208, - [SMALL_STATE(1248)] = 42218, - [SMALL_STATE(1249)] = 42226, - [SMALL_STATE(1250)] = 42236, - [SMALL_STATE(1251)] = 42244, - [SMALL_STATE(1252)] = 42254, - [SMALL_STATE(1253)] = 42262, - [SMALL_STATE(1254)] = 42272, - [SMALL_STATE(1255)] = 42282, - [SMALL_STATE(1256)] = 42290, - [SMALL_STATE(1257)] = 42300, - [SMALL_STATE(1258)] = 42310, - [SMALL_STATE(1259)] = 42320, - [SMALL_STATE(1260)] = 42330, - [SMALL_STATE(1261)] = 42338, - [SMALL_STATE(1262)] = 42348, - [SMALL_STATE(1263)] = 42358, - [SMALL_STATE(1264)] = 42368, - [SMALL_STATE(1265)] = 42378, - [SMALL_STATE(1266)] = 42388, - [SMALL_STATE(1267)] = 42398, - [SMALL_STATE(1268)] = 42408, - [SMALL_STATE(1269)] = 42418, - [SMALL_STATE(1270)] = 42426, - [SMALL_STATE(1271)] = 42436, - [SMALL_STATE(1272)] = 42444, - [SMALL_STATE(1273)] = 42454, - [SMALL_STATE(1274)] = 42464, - [SMALL_STATE(1275)] = 42474, - [SMALL_STATE(1276)] = 42484, - [SMALL_STATE(1277)] = 42492, - [SMALL_STATE(1278)] = 42502, - [SMALL_STATE(1279)] = 42512, - [SMALL_STATE(1280)] = 42522, - [SMALL_STATE(1281)] = 42532, - [SMALL_STATE(1282)] = 42542, - [SMALL_STATE(1283)] = 42552, - [SMALL_STATE(1284)] = 42562, - [SMALL_STATE(1285)] = 42572, - [SMALL_STATE(1286)] = 42582, - [SMALL_STATE(1287)] = 42592, - [SMALL_STATE(1288)] = 42602, - [SMALL_STATE(1289)] = 42612, - [SMALL_STATE(1290)] = 42622, - [SMALL_STATE(1291)] = 42630, - [SMALL_STATE(1292)] = 42638, - [SMALL_STATE(1293)] = 42648, - [SMALL_STATE(1294)] = 42658, - [SMALL_STATE(1295)] = 42668, - [SMALL_STATE(1296)] = 42678, - [SMALL_STATE(1297)] = 42688, - [SMALL_STATE(1298)] = 42698, - [SMALL_STATE(1299)] = 42706, - [SMALL_STATE(1300)] = 42714, - [SMALL_STATE(1301)] = 42724, - [SMALL_STATE(1302)] = 42734, - [SMALL_STATE(1303)] = 42744, - [SMALL_STATE(1304)] = 42752, - [SMALL_STATE(1305)] = 42762, - [SMALL_STATE(1306)] = 42772, - [SMALL_STATE(1307)] = 42782, - [SMALL_STATE(1308)] = 42792, - [SMALL_STATE(1309)] = 42802, - [SMALL_STATE(1310)] = 42812, - [SMALL_STATE(1311)] = 42822, - [SMALL_STATE(1312)] = 42832, - [SMALL_STATE(1313)] = 42840, - [SMALL_STATE(1314)] = 42850, - [SMALL_STATE(1315)] = 42860, - [SMALL_STATE(1316)] = 42868, - [SMALL_STATE(1317)] = 42878, - [SMALL_STATE(1318)] = 42888, - [SMALL_STATE(1319)] = 42898, - [SMALL_STATE(1320)] = 42908, - [SMALL_STATE(1321)] = 42918, - [SMALL_STATE(1322)] = 42928, - [SMALL_STATE(1323)] = 42938, - [SMALL_STATE(1324)] = 42948, - [SMALL_STATE(1325)] = 42958, - [SMALL_STATE(1326)] = 42968, - [SMALL_STATE(1327)] = 42978, - [SMALL_STATE(1328)] = 42988, - [SMALL_STATE(1329)] = 42998, - [SMALL_STATE(1330)] = 43008, - [SMALL_STATE(1331)] = 43018, - [SMALL_STATE(1332)] = 43028, - [SMALL_STATE(1333)] = 43038, - [SMALL_STATE(1334)] = 43048, - [SMALL_STATE(1335)] = 43058, - [SMALL_STATE(1336)] = 43068, - [SMALL_STATE(1337)] = 43076, - [SMALL_STATE(1338)] = 43083, - [SMALL_STATE(1339)] = 43090, - [SMALL_STATE(1340)] = 43097, - [SMALL_STATE(1341)] = 43104, - [SMALL_STATE(1342)] = 43111, - [SMALL_STATE(1343)] = 43118, - [SMALL_STATE(1344)] = 43125, - [SMALL_STATE(1345)] = 43132, - [SMALL_STATE(1346)] = 43139, - [SMALL_STATE(1347)] = 43146, - [SMALL_STATE(1348)] = 43153, - [SMALL_STATE(1349)] = 43160, - [SMALL_STATE(1350)] = 43167, - [SMALL_STATE(1351)] = 43174, - [SMALL_STATE(1352)] = 43181, - [SMALL_STATE(1353)] = 43188, - [SMALL_STATE(1354)] = 43195, - [SMALL_STATE(1355)] = 43202, - [SMALL_STATE(1356)] = 43209, - [SMALL_STATE(1357)] = 43216, - [SMALL_STATE(1358)] = 43223, - [SMALL_STATE(1359)] = 43230, - [SMALL_STATE(1360)] = 43237, - [SMALL_STATE(1361)] = 43244, - [SMALL_STATE(1362)] = 43251, - [SMALL_STATE(1363)] = 43258, - [SMALL_STATE(1364)] = 43265, - [SMALL_STATE(1365)] = 43272, - [SMALL_STATE(1366)] = 43279, - [SMALL_STATE(1367)] = 43286, - [SMALL_STATE(1368)] = 43293, - [SMALL_STATE(1369)] = 43300, - [SMALL_STATE(1370)] = 43307, - [SMALL_STATE(1371)] = 43314, - [SMALL_STATE(1372)] = 43321, - [SMALL_STATE(1373)] = 43328, - [SMALL_STATE(1374)] = 43335, - [SMALL_STATE(1375)] = 43342, - [SMALL_STATE(1376)] = 43349, - [SMALL_STATE(1377)] = 43356, - [SMALL_STATE(1378)] = 43363, - [SMALL_STATE(1379)] = 43370, - [SMALL_STATE(1380)] = 43377, - [SMALL_STATE(1381)] = 43384, - [SMALL_STATE(1382)] = 43391, - [SMALL_STATE(1383)] = 43398, - [SMALL_STATE(1384)] = 43405, - [SMALL_STATE(1385)] = 43412, - [SMALL_STATE(1386)] = 43419, - [SMALL_STATE(1387)] = 43426, - [SMALL_STATE(1388)] = 43433, - [SMALL_STATE(1389)] = 43440, - [SMALL_STATE(1390)] = 43447, - [SMALL_STATE(1391)] = 43454, - [SMALL_STATE(1392)] = 43461, - [SMALL_STATE(1393)] = 43468, - [SMALL_STATE(1394)] = 43475, - [SMALL_STATE(1395)] = 43482, - [SMALL_STATE(1396)] = 43489, - [SMALL_STATE(1397)] = 43496, - [SMALL_STATE(1398)] = 43503, - [SMALL_STATE(1399)] = 43510, - [SMALL_STATE(1400)] = 43517, - [SMALL_STATE(1401)] = 43524, - [SMALL_STATE(1402)] = 43531, - [SMALL_STATE(1403)] = 43538, - [SMALL_STATE(1404)] = 43545, - [SMALL_STATE(1405)] = 43552, - [SMALL_STATE(1406)] = 43559, - [SMALL_STATE(1407)] = 43566, - [SMALL_STATE(1408)] = 43573, - [SMALL_STATE(1409)] = 43580, - [SMALL_STATE(1410)] = 43587, - [SMALL_STATE(1411)] = 43594, - [SMALL_STATE(1412)] = 43601, - [SMALL_STATE(1413)] = 43608, - [SMALL_STATE(1414)] = 43615, - [SMALL_STATE(1415)] = 43622, - [SMALL_STATE(1416)] = 43629, - [SMALL_STATE(1417)] = 43636, - [SMALL_STATE(1418)] = 43643, - [SMALL_STATE(1419)] = 43650, - [SMALL_STATE(1420)] = 43657, - [SMALL_STATE(1421)] = 43664, - [SMALL_STATE(1422)] = 43671, - [SMALL_STATE(1423)] = 43678, - [SMALL_STATE(1424)] = 43685, - [SMALL_STATE(1425)] = 43692, - [SMALL_STATE(1426)] = 43699, - [SMALL_STATE(1427)] = 43706, - [SMALL_STATE(1428)] = 43713, - [SMALL_STATE(1429)] = 43720, - [SMALL_STATE(1430)] = 43727, - [SMALL_STATE(1431)] = 43734, - [SMALL_STATE(1432)] = 43741, - [SMALL_STATE(1433)] = 43748, - [SMALL_STATE(1434)] = 43755, - [SMALL_STATE(1435)] = 43762, - [SMALL_STATE(1436)] = 43769, - [SMALL_STATE(1437)] = 43776, - [SMALL_STATE(1438)] = 43783, - [SMALL_STATE(1439)] = 43790, - [SMALL_STATE(1440)] = 43797, - [SMALL_STATE(1441)] = 43804, + [SMALL_STATE(305)] = 0, + [SMALL_STATE(306)] = 71, + [SMALL_STATE(307)] = 160, + [SMALL_STATE(308)] = 231, + [SMALL_STATE(309)] = 318, + [SMALL_STATE(310)] = 402, + [SMALL_STATE(311)] = 490, + [SMALL_STATE(312)] = 574, + [SMALL_STATE(313)] = 658, + [SMALL_STATE(314)] = 732, + [SMALL_STATE(315)] = 803, + [SMALL_STATE(316)] = 872, + [SMALL_STATE(317)] = 961, + [SMALL_STATE(318)] = 1032, + [SMALL_STATE(319)] = 1103, + [SMALL_STATE(320)] = 1174, + [SMALL_STATE(321)] = 1245, + [SMALL_STATE(322)] = 1328, + [SMALL_STATE(323)] = 1415, + [SMALL_STATE(324)] = 1498, + [SMALL_STATE(325)] = 1571, + [SMALL_STATE(326)] = 1660, + [SMALL_STATE(327)] = 1731, + [SMALL_STATE(328)] = 1800, + [SMALL_STATE(329)] = 1869, + [SMALL_STATE(330)] = 1940, + [SMALL_STATE(331)] = 2009, + [SMALL_STATE(332)] = 2080, + [SMALL_STATE(333)] = 2149, + [SMALL_STATE(334)] = 2218, + [SMALL_STATE(335)] = 2287, + [SMALL_STATE(336)] = 2358, + [SMALL_STATE(337)] = 2429, + [SMALL_STATE(338)] = 2500, + [SMALL_STATE(339)] = 2569, + [SMALL_STATE(340)] = 2637, + [SMALL_STATE(341)] = 2705, + [SMALL_STATE(342)] = 2773, + [SMALL_STATE(343)] = 2841, + [SMALL_STATE(344)] = 2909, + [SMALL_STATE(345)] = 2977, + [SMALL_STATE(346)] = 3045, + [SMALL_STATE(347)] = 3113, + [SMALL_STATE(348)] = 3181, + [SMALL_STATE(349)] = 3249, + [SMALL_STATE(350)] = 3317, + [SMALL_STATE(351)] = 3385, + [SMALL_STATE(352)] = 3453, + [SMALL_STATE(353)] = 3521, + [SMALL_STATE(354)] = 3589, + [SMALL_STATE(355)] = 3657, + [SMALL_STATE(356)] = 3725, + [SMALL_STATE(357)] = 3793, + [SMALL_STATE(358)] = 3861, + [SMALL_STATE(359)] = 3929, + [SMALL_STATE(360)] = 3997, + [SMALL_STATE(361)] = 4065, + [SMALL_STATE(362)] = 4133, + [SMALL_STATE(363)] = 4201, + [SMALL_STATE(364)] = 4269, + [SMALL_STATE(365)] = 4337, + [SMALL_STATE(366)] = 4405, + [SMALL_STATE(367)] = 4473, + [SMALL_STATE(368)] = 4541, + [SMALL_STATE(369)] = 4609, + [SMALL_STATE(370)] = 4677, + [SMALL_STATE(371)] = 4745, + [SMALL_STATE(372)] = 4813, + [SMALL_STATE(373)] = 4881, + [SMALL_STATE(374)] = 4949, + [SMALL_STATE(375)] = 5017, + [SMALL_STATE(376)] = 5085, + [SMALL_STATE(377)] = 5153, + [SMALL_STATE(378)] = 5221, + [SMALL_STATE(379)] = 5289, + [SMALL_STATE(380)] = 5357, + [SMALL_STATE(381)] = 5425, + [SMALL_STATE(382)] = 5493, + [SMALL_STATE(383)] = 5561, + [SMALL_STATE(384)] = 5629, + [SMALL_STATE(385)] = 5697, + [SMALL_STATE(386)] = 5765, + [SMALL_STATE(387)] = 5833, + [SMALL_STATE(388)] = 5901, + [SMALL_STATE(389)] = 5969, + [SMALL_STATE(390)] = 6037, + [SMALL_STATE(391)] = 6105, + [SMALL_STATE(392)] = 6173, + [SMALL_STATE(393)] = 6241, + [SMALL_STATE(394)] = 6309, + [SMALL_STATE(395)] = 6399, + [SMALL_STATE(396)] = 6467, + [SMALL_STATE(397)] = 6535, + [SMALL_STATE(398)] = 6603, + [SMALL_STATE(399)] = 6688, + [SMALL_STATE(400)] = 6770, + [SMALL_STATE(401)] = 6836, + [SMALL_STATE(402)] = 6902, + [SMALL_STATE(403)] = 6968, + [SMALL_STATE(404)] = 7038, + [SMALL_STATE(405)] = 7120, + [SMALL_STATE(406)] = 7186, + [SMALL_STATE(407)] = 7252, + [SMALL_STATE(408)] = 7334, + [SMALL_STATE(409)] = 7405, + [SMALL_STATE(410)] = 7490, + [SMALL_STATE(411)] = 7561, + [SMALL_STATE(412)] = 7629, + [SMALL_STATE(413)] = 7692, + [SMALL_STATE(414)] = 7761, + [SMALL_STATE(415)] = 7824, + [SMALL_STATE(416)] = 7887, + [SMALL_STATE(417)] = 7950, + [SMALL_STATE(418)] = 8013, + [SMALL_STATE(419)] = 8080, + [SMALL_STATE(420)] = 8151, + [SMALL_STATE(421)] = 8214, + [SMALL_STATE(422)] = 8285, + [SMALL_STATE(423)] = 8348, + [SMALL_STATE(424)] = 8411, + [SMALL_STATE(425)] = 8474, + [SMALL_STATE(426)] = 8545, + [SMALL_STATE(427)] = 8614, + [SMALL_STATE(428)] = 8683, + [SMALL_STATE(429)] = 8754, + [SMALL_STATE(430)] = 8823, + [SMALL_STATE(431)] = 8894, + [SMALL_STATE(432)] = 8962, + [SMALL_STATE(433)] = 9030, + [SMALL_STATE(434)] = 9100, + [SMALL_STATE(435)] = 9172, + [SMALL_STATE(436)] = 9240, + [SMALL_STATE(437)] = 9306, + [SMALL_STATE(438)] = 9372, + [SMALL_STATE(439)] = 9441, + [SMALL_STATE(440)] = 9512, + [SMALL_STATE(441)] = 9579, + [SMALL_STATE(442)] = 9646, + [SMALL_STATE(443)] = 9714, + [SMALL_STATE(444)] = 9784, + [SMALL_STATE(445)] = 9850, + [SMALL_STATE(446)] = 9916, + [SMALL_STATE(447)] = 9983, + [SMALL_STATE(448)] = 10046, + [SMALL_STATE(449)] = 10112, + [SMALL_STATE(450)] = 10172, + [SMALL_STATE(451)] = 10228, + [SMALL_STATE(452)] = 10291, + [SMALL_STATE(453)] = 10352, + [SMALL_STATE(454)] = 10415, + [SMALL_STATE(455)] = 10470, + [SMALL_STATE(456)] = 10523, + [SMALL_STATE(457)] = 10584, + [SMALL_STATE(458)] = 10637, + [SMALL_STATE(459)] = 10690, + [SMALL_STATE(460)] = 10740, + [SMALL_STATE(461)] = 10794, + [SMALL_STATE(462)] = 10844, + [SMALL_STATE(463)] = 10898, + [SMALL_STATE(464)] = 10948, + [SMALL_STATE(465)] = 10998, + [SMALL_STATE(466)] = 11048, + [SMALL_STATE(467)] = 11098, + [SMALL_STATE(468)] = 11148, + [SMALL_STATE(469)] = 11198, + [SMALL_STATE(470)] = 11248, + [SMALL_STATE(471)] = 11298, + [SMALL_STATE(472)] = 11348, + [SMALL_STATE(473)] = 11400, + [SMALL_STATE(474)] = 11450, + [SMALL_STATE(475)] = 11500, + [SMALL_STATE(476)] = 11550, + [SMALL_STATE(477)] = 11600, + [SMALL_STATE(478)] = 11650, + [SMALL_STATE(479)] = 11700, + [SMALL_STATE(480)] = 11750, + [SMALL_STATE(481)] = 11800, + [SMALL_STATE(482)] = 11850, + [SMALL_STATE(483)] = 11900, + [SMALL_STATE(484)] = 11954, + [SMALL_STATE(485)] = 12004, + [SMALL_STATE(486)] = 12054, + [SMALL_STATE(487)] = 12104, + [SMALL_STATE(488)] = 12154, + [SMALL_STATE(489)] = 12204, + [SMALL_STATE(490)] = 12254, + [SMALL_STATE(491)] = 12304, + [SMALL_STATE(492)] = 12354, + [SMALL_STATE(493)] = 12404, + [SMALL_STATE(494)] = 12454, + [SMALL_STATE(495)] = 12504, + [SMALL_STATE(496)] = 12554, + [SMALL_STATE(497)] = 12604, + [SMALL_STATE(498)] = 12654, + [SMALL_STATE(499)] = 12704, + [SMALL_STATE(500)] = 12754, + [SMALL_STATE(501)] = 12804, + [SMALL_STATE(502)] = 12854, + [SMALL_STATE(503)] = 12904, + [SMALL_STATE(504)] = 12954, + [SMALL_STATE(505)] = 13004, + [SMALL_STATE(506)] = 13054, + [SMALL_STATE(507)] = 13104, + [SMALL_STATE(508)] = 13154, + [SMALL_STATE(509)] = 13204, + [SMALL_STATE(510)] = 13254, + [SMALL_STATE(511)] = 13304, + [SMALL_STATE(512)] = 13354, + [SMALL_STATE(513)] = 13404, + [SMALL_STATE(514)] = 13454, + [SMALL_STATE(515)] = 13504, + [SMALL_STATE(516)] = 13554, + [SMALL_STATE(517)] = 13605, + [SMALL_STATE(518)] = 13668, + [SMALL_STATE(519)] = 13761, + [SMALL_STATE(520)] = 13854, + [SMALL_STATE(521)] = 13947, + [SMALL_STATE(522)] = 14040, + [SMALL_STATE(523)] = 14129, + [SMALL_STATE(524)] = 14206, + [SMALL_STATE(525)] = 14269, + [SMALL_STATE(526)] = 14362, + [SMALL_STATE(527)] = 14429, + [SMALL_STATE(528)] = 14522, + [SMALL_STATE(529)] = 14595, + [SMALL_STATE(530)] = 14680, + [SMALL_STATE(531)] = 14763, + [SMALL_STATE(532)] = 14844, + [SMALL_STATE(533)] = 14907, + [SMALL_STATE(534)] = 14976, + [SMALL_STATE(535)] = 15027, + [SMALL_STATE(536)] = 15114, + [SMALL_STATE(537)] = 15207, + [SMALL_STATE(538)] = 15300, + [SMALL_STATE(539)] = 15393, + [SMALL_STATE(540)] = 15450, + [SMALL_STATE(541)] = 15501, + [SMALL_STATE(542)] = 15586, + [SMALL_STATE(543)] = 15637, + [SMALL_STATE(544)] = 15687, + [SMALL_STATE(545)] = 15779, + [SMALL_STATE(546)] = 15827, + [SMALL_STATE(547)] = 15887, + [SMALL_STATE(548)] = 15945, + [SMALL_STATE(549)] = 15999, + [SMALL_STATE(550)] = 16059, + [SMALL_STATE(551)] = 16117, + [SMALL_STATE(552)] = 16165, + [SMALL_STATE(553)] = 16215, + [SMALL_STATE(554)] = 16265, + [SMALL_STATE(555)] = 16317, + [SMALL_STATE(556)] = 16369, + [SMALL_STATE(557)] = 16419, + [SMALL_STATE(558)] = 16506, + [SMALL_STATE(559)] = 16553, + [SMALL_STATE(560)] = 16600, + [SMALL_STATE(561)] = 16647, + [SMALL_STATE(562)] = 16694, + [SMALL_STATE(563)] = 16741, + [SMALL_STATE(564)] = 16790, + [SMALL_STATE(565)] = 16837, + [SMALL_STATE(566)] = 16908, + [SMALL_STATE(567)] = 16955, + [SMALL_STATE(568)] = 17006, + [SMALL_STATE(569)] = 17067, + [SMALL_STATE(570)] = 17150, + [SMALL_STATE(571)] = 17235, + [SMALL_STATE(572)] = 17302, + [SMALL_STATE(573)] = 17349, + [SMALL_STATE(574)] = 17396, + [SMALL_STATE(575)] = 17487, + [SMALL_STATE(576)] = 17566, + [SMALL_STATE(577)] = 17647, + [SMALL_STATE(578)] = 17730, + [SMALL_STATE(579)] = 17777, + [SMALL_STATE(580)] = 17824, + [SMALL_STATE(581)] = 17915, + [SMALL_STATE(582)] = 17962, + [SMALL_STATE(583)] = 18009, + [SMALL_STATE(584)] = 18074, + [SMALL_STATE(585)] = 18135, + [SMALL_STATE(586)] = 18226, + [SMALL_STATE(587)] = 18273, + [SMALL_STATE(588)] = 18348, + [SMALL_STATE(589)] = 18435, + [SMALL_STATE(590)] = 18482, + [SMALL_STATE(591)] = 18529, + [SMALL_STATE(592)] = 18576, + [SMALL_STATE(593)] = 18627, + [SMALL_STATE(594)] = 18674, + [SMALL_STATE(595)] = 18721, + [SMALL_STATE(596)] = 18768, + [SMALL_STATE(597)] = 18859, + [SMALL_STATE(598)] = 18906, + [SMALL_STATE(599)] = 18997, + [SMALL_STATE(600)] = 19044, + [SMALL_STATE(601)] = 19091, + [SMALL_STATE(602)] = 19138, + [SMALL_STATE(603)] = 19185, + [SMALL_STATE(604)] = 19276, + [SMALL_STATE(605)] = 19327, + [SMALL_STATE(606)] = 19374, + [SMALL_STATE(607)] = 19421, + [SMALL_STATE(608)] = 19468, + [SMALL_STATE(609)] = 19515, + [SMALL_STATE(610)] = 19562, + [SMALL_STATE(611)] = 19611, + [SMALL_STATE(612)] = 19658, + [SMALL_STATE(613)] = 19705, + [SMALL_STATE(614)] = 19752, + [SMALL_STATE(615)] = 19799, + [SMALL_STATE(616)] = 19890, + [SMALL_STATE(617)] = 19939, + [SMALL_STATE(618)] = 19986, + [SMALL_STATE(619)] = 20077, + [SMALL_STATE(620)] = 20168, + [SMALL_STATE(621)] = 20259, + [SMALL_STATE(622)] = 20350, + [SMALL_STATE(623)] = 20441, + [SMALL_STATE(624)] = 20488, + [SMALL_STATE(625)] = 20535, + [SMALL_STATE(626)] = 20582, + [SMALL_STATE(627)] = 20673, + [SMALL_STATE(628)] = 20748, + [SMALL_STATE(629)] = 20809, + [SMALL_STATE(630)] = 20856, + [SMALL_STATE(631)] = 20907, + [SMALL_STATE(632)] = 20958, + [SMALL_STATE(633)] = 21009, + [SMALL_STATE(634)] = 21074, + [SMALL_STATE(635)] = 21121, + [SMALL_STATE(636)] = 21204, + [SMALL_STATE(637)] = 21285, + [SMALL_STATE(638)] = 21334, + [SMALL_STATE(639)] = 21425, + [SMALL_STATE(640)] = 21504, + [SMALL_STATE(641)] = 21571, + [SMALL_STATE(642)] = 21656, + [SMALL_STATE(643)] = 21739, + [SMALL_STATE(644)] = 21800, + [SMALL_STATE(645)] = 21851, + [SMALL_STATE(646)] = 21922, + [SMALL_STATE(647)] = 21973, + [SMALL_STATE(648)] = 22064, + [SMALL_STATE(649)] = 22115, + [SMALL_STATE(650)] = 22162, + [SMALL_STATE(651)] = 22253, + [SMALL_STATE(652)] = 22300, + [SMALL_STATE(653)] = 22347, + [SMALL_STATE(654)] = 22398, + [SMALL_STATE(655)] = 22445, + [SMALL_STATE(656)] = 22496, + [SMALL_STATE(657)] = 22543, + [SMALL_STATE(658)] = 22590, + [SMALL_STATE(659)] = 22637, + [SMALL_STATE(660)] = 22688, + [SMALL_STATE(661)] = 22779, + [SMALL_STATE(662)] = 22870, + [SMALL_STATE(663)] = 22921, + [SMALL_STATE(664)] = 22972, + [SMALL_STATE(665)] = 23024, + [SMALL_STATE(666)] = 23076, + [SMALL_STATE(667)] = 23166, + [SMALL_STATE(668)] = 23260, + [SMALL_STATE(669)] = 23350, + [SMALL_STATE(670)] = 23400, + [SMALL_STATE(671)] = 23450, + [SMALL_STATE(672)] = 23544, + [SMALL_STATE(673)] = 23638, + [SMALL_STATE(674)] = 23690, + [SMALL_STATE(675)] = 23784, + [SMALL_STATE(676)] = 23876, + [SMALL_STATE(677)] = 23928, + [SMALL_STATE(678)] = 23978, + [SMALL_STATE(679)] = 24067, + [SMALL_STATE(680)] = 24156, + [SMALL_STATE(681)] = 24249, + [SMALL_STATE(682)] = 24338, + [SMALL_STATE(683)] = 24431, + [SMALL_STATE(684)] = 24490, + [SMALL_STATE(685)] = 24583, + [SMALL_STATE(686)] = 24672, + [SMALL_STATE(687)] = 24765, + [SMALL_STATE(688)] = 24850, + [SMALL_STATE(689)] = 24939, + [SMALL_STATE(690)] = 25032, + [SMALL_STATE(691)] = 25121, + [SMALL_STATE(692)] = 25184, + [SMALL_STATE(693)] = 25265, + [SMALL_STATE(694)] = 25358, + [SMALL_STATE(695)] = 25409, + [SMALL_STATE(696)] = 25502, + [SMALL_STATE(697)] = 25595, + [SMALL_STATE(698)] = 25684, + [SMALL_STATE(699)] = 25777, + [SMALL_STATE(700)] = 25870, + [SMALL_STATE(701)] = 25963, + [SMALL_STATE(702)] = 26056, + [SMALL_STATE(703)] = 26149, + [SMALL_STATE(704)] = 26242, + [SMALL_STATE(705)] = 26331, + [SMALL_STATE(706)] = 26424, + [SMALL_STATE(707)] = 26503, + [SMALL_STATE(708)] = 26554, + [SMALL_STATE(709)] = 26647, + [SMALL_STATE(710)] = 26740, + [SMALL_STATE(711)] = 26833, + [SMALL_STATE(712)] = 26884, + [SMALL_STATE(713)] = 26977, + [SMALL_STATE(714)] = 27070, + [SMALL_STATE(715)] = 27159, + [SMALL_STATE(716)] = 27236, + [SMALL_STATE(717)] = 27301, + [SMALL_STATE(718)] = 27384, + [SMALL_STATE(719)] = 27465, + [SMALL_STATE(720)] = 27558, + [SMALL_STATE(721)] = 27617, + [SMALL_STATE(722)] = 27710, + [SMALL_STATE(723)] = 27803, + [SMALL_STATE(724)] = 27896, + [SMALL_STATE(725)] = 27989, + [SMALL_STATE(726)] = 28082, + [SMALL_STATE(727)] = 28151, + [SMALL_STATE(728)] = 28244, + [SMALL_STATE(729)] = 28337, + [SMALL_STATE(730)] = 28426, + [SMALL_STATE(731)] = 28499, + [SMALL_STATE(732)] = 28588, + [SMALL_STATE(733)] = 28677, + [SMALL_STATE(734)] = 28728, + [SMALL_STATE(735)] = 28821, + [SMALL_STATE(736)] = 28914, + [SMALL_STATE(737)] = 29007, + [SMALL_STATE(738)] = 29100, + [SMALL_STATE(739)] = 29193, + [SMALL_STATE(740)] = 29286, + [SMALL_STATE(741)] = 29379, + [SMALL_STATE(742)] = 29469, + [SMALL_STATE(743)] = 29557, + [SMALL_STATE(744)] = 29641, + [SMALL_STATE(745)] = 29699, + [SMALL_STATE(746)] = 29761, + [SMALL_STATE(747)] = 29841, + [SMALL_STATE(748)] = 29931, + [SMALL_STATE(749)] = 30019, + [SMALL_STATE(750)] = 30107, + [SMALL_STATE(751)] = 30195, + [SMALL_STATE(752)] = 30285, + [SMALL_STATE(753)] = 30367, + [SMALL_STATE(754)] = 30457, + [SMALL_STATE(755)] = 30507, + [SMALL_STATE(756)] = 30597, + [SMALL_STATE(757)] = 30661, + [SMALL_STATE(758)] = 30749, + [SMALL_STATE(759)] = 30839, + [SMALL_STATE(760)] = 30919, + [SMALL_STATE(761)] = 30977, + [SMALL_STATE(762)] = 31045, + [SMALL_STATE(763)] = 31117, + [SMALL_STATE(764)] = 31207, + [SMALL_STATE(765)] = 31253, + [SMALL_STATE(766)] = 31299, + [SMALL_STATE(767)] = 31387, + [SMALL_STATE(768)] = 31475, + [SMALL_STATE(769)] = 31563, + [SMALL_STATE(770)] = 31651, + [SMALL_STATE(771)] = 31729, + [SMALL_STATE(772)] = 31817, + [SMALL_STATE(773)] = 31905, + [SMALL_STATE(774)] = 31981, + [SMALL_STATE(775)] = 32069, + [SMALL_STATE(776)] = 32156, + [SMALL_STATE(777)] = 32243, + [SMALL_STATE(778)] = 32330, + [SMALL_STATE(779)] = 32417, + [SMALL_STATE(780)] = 32504, + [SMALL_STATE(781)] = 32593, + [SMALL_STATE(782)] = 32680, + [SMALL_STATE(783)] = 32767, + [SMALL_STATE(784)] = 32854, + [SMALL_STATE(785)] = 32938, + [SMALL_STATE(786)] = 33020, + [SMALL_STATE(787)] = 33104, + [SMALL_STATE(788)] = 33176, + [SMALL_STATE(789)] = 33249, + [SMALL_STATE(790)] = 33322, + [SMALL_STATE(791)] = 33395, + [SMALL_STATE(792)] = 33468, + [SMALL_STATE(793)] = 33541, + [SMALL_STATE(794)] = 33608, + [SMALL_STATE(795)] = 33669, + [SMALL_STATE(796)] = 33742, + [SMALL_STATE(797)] = 33815, + [SMALL_STATE(798)] = 33876, + [SMALL_STATE(799)] = 33932, + [SMALL_STATE(800)] = 33992, + [SMALL_STATE(801)] = 34050, + [SMALL_STATE(802)] = 34110, + [SMALL_STATE(803)] = 34168, + [SMALL_STATE(804)] = 34228, + [SMALL_STATE(805)] = 34286, + [SMALL_STATE(806)] = 34346, + [SMALL_STATE(807)] = 34404, + [SMALL_STATE(808)] = 34464, + [SMALL_STATE(809)] = 34522, + [SMALL_STATE(810)] = 34582, + [SMALL_STATE(811)] = 34640, + [SMALL_STATE(812)] = 34693, + [SMALL_STATE(813)] = 34746, + [SMALL_STATE(814)] = 34801, + [SMALL_STATE(815)] = 34854, + [SMALL_STATE(816)] = 34907, + [SMALL_STATE(817)] = 34960, + [SMALL_STATE(818)] = 35013, + [SMALL_STATE(819)] = 35063, + [SMALL_STATE(820)] = 35115, + [SMALL_STATE(821)] = 35169, + [SMALL_STATE(822)] = 35221, + [SMALL_STATE(823)] = 35283, + [SMALL_STATE(824)] = 35330, + [SMALL_STATE(825)] = 35375, + [SMALL_STATE(826)] = 35420, + [SMALL_STATE(827)] = 35467, + [SMALL_STATE(828)] = 35524, + [SMALL_STATE(829)] = 35573, + [SMALL_STATE(830)] = 35620, + [SMALL_STATE(831)] = 35677, + [SMALL_STATE(832)] = 35722, + [SMALL_STATE(833)] = 35771, + [SMALL_STATE(834)] = 35818, + [SMALL_STATE(835)] = 35858, + [SMALL_STATE(836)] = 35892, + [SMALL_STATE(837)] = 35932, + [SMALL_STATE(838)] = 35972, + [SMALL_STATE(839)] = 36012, + [SMALL_STATE(840)] = 36052, + [SMALL_STATE(841)] = 36092, + [SMALL_STATE(842)] = 36134, + [SMALL_STATE(843)] = 36161, + [SMALL_STATE(844)] = 36188, + [SMALL_STATE(845)] = 36215, + [SMALL_STATE(846)] = 36242, + [SMALL_STATE(847)] = 36269, + [SMALL_STATE(848)] = 36296, + [SMALL_STATE(849)] = 36323, + [SMALL_STATE(850)] = 36350, + [SMALL_STATE(851)] = 36377, + [SMALL_STATE(852)] = 36404, + [SMALL_STATE(853)] = 36431, + [SMALL_STATE(854)] = 36458, + [SMALL_STATE(855)] = 36485, + [SMALL_STATE(856)] = 36512, + [SMALL_STATE(857)] = 36541, + [SMALL_STATE(858)] = 36568, + [SMALL_STATE(859)] = 36595, + [SMALL_STATE(860)] = 36622, + [SMALL_STATE(861)] = 36649, + [SMALL_STATE(862)] = 36676, + [SMALL_STATE(863)] = 36703, + [SMALL_STATE(864)] = 36730, + [SMALL_STATE(865)] = 36757, + [SMALL_STATE(866)] = 36784, + [SMALL_STATE(867)] = 36811, + [SMALL_STATE(868)] = 36838, + [SMALL_STATE(869)] = 36871, + [SMALL_STATE(870)] = 36900, + [SMALL_STATE(871)] = 36927, + [SMALL_STATE(872)] = 36954, + [SMALL_STATE(873)] = 36981, + [SMALL_STATE(874)] = 37008, + [SMALL_STATE(875)] = 37035, + [SMALL_STATE(876)] = 37062, + [SMALL_STATE(877)] = 37089, + [SMALL_STATE(878)] = 37133, + [SMALL_STATE(879)] = 37159, + [SMALL_STATE(880)] = 37203, + [SMALL_STATE(881)] = 37231, + [SMALL_STATE(882)] = 37273, + [SMALL_STATE(883)] = 37299, + [SMALL_STATE(884)] = 37325, + [SMALL_STATE(885)] = 37369, + [SMALL_STATE(886)] = 37395, + [SMALL_STATE(887)] = 37441, + [SMALL_STATE(888)] = 37483, + [SMALL_STATE(889)] = 37509, + [SMALL_STATE(890)] = 37553, + [SMALL_STATE(891)] = 37579, + [SMALL_STATE(892)] = 37621, + [SMALL_STATE(893)] = 37667, + [SMALL_STATE(894)] = 37707, + [SMALL_STATE(895)] = 37750, + [SMALL_STATE(896)] = 37787, + [SMALL_STATE(897)] = 37824, + [SMALL_STATE(898)] = 37865, + [SMALL_STATE(899)] = 37902, + [SMALL_STATE(900)] = 37939, + [SMALL_STATE(901)] = 37976, + [SMALL_STATE(902)] = 38013, + [SMALL_STATE(903)] = 38050, + [SMALL_STATE(904)] = 38087, + [SMALL_STATE(905)] = 38124, + [SMALL_STATE(906)] = 38165, + [SMALL_STATE(907)] = 38208, + [SMALL_STATE(908)] = 38245, + [SMALL_STATE(909)] = 38270, + [SMALL_STATE(910)] = 38307, + [SMALL_STATE(911)] = 38344, + [SMALL_STATE(912)] = 38381, + [SMALL_STATE(913)] = 38418, + [SMALL_STATE(914)] = 38455, + [SMALL_STATE(915)] = 38492, + [SMALL_STATE(916)] = 38529, + [SMALL_STATE(917)] = 38566, + [SMALL_STATE(918)] = 38591, + [SMALL_STATE(919)] = 38628, + [SMALL_STATE(920)] = 38665, + [SMALL_STATE(921)] = 38702, + [SMALL_STATE(922)] = 38727, + [SMALL_STATE(923)] = 38752, + [SMALL_STATE(924)] = 38789, + [SMALL_STATE(925)] = 38826, + [SMALL_STATE(926)] = 38863, + [SMALL_STATE(927)] = 38888, + [SMALL_STATE(928)] = 38931, + [SMALL_STATE(929)] = 38974, + [SMALL_STATE(930)] = 39011, + [SMALL_STATE(931)] = 39048, + [SMALL_STATE(932)] = 39085, + [SMALL_STATE(933)] = 39122, + [SMALL_STATE(934)] = 39147, + [SMALL_STATE(935)] = 39181, + [SMALL_STATE(936)] = 39203, + [SMALL_STATE(937)] = 39237, + [SMALL_STATE(938)] = 39271, + [SMALL_STATE(939)] = 39305, + [SMALL_STATE(940)] = 39327, + [SMALL_STATE(941)] = 39349, + [SMALL_STATE(942)] = 39383, + [SMALL_STATE(943)] = 39417, + [SMALL_STATE(944)] = 39451, + [SMALL_STATE(945)] = 39485, + [SMALL_STATE(946)] = 39519, + [SMALL_STATE(947)] = 39541, + [SMALL_STATE(948)] = 39575, + [SMALL_STATE(949)] = 39609, + [SMALL_STATE(950)] = 39643, + [SMALL_STATE(951)] = 39677, + [SMALL_STATE(952)] = 39711, + [SMALL_STATE(953)] = 39745, + [SMALL_STATE(954)] = 39779, + [SMALL_STATE(955)] = 39801, + [SMALL_STATE(956)] = 39835, + [SMALL_STATE(957)] = 39869, + [SMALL_STATE(958)] = 39903, + [SMALL_STATE(959)] = 39937, + [SMALL_STATE(960)] = 39971, + [SMALL_STATE(961)] = 40005, + [SMALL_STATE(962)] = 40036, + [SMALL_STATE(963)] = 40067, + [SMALL_STATE(964)] = 40098, + [SMALL_STATE(965)] = 40129, + [SMALL_STATE(966)] = 40166, + [SMALL_STATE(967)] = 40197, + [SMALL_STATE(968)] = 40228, + [SMALL_STATE(969)] = 40259, + [SMALL_STATE(970)] = 40290, + [SMALL_STATE(971)] = 40326, + [SMALL_STATE(972)] = 40362, + [SMALL_STATE(973)] = 40390, + [SMALL_STATE(974)] = 40426, + [SMALL_STATE(975)] = 40462, + [SMALL_STATE(976)] = 40495, + [SMALL_STATE(977)] = 40528, + [SMALL_STATE(978)] = 40561, + [SMALL_STATE(979)] = 40594, + [SMALL_STATE(980)] = 40627, + [SMALL_STATE(981)] = 40660, + [SMALL_STATE(982)] = 40693, + [SMALL_STATE(983)] = 40726, + [SMALL_STATE(984)] = 40756, + [SMALL_STATE(985)] = 40786, + [SMALL_STATE(986)] = 40812, + [SMALL_STATE(987)] = 40842, + [SMALL_STATE(988)] = 40872, + [SMALL_STATE(989)] = 40902, + [SMALL_STATE(990)] = 40932, + [SMALL_STATE(991)] = 40962, + [SMALL_STATE(992)] = 40992, + [SMALL_STATE(993)] = 41022, + [SMALL_STATE(994)] = 41052, + [SMALL_STATE(995)] = 41082, + [SMALL_STATE(996)] = 41110, + [SMALL_STATE(997)] = 41140, + [SMALL_STATE(998)] = 41170, + [SMALL_STATE(999)] = 41200, + [SMALL_STATE(1000)] = 41230, + [SMALL_STATE(1001)] = 41260, + [SMALL_STATE(1002)] = 41290, + [SMALL_STATE(1003)] = 41320, + [SMALL_STATE(1004)] = 41350, + [SMALL_STATE(1005)] = 41380, + [SMALL_STATE(1006)] = 41409, + [SMALL_STATE(1007)] = 41438, + [SMALL_STATE(1008)] = 41462, + [SMALL_STATE(1009)] = 41486, + [SMALL_STATE(1010)] = 41500, + [SMALL_STATE(1011)] = 41514, + [SMALL_STATE(1012)] = 41538, + [SMALL_STATE(1013)] = 41556, + [SMALL_STATE(1014)] = 41580, + [SMALL_STATE(1015)] = 41606, + [SMALL_STATE(1016)] = 41620, + [SMALL_STATE(1017)] = 41644, + [SMALL_STATE(1018)] = 41668, + [SMALL_STATE(1019)] = 41694, + [SMALL_STATE(1020)] = 41708, + [SMALL_STATE(1021)] = 41732, + [SMALL_STATE(1022)] = 41754, + [SMALL_STATE(1023)] = 41778, + [SMALL_STATE(1024)] = 41802, + [SMALL_STATE(1025)] = 41822, + [SMALL_STATE(1026)] = 41848, + [SMALL_STATE(1027)] = 41868, + [SMALL_STATE(1028)] = 41892, + [SMALL_STATE(1029)] = 41910, + [SMALL_STATE(1030)] = 41924, + [SMALL_STATE(1031)] = 41950, + [SMALL_STATE(1032)] = 41974, + [SMALL_STATE(1033)] = 41987, + [SMALL_STATE(1034)] = 42008, + [SMALL_STATE(1035)] = 42029, + [SMALL_STATE(1036)] = 42044, + [SMALL_STATE(1037)] = 42063, + [SMALL_STATE(1038)] = 42078, + [SMALL_STATE(1039)] = 42093, + [SMALL_STATE(1040)] = 42108, + [SMALL_STATE(1041)] = 42123, + [SMALL_STATE(1042)] = 42144, + [SMALL_STATE(1043)] = 42157, + [SMALL_STATE(1044)] = 42172, + [SMALL_STATE(1045)] = 42187, + [SMALL_STATE(1046)] = 42210, + [SMALL_STATE(1047)] = 42225, + [SMALL_STATE(1048)] = 42240, + [SMALL_STATE(1049)] = 42255, + [SMALL_STATE(1050)] = 42270, + [SMALL_STATE(1051)] = 42289, + [SMALL_STATE(1052)] = 42304, + [SMALL_STATE(1053)] = 42319, + [SMALL_STATE(1054)] = 42342, + [SMALL_STATE(1055)] = 42355, + [SMALL_STATE(1056)] = 42376, + [SMALL_STATE(1057)] = 42389, + [SMALL_STATE(1058)] = 42402, + [SMALL_STATE(1059)] = 42423, + [SMALL_STATE(1060)] = 42444, + [SMALL_STATE(1061)] = 42463, + [SMALL_STATE(1062)] = 42476, + [SMALL_STATE(1063)] = 42495, + [SMALL_STATE(1064)] = 42516, + [SMALL_STATE(1065)] = 42533, + [SMALL_STATE(1066)] = 42552, + [SMALL_STATE(1067)] = 42571, + [SMALL_STATE(1068)] = 42586, + [SMALL_STATE(1069)] = 42601, + [SMALL_STATE(1070)] = 42616, + [SMALL_STATE(1071)] = 42635, + [SMALL_STATE(1072)] = 42648, + [SMALL_STATE(1073)] = 42667, + [SMALL_STATE(1074)] = 42682, + [SMALL_STATE(1075)] = 42697, + [SMALL_STATE(1076)] = 42710, + [SMALL_STATE(1077)] = 42723, + [SMALL_STATE(1078)] = 42738, + [SMALL_STATE(1079)] = 42752, + [SMALL_STATE(1080)] = 42772, + [SMALL_STATE(1081)] = 42792, + [SMALL_STATE(1082)] = 42810, + [SMALL_STATE(1083)] = 42828, + [SMALL_STATE(1084)] = 42848, + [SMALL_STATE(1085)] = 42862, + [SMALL_STATE(1086)] = 42878, + [SMALL_STATE(1087)] = 42892, + [SMALL_STATE(1088)] = 42912, + [SMALL_STATE(1089)] = 42932, + [SMALL_STATE(1090)] = 42952, + [SMALL_STATE(1091)] = 42966, + [SMALL_STATE(1092)] = 42978, + [SMALL_STATE(1093)] = 42992, + [SMALL_STATE(1094)] = 43006, + [SMALL_STATE(1095)] = 43020, + [SMALL_STATE(1096)] = 43034, + [SMALL_STATE(1097)] = 43048, + [SMALL_STATE(1098)] = 43068, + [SMALL_STATE(1099)] = 43088, + [SMALL_STATE(1100)] = 43102, + [SMALL_STATE(1101)] = 43116, + [SMALL_STATE(1102)] = 43136, + [SMALL_STATE(1103)] = 43150, + [SMALL_STATE(1104)] = 43170, + [SMALL_STATE(1105)] = 43190, + [SMALL_STATE(1106)] = 43210, + [SMALL_STATE(1107)] = 43230, + [SMALL_STATE(1108)] = 43244, + [SMALL_STATE(1109)] = 43264, + [SMALL_STATE(1110)] = 43278, + [SMALL_STATE(1111)] = 43298, + [SMALL_STATE(1112)] = 43312, + [SMALL_STATE(1113)] = 43332, + [SMALL_STATE(1114)] = 43352, + [SMALL_STATE(1115)] = 43366, + [SMALL_STATE(1116)] = 43386, + [SMALL_STATE(1117)] = 43398, + [SMALL_STATE(1118)] = 43418, + [SMALL_STATE(1119)] = 43432, + [SMALL_STATE(1120)] = 43450, + [SMALL_STATE(1121)] = 43470, + [SMALL_STATE(1122)] = 43486, + [SMALL_STATE(1123)] = 43500, + [SMALL_STATE(1124)] = 43514, + [SMALL_STATE(1125)] = 43534, + [SMALL_STATE(1126)] = 43554, + [SMALL_STATE(1127)] = 43566, + [SMALL_STATE(1128)] = 43581, + [SMALL_STATE(1129)] = 43598, + [SMALL_STATE(1130)] = 43609, + [SMALL_STATE(1131)] = 43626, + [SMALL_STATE(1132)] = 43643, + [SMALL_STATE(1133)] = 43660, + [SMALL_STATE(1134)] = 43677, + [SMALL_STATE(1135)] = 43694, + [SMALL_STATE(1136)] = 43711, + [SMALL_STATE(1137)] = 43728, + [SMALL_STATE(1138)] = 43745, + [SMALL_STATE(1139)] = 43762, + [SMALL_STATE(1140)] = 43779, + [SMALL_STATE(1141)] = 43796, + [SMALL_STATE(1142)] = 43815, + [SMALL_STATE(1143)] = 43832, + [SMALL_STATE(1144)] = 43847, + [SMALL_STATE(1145)] = 43866, + [SMALL_STATE(1146)] = 43881, + [SMALL_STATE(1147)] = 43898, + [SMALL_STATE(1148)] = 43913, + [SMALL_STATE(1149)] = 43930, + [SMALL_STATE(1150)] = 43945, + [SMALL_STATE(1151)] = 43962, + [SMALL_STATE(1152)] = 43979, + [SMALL_STATE(1153)] = 43998, + [SMALL_STATE(1154)] = 44015, + [SMALL_STATE(1155)] = 44032, + [SMALL_STATE(1156)] = 44051, + [SMALL_STATE(1157)] = 44068, + [SMALL_STATE(1158)] = 44085, + [SMALL_STATE(1159)] = 44096, + [SMALL_STATE(1160)] = 44111, + [SMALL_STATE(1161)] = 44128, + [SMALL_STATE(1162)] = 44141, + [SMALL_STATE(1163)] = 44158, + [SMALL_STATE(1164)] = 44175, + [SMALL_STATE(1165)] = 44192, + [SMALL_STATE(1166)] = 44209, + [SMALL_STATE(1167)] = 44226, + [SMALL_STATE(1168)] = 44243, + [SMALL_STATE(1169)] = 44258, + [SMALL_STATE(1170)] = 44273, + [SMALL_STATE(1171)] = 44290, + [SMALL_STATE(1172)] = 44305, + [SMALL_STATE(1173)] = 44322, + [SMALL_STATE(1174)] = 44333, + [SMALL_STATE(1175)] = 44344, + [SMALL_STATE(1176)] = 44359, + [SMALL_STATE(1177)] = 44376, + [SMALL_STATE(1178)] = 44393, + [SMALL_STATE(1179)] = 44410, + [SMALL_STATE(1180)] = 44427, + [SMALL_STATE(1181)] = 44442, + [SMALL_STATE(1182)] = 44457, + [SMALL_STATE(1183)] = 44472, + [SMALL_STATE(1184)] = 44491, + [SMALL_STATE(1185)] = 44510, + [SMALL_STATE(1186)] = 44527, + [SMALL_STATE(1187)] = 44544, + [SMALL_STATE(1188)] = 44561, + [SMALL_STATE(1189)] = 44578, + [SMALL_STATE(1190)] = 44589, + [SMALL_STATE(1191)] = 44602, + [SMALL_STATE(1192)] = 44619, + [SMALL_STATE(1193)] = 44636, + [SMALL_STATE(1194)] = 44653, + [SMALL_STATE(1195)] = 44670, + [SMALL_STATE(1196)] = 44687, + [SMALL_STATE(1197)] = 44704, + [SMALL_STATE(1198)] = 44721, + [SMALL_STATE(1199)] = 44736, + [SMALL_STATE(1200)] = 44747, + [SMALL_STATE(1201)] = 44764, + [SMALL_STATE(1202)] = 44778, + [SMALL_STATE(1203)] = 44792, + [SMALL_STATE(1204)] = 44806, + [SMALL_STATE(1205)] = 44818, + [SMALL_STATE(1206)] = 44830, + [SMALL_STATE(1207)] = 44844, + [SMALL_STATE(1208)] = 44856, + [SMALL_STATE(1209)] = 44870, + [SMALL_STATE(1210)] = 44884, + [SMALL_STATE(1211)] = 44894, + [SMALL_STATE(1212)] = 44906, + [SMALL_STATE(1213)] = 44920, + [SMALL_STATE(1214)] = 44930, + [SMALL_STATE(1215)] = 44944, + [SMALL_STATE(1216)] = 44954, + [SMALL_STATE(1217)] = 44968, + [SMALL_STATE(1218)] = 44978, + [SMALL_STATE(1219)] = 44992, + [SMALL_STATE(1220)] = 45006, + [SMALL_STATE(1221)] = 45020, + [SMALL_STATE(1222)] = 45034, + [SMALL_STATE(1223)] = 45048, + [SMALL_STATE(1224)] = 45062, + [SMALL_STATE(1225)] = 45076, + [SMALL_STATE(1226)] = 45088, + [SMALL_STATE(1227)] = 45100, + [SMALL_STATE(1228)] = 45114, + [SMALL_STATE(1229)] = 45128, + [SMALL_STATE(1230)] = 45138, + [SMALL_STATE(1231)] = 45152, + [SMALL_STATE(1232)] = 45164, + [SMALL_STATE(1233)] = 45178, + [SMALL_STATE(1234)] = 45188, + [SMALL_STATE(1235)] = 45202, + [SMALL_STATE(1236)] = 45212, + [SMALL_STATE(1237)] = 45226, + [SMALL_STATE(1238)] = 45240, + [SMALL_STATE(1239)] = 45254, + [SMALL_STATE(1240)] = 45268, + [SMALL_STATE(1241)] = 45282, + [SMALL_STATE(1242)] = 45296, + [SMALL_STATE(1243)] = 45308, + [SMALL_STATE(1244)] = 45322, + [SMALL_STATE(1245)] = 45336, + [SMALL_STATE(1246)] = 45350, + [SMALL_STATE(1247)] = 45364, + [SMALL_STATE(1248)] = 45378, + [SMALL_STATE(1249)] = 45392, + [SMALL_STATE(1250)] = 45406, + [SMALL_STATE(1251)] = 45420, + [SMALL_STATE(1252)] = 45434, + [SMALL_STATE(1253)] = 45448, + [SMALL_STATE(1254)] = 45462, + [SMALL_STATE(1255)] = 45476, + [SMALL_STATE(1256)] = 45490, + [SMALL_STATE(1257)] = 45504, + [SMALL_STATE(1258)] = 45518, + [SMALL_STATE(1259)] = 45532, + [SMALL_STATE(1260)] = 45542, + [SMALL_STATE(1261)] = 45556, + [SMALL_STATE(1262)] = 45570, + [SMALL_STATE(1263)] = 45584, + [SMALL_STATE(1264)] = 45596, + [SMALL_STATE(1265)] = 45610, + [SMALL_STATE(1266)] = 45624, + [SMALL_STATE(1267)] = 45638, + [SMALL_STATE(1268)] = 45650, + [SMALL_STATE(1269)] = 45664, + [SMALL_STATE(1270)] = 45678, + [SMALL_STATE(1271)] = 45690, + [SMALL_STATE(1272)] = 45704, + [SMALL_STATE(1273)] = 45716, + [SMALL_STATE(1274)] = 45730, + [SMALL_STATE(1275)] = 45744, + [SMALL_STATE(1276)] = 45758, + [SMALL_STATE(1277)] = 45772, + [SMALL_STATE(1278)] = 45786, + [SMALL_STATE(1279)] = 45800, + [SMALL_STATE(1280)] = 45814, + [SMALL_STATE(1281)] = 45828, + [SMALL_STATE(1282)] = 45842, + [SMALL_STATE(1283)] = 45856, + [SMALL_STATE(1284)] = 45868, + [SMALL_STATE(1285)] = 45882, + [SMALL_STATE(1286)] = 45896, + [SMALL_STATE(1287)] = 45910, + [SMALL_STATE(1288)] = 45922, + [SMALL_STATE(1289)] = 45936, + [SMALL_STATE(1290)] = 45950, + [SMALL_STATE(1291)] = 45964, + [SMALL_STATE(1292)] = 45978, + [SMALL_STATE(1293)] = 45990, + [SMALL_STATE(1294)] = 46001, + [SMALL_STATE(1295)] = 46012, + [SMALL_STATE(1296)] = 46023, + [SMALL_STATE(1297)] = 46032, + [SMALL_STATE(1298)] = 46043, + [SMALL_STATE(1299)] = 46052, + [SMALL_STATE(1300)] = 46063, + [SMALL_STATE(1301)] = 46072, + [SMALL_STATE(1302)] = 46081, + [SMALL_STATE(1303)] = 46090, + [SMALL_STATE(1304)] = 46101, + [SMALL_STATE(1305)] = 46112, + [SMALL_STATE(1306)] = 46123, + [SMALL_STATE(1307)] = 46134, + [SMALL_STATE(1308)] = 46145, + [SMALL_STATE(1309)] = 46156, + [SMALL_STATE(1310)] = 46167, + [SMALL_STATE(1311)] = 46178, + [SMALL_STATE(1312)] = 46189, + [SMALL_STATE(1313)] = 46200, + [SMALL_STATE(1314)] = 46211, + [SMALL_STATE(1315)] = 46222, + [SMALL_STATE(1316)] = 46231, + [SMALL_STATE(1317)] = 46240, + [SMALL_STATE(1318)] = 46251, + [SMALL_STATE(1319)] = 46262, + [SMALL_STATE(1320)] = 46273, + [SMALL_STATE(1321)] = 46284, + [SMALL_STATE(1322)] = 46295, + [SMALL_STATE(1323)] = 46306, + [SMALL_STATE(1324)] = 46317, + [SMALL_STATE(1325)] = 46328, + [SMALL_STATE(1326)] = 46339, + [SMALL_STATE(1327)] = 46350, + [SMALL_STATE(1328)] = 46361, + [SMALL_STATE(1329)] = 46372, + [SMALL_STATE(1330)] = 46383, + [SMALL_STATE(1331)] = 46394, + [SMALL_STATE(1332)] = 46405, + [SMALL_STATE(1333)] = 46416, + [SMALL_STATE(1334)] = 46427, + [SMALL_STATE(1335)] = 46438, + [SMALL_STATE(1336)] = 46449, + [SMALL_STATE(1337)] = 46460, + [SMALL_STATE(1338)] = 46471, + [SMALL_STATE(1339)] = 46482, + [SMALL_STATE(1340)] = 46493, + [SMALL_STATE(1341)] = 46504, + [SMALL_STATE(1342)] = 46515, + [SMALL_STATE(1343)] = 46526, + [SMALL_STATE(1344)] = 46537, + [SMALL_STATE(1345)] = 46548, + [SMALL_STATE(1346)] = 46559, + [SMALL_STATE(1347)] = 46570, + [SMALL_STATE(1348)] = 46581, + [SMALL_STATE(1349)] = 46592, + [SMALL_STATE(1350)] = 46603, + [SMALL_STATE(1351)] = 46614, + [SMALL_STATE(1352)] = 46625, + [SMALL_STATE(1353)] = 46636, + [SMALL_STATE(1354)] = 46645, + [SMALL_STATE(1355)] = 46656, + [SMALL_STATE(1356)] = 46667, + [SMALL_STATE(1357)] = 46676, + [SMALL_STATE(1358)] = 46687, + [SMALL_STATE(1359)] = 46698, + [SMALL_STATE(1360)] = 46709, + [SMALL_STATE(1361)] = 46720, + [SMALL_STATE(1362)] = 46731, + [SMALL_STATE(1363)] = 46742, + [SMALL_STATE(1364)] = 46753, + [SMALL_STATE(1365)] = 46764, + [SMALL_STATE(1366)] = 46775, + [SMALL_STATE(1367)] = 46786, + [SMALL_STATE(1368)] = 46795, + [SMALL_STATE(1369)] = 46806, + [SMALL_STATE(1370)] = 46817, + [SMALL_STATE(1371)] = 46828, + [SMALL_STATE(1372)] = 46839, + [SMALL_STATE(1373)] = 46850, + [SMALL_STATE(1374)] = 46861, + [SMALL_STATE(1375)] = 46870, + [SMALL_STATE(1376)] = 46881, + [SMALL_STATE(1377)] = 46892, + [SMALL_STATE(1378)] = 46903, + [SMALL_STATE(1379)] = 46912, + [SMALL_STATE(1380)] = 46921, + [SMALL_STATE(1381)] = 46932, + [SMALL_STATE(1382)] = 46943, + [SMALL_STATE(1383)] = 46954, + [SMALL_STATE(1384)] = 46965, + [SMALL_STATE(1385)] = 46976, + [SMALL_STATE(1386)] = 46987, + [SMALL_STATE(1387)] = 46998, + [SMALL_STATE(1388)] = 47009, + [SMALL_STATE(1389)] = 47020, + [SMALL_STATE(1390)] = 47029, + [SMALL_STATE(1391)] = 47040, + [SMALL_STATE(1392)] = 47051, + [SMALL_STATE(1393)] = 47062, + [SMALL_STATE(1394)] = 47073, + [SMALL_STATE(1395)] = 47082, + [SMALL_STATE(1396)] = 47093, + [SMALL_STATE(1397)] = 47104, + [SMALL_STATE(1398)] = 47115, + [SMALL_STATE(1399)] = 47126, + [SMALL_STATE(1400)] = 47137, + [SMALL_STATE(1401)] = 47148, + [SMALL_STATE(1402)] = 47159, + [SMALL_STATE(1403)] = 47170, + [SMALL_STATE(1404)] = 47181, + [SMALL_STATE(1405)] = 47190, + [SMALL_STATE(1406)] = 47201, + [SMALL_STATE(1407)] = 47210, + [SMALL_STATE(1408)] = 47221, + [SMALL_STATE(1409)] = 47232, + [SMALL_STATE(1410)] = 47243, + [SMALL_STATE(1411)] = 47254, + [SMALL_STATE(1412)] = 47265, + [SMALL_STATE(1413)] = 47276, + [SMALL_STATE(1414)] = 47287, + [SMALL_STATE(1415)] = 47298, + [SMALL_STATE(1416)] = 47309, + [SMALL_STATE(1417)] = 47320, + [SMALL_STATE(1418)] = 47331, + [SMALL_STATE(1419)] = 47342, + [SMALL_STATE(1420)] = 47353, + [SMALL_STATE(1421)] = 47364, + [SMALL_STATE(1422)] = 47375, + [SMALL_STATE(1423)] = 47386, + [SMALL_STATE(1424)] = 47395, + [SMALL_STATE(1425)] = 47404, + [SMALL_STATE(1426)] = 47415, + [SMALL_STATE(1427)] = 47426, + [SMALL_STATE(1428)] = 47437, + [SMALL_STATE(1429)] = 47448, + [SMALL_STATE(1430)] = 47459, + [SMALL_STATE(1431)] = 47470, + [SMALL_STATE(1432)] = 47481, + [SMALL_STATE(1433)] = 47492, + [SMALL_STATE(1434)] = 47503, + [SMALL_STATE(1435)] = 47514, + [SMALL_STATE(1436)] = 47525, + [SMALL_STATE(1437)] = 47536, + [SMALL_STATE(1438)] = 47547, + [SMALL_STATE(1439)] = 47558, + [SMALL_STATE(1440)] = 47569, + [SMALL_STATE(1441)] = 47580, + [SMALL_STATE(1442)] = 47589, + [SMALL_STATE(1443)] = 47598, + [SMALL_STATE(1444)] = 47609, + [SMALL_STATE(1445)] = 47620, + [SMALL_STATE(1446)] = 47631, + [SMALL_STATE(1447)] = 47640, + [SMALL_STATE(1448)] = 47651, + [SMALL_STATE(1449)] = 47662, + [SMALL_STATE(1450)] = 47673, + [SMALL_STATE(1451)] = 47684, + [SMALL_STATE(1452)] = 47693, + [SMALL_STATE(1453)] = 47704, + [SMALL_STATE(1454)] = 47713, + [SMALL_STATE(1455)] = 47724, + [SMALL_STATE(1456)] = 47733, + [SMALL_STATE(1457)] = 47744, + [SMALL_STATE(1458)] = 47755, + [SMALL_STATE(1459)] = 47766, + [SMALL_STATE(1460)] = 47777, + [SMALL_STATE(1461)] = 47788, + [SMALL_STATE(1462)] = 47799, + [SMALL_STATE(1463)] = 47810, + [SMALL_STATE(1464)] = 47821, + [SMALL_STATE(1465)] = 47832, + [SMALL_STATE(1466)] = 47843, + [SMALL_STATE(1467)] = 47854, + [SMALL_STATE(1468)] = 47865, + [SMALL_STATE(1469)] = 47876, + [SMALL_STATE(1470)] = 47887, + [SMALL_STATE(1471)] = 47898, + [SMALL_STATE(1472)] = 47909, + [SMALL_STATE(1473)] = 47920, + [SMALL_STATE(1474)] = 47931, + [SMALL_STATE(1475)] = 47942, + [SMALL_STATE(1476)] = 47953, + [SMALL_STATE(1477)] = 47964, + [SMALL_STATE(1478)] = 47975, + [SMALL_STATE(1479)] = 47984, + [SMALL_STATE(1480)] = 47995, + [SMALL_STATE(1481)] = 48006, + [SMALL_STATE(1482)] = 48017, + [SMALL_STATE(1483)] = 48028, + [SMALL_STATE(1484)] = 48039, + [SMALL_STATE(1485)] = 48050, + [SMALL_STATE(1486)] = 48061, + [SMALL_STATE(1487)] = 48072, + [SMALL_STATE(1488)] = 48083, + [SMALL_STATE(1489)] = 48094, + [SMALL_STATE(1490)] = 48105, + [SMALL_STATE(1491)] = 48116, + [SMALL_STATE(1492)] = 48127, + [SMALL_STATE(1493)] = 48138, + [SMALL_STATE(1494)] = 48149, + [SMALL_STATE(1495)] = 48160, + [SMALL_STATE(1496)] = 48171, + [SMALL_STATE(1497)] = 48182, + [SMALL_STATE(1498)] = 48193, + [SMALL_STATE(1499)] = 48204, + [SMALL_STATE(1500)] = 48215, + [SMALL_STATE(1501)] = 48226, + [SMALL_STATE(1502)] = 48237, + [SMALL_STATE(1503)] = 48248, + [SMALL_STATE(1504)] = 48259, + [SMALL_STATE(1505)] = 48270, + [SMALL_STATE(1506)] = 48281, + [SMALL_STATE(1507)] = 48292, + [SMALL_STATE(1508)] = 48303, + [SMALL_STATE(1509)] = 48314, + [SMALL_STATE(1510)] = 48325, + [SMALL_STATE(1511)] = 48336, + [SMALL_STATE(1512)] = 48347, + [SMALL_STATE(1513)] = 48358, + [SMALL_STATE(1514)] = 48369, + [SMALL_STATE(1515)] = 48380, + [SMALL_STATE(1516)] = 48391, + [SMALL_STATE(1517)] = 48400, + [SMALL_STATE(1518)] = 48411, + [SMALL_STATE(1519)] = 48422, + [SMALL_STATE(1520)] = 48433, + [SMALL_STATE(1521)] = 48442, + [SMALL_STATE(1522)] = 48451, + [SMALL_STATE(1523)] = 48462, + [SMALL_STATE(1524)] = 48471, + [SMALL_STATE(1525)] = 48480, + [SMALL_STATE(1526)] = 48489, + [SMALL_STATE(1527)] = 48500, + [SMALL_STATE(1528)] = 48509, + [SMALL_STATE(1529)] = 48518, + [SMALL_STATE(1530)] = 48529, + [SMALL_STATE(1531)] = 48540, + [SMALL_STATE(1532)] = 48549, + [SMALL_STATE(1533)] = 48560, + [SMALL_STATE(1534)] = 48571, + [SMALL_STATE(1535)] = 48582, + [SMALL_STATE(1536)] = 48593, + [SMALL_STATE(1537)] = 48604, + [SMALL_STATE(1538)] = 48613, + [SMALL_STATE(1539)] = 48622, + [SMALL_STATE(1540)] = 48633, + [SMALL_STATE(1541)] = 48644, + [SMALL_STATE(1542)] = 48653, + [SMALL_STATE(1543)] = 48664, + [SMALL_STATE(1544)] = 48675, + [SMALL_STATE(1545)] = 48683, + [SMALL_STATE(1546)] = 48691, + [SMALL_STATE(1547)] = 48699, + [SMALL_STATE(1548)] = 48707, + [SMALL_STATE(1549)] = 48715, + [SMALL_STATE(1550)] = 48723, + [SMALL_STATE(1551)] = 48731, + [SMALL_STATE(1552)] = 48739, + [SMALL_STATE(1553)] = 48747, + [SMALL_STATE(1554)] = 48755, + [SMALL_STATE(1555)] = 48763, + [SMALL_STATE(1556)] = 48771, + [SMALL_STATE(1557)] = 48781, + [SMALL_STATE(1558)] = 48789, + [SMALL_STATE(1559)] = 48799, + [SMALL_STATE(1560)] = 48807, + [SMALL_STATE(1561)] = 48815, + [SMALL_STATE(1562)] = 48823, + [SMALL_STATE(1563)] = 48831, + [SMALL_STATE(1564)] = 48839, + [SMALL_STATE(1565)] = 48847, + [SMALL_STATE(1566)] = 48855, + [SMALL_STATE(1567)] = 48863, + [SMALL_STATE(1568)] = 48871, + [SMALL_STATE(1569)] = 48879, + [SMALL_STATE(1570)] = 48887, + [SMALL_STATE(1571)] = 48895, + [SMALL_STATE(1572)] = 48903, + [SMALL_STATE(1573)] = 48911, + [SMALL_STATE(1574)] = 48919, + [SMALL_STATE(1575)] = 48927, + [SMALL_STATE(1576)] = 48935, + [SMALL_STATE(1577)] = 48943, + [SMALL_STATE(1578)] = 48951, + [SMALL_STATE(1579)] = 48959, + [SMALL_STATE(1580)] = 48967, + [SMALL_STATE(1581)] = 48975, + [SMALL_STATE(1582)] = 48983, + [SMALL_STATE(1583)] = 48991, + [SMALL_STATE(1584)] = 48999, + [SMALL_STATE(1585)] = 49007, + [SMALL_STATE(1586)] = 49015, + [SMALL_STATE(1587)] = 49023, + [SMALL_STATE(1588)] = 49031, + [SMALL_STATE(1589)] = 49039, + [SMALL_STATE(1590)] = 49047, + [SMALL_STATE(1591)] = 49057, + [SMALL_STATE(1592)] = 49067, + [SMALL_STATE(1593)] = 49075, + [SMALL_STATE(1594)] = 49083, + [SMALL_STATE(1595)] = 49093, + [SMALL_STATE(1596)] = 49101, + [SMALL_STATE(1597)] = 49109, + [SMALL_STATE(1598)] = 49117, + [SMALL_STATE(1599)] = 49125, + [SMALL_STATE(1600)] = 49133, + [SMALL_STATE(1601)] = 49141, + [SMALL_STATE(1602)] = 49149, + [SMALL_STATE(1603)] = 49157, + [SMALL_STATE(1604)] = 49165, + [SMALL_STATE(1605)] = 49173, + [SMALL_STATE(1606)] = 49181, + [SMALL_STATE(1607)] = 49189, + [SMALL_STATE(1608)] = 49197, + [SMALL_STATE(1609)] = 49205, + [SMALL_STATE(1610)] = 49213, + [SMALL_STATE(1611)] = 49221, + [SMALL_STATE(1612)] = 49229, + [SMALL_STATE(1613)] = 49239, + [SMALL_STATE(1614)] = 49247, + [SMALL_STATE(1615)] = 49255, + [SMALL_STATE(1616)] = 49263, + [SMALL_STATE(1617)] = 49271, + [SMALL_STATE(1618)] = 49279, + [SMALL_STATE(1619)] = 49287, + [SMALL_STATE(1620)] = 49297, + [SMALL_STATE(1621)] = 49305, + [SMALL_STATE(1622)] = 49313, + [SMALL_STATE(1623)] = 49323, + [SMALL_STATE(1624)] = 49331, + [SMALL_STATE(1625)] = 49339, + [SMALL_STATE(1626)] = 49347, + [SMALL_STATE(1627)] = 49355, + [SMALL_STATE(1628)] = 49363, + [SMALL_STATE(1629)] = 49371, + [SMALL_STATE(1630)] = 49379, + [SMALL_STATE(1631)] = 49387, + [SMALL_STATE(1632)] = 49395, + [SMALL_STATE(1633)] = 49403, + [SMALL_STATE(1634)] = 49411, + [SMALL_STATE(1635)] = 49419, + [SMALL_STATE(1636)] = 49427, + [SMALL_STATE(1637)] = 49435, + [SMALL_STATE(1638)] = 49443, + [SMALL_STATE(1639)] = 49451, + [SMALL_STATE(1640)] = 49459, + [SMALL_STATE(1641)] = 49467, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), - [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(385), - [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(257), - [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(297), - [148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), - [150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3), - [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(406), - [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(900), - [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(915), - [162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1202), - [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1225), - [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1084), - [171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(80), - [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(185), - [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(283), - [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1221), - [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(30), - [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1233), - [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1181), - [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1080), - [195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1081), - [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1238), - [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(98), - [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(114), - [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(43), - [210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(63), - [213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(973), - [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1405), - [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(987), - [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1039), - [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(113), - [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(217), - [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(217), - [234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(234), - [237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1046), - [240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1003), - [243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(926), - [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(595), - [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(595), - [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(597), - [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1078), - [258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, .production_id = 79), - [260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, .production_id = 79), - [262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, .production_id = 43), - [264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, .production_id = 43), - [266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2), - [268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2), - [270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, .production_id = 19), - [272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3, .production_id = 19), - [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), - [282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2), - [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), - [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), - [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), - [310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), - [322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), - [332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), - [338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), - [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), - [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), - [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3), - [450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3), - [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2), - [456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2), - [458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2), - [460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2), - [462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2), - [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4), - [470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4), - [472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, .production_id = 55), - [474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, .production_id = 55), - [476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), - [478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2), - [480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 66), - [482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 66), - [484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 66), - [486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 66), - [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 77), - [492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 77), - [494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, .production_id = 77), - [496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, .production_id = 77), - [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 66), - [502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 66), - [504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5, .production_id = 66), - [506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, .production_id = 66), - [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 73), - [512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 73), - [514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 73), - [516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 73), - [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 30), - [522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 30), - [524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 30), - [526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 30), - [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 57), - [532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 57), - [534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 57), - [536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 57), - [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 58), - [542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 58), - [544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 58), - [546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 58), - [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 61), - [552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 61), - [554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 61), - [556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 61), - [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), REDUCE(aux_sym_array_pattern_repeat1, 1), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), - [677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_property_name, 1), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), - [696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_property_name, 1), SHIFT(26), - [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_lhs, 1), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), - [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), - [765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(843), - [768] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_property_name, 1), SHIFT(88), - [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(184), - [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), - [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(88), - [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1), - [807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(162), - [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), - [814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(190), - [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(131), - [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2), - [838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, .production_id = 4), - [840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, .production_id = 4), - [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), - [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), - [846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_rest_pattern, 2), - [849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 21), - [851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 21), - [853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, .production_id = 4), - [859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, .production_id = 4), - [861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), - [863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 17), - [869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 17), - [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), - [873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 82), - [875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 82), - [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, .production_id = 72), - [887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, .production_id = 72), - [889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, .production_id = 19), - [891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, .production_id = 19), - [893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 67), - [895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 67), - [897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 57), - [899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 57), - [901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 58), - [903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 58), - [905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 20), - [907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 20), - [909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 81), - [911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 81), - [913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3), - [915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3), - [917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, .production_id = 16), - [919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, .production_id = 16), - [921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 22), - [923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 22), - [925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, .production_id = 23), - [927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, .production_id = 23), - [929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, .production_id = 24), - [931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, .production_id = 24), - [933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, .production_id = 24), - [935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, .production_id = 24), - [937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), - [943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), - [945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 77), - [947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 77), - [949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 60), - [959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 60), - [961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, .production_id = 2), - [963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, .production_id = 2), - [965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 61), - [967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 61), - [969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 18), - [971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 18), - [973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3), - [975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3), - [977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 38), - [979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 38), - [981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4), - [983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4), - [985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 40), - [987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 40), - [989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 76), - [991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 76), - [993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, .production_id = 4), - [995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, .production_id = 4), - [997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1), - [999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1), - [1001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 11), - [1003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 11), - [1005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 12), - [1007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 12), - [1009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 73), - [1011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 73), - [1013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4), - [1015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4), - [1017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3), - [1019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3), - [1021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4), - [1023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4), - [1025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2), - [1027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2), - [1029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 49), - [1031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 49), - [1033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, .production_id = 16), - [1035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, .production_id = 16), - [1037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [1039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [1041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 44), - [1043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 44), - [1045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, .production_id = 45), - [1047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, .production_id = 45), - [1049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2), - [1051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2), - [1053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 66), - [1055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 66), - [1057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, .production_id = 15), - [1059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, .production_id = 15), - [1061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [1063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [1065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 66), - [1067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 66), - [1069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 30), - [1071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 30), - [1073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 34), - [1075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 34), - [1077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [1079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [1081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 59), - [1083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 59), - [1085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, .production_id = 70), - [1087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, .production_id = 70), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [1091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_header, 5, .production_id = 75), - [1093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_header, 5, .production_id = 75), - [1095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_header, 7, .production_id = 84), - [1097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_header, 7, .production_id = 84), - [1099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_header, 6, .production_id = 80), - [1101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_header, 6, .production_id = 80), - [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [1107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [1111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 1), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [1117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 33), - [1119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 33), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [1133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2), - [1135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2), - [1137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 6), - [1139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 6), - [1141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 6), - [1143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 6), - [1145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, .production_id = 5), - [1147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, .production_id = 5), - [1149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), - [1151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), - [1153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), - [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2), - [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [1162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), - [1165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3), - [1167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3), - [1169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3), REDUCE(sym_object_pattern, 3), - [1172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3), - [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3), - [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), - [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, .production_id = 4), - [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, .production_id = 4), - [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2), - [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2), - [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 7), - [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 7), - [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 8), - [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 8), - [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 2, .production_id = 9), - [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 2, .production_id = 9), - [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 13), - [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 14), - [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 14), - [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3), - [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3), - [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, .production_id = 27), - [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, .production_id = 27), - [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 19), - [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 19), - [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3, .production_id = 31), - [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, .production_id = 31), - [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3), - [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3), - [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .dynamic_precedence = 1, .production_id = 32), - [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .dynamic_precedence = 1, .production_id = 32), - [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3), - [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3), - [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 3, .production_id = 13), - [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 35), - [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 35), - [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 3, .production_id = 36), - [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 3, .production_id = 36), - [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 33), - [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 37), - [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 37), - [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 39), - [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 39), - [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4), - [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4), - [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 46), - [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 46), - [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 47), - [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 47), - [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 48), - [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 48), - [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4), - [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4), - [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, .production_id = 25), - [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, .production_id = 25), - [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, .production_id = 52), - [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, .production_id = 52), - [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, .production_id = 47), - [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, .production_id = 47), - [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 62), - [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 62), - [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 65), - [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 65), - [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_fragment, 5), - [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_fragment, 5), - [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, .production_id = 50), - [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, .production_id = 50), - [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 69), - [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [1366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 4, .production_id = 71), - [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 4, .production_id = 71), - [1370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_fragment, 6), - [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_fragment, 6), - [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer, 2, .production_id = 43), - [1422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_initializer, 2, .production_id = 43), SHIFT(216), - [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 13), - [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2), - [1461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 13), REDUCE(sym_assignment_expression, 3, .production_id = 13), - [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 13), - [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2), - [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3), - [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2), - [1480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [1482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), - [1485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3), REDUCE(sym_object_pattern, 3), - [1488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), - [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), - [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 41), - [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [1517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), - [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3), - [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_name, 1), - [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [1606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [1632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_initializer, 2, .production_id = 43), SHIFT(240), - [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [1717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1), REDUCE(aux_sym_object_pattern_repeat1, 1), - [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [1726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), - [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1), - [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), - [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1), - [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), - [1764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [1778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 56), SHIFT_REPEAT(1001), - [1781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 56), SHIFT_REPEAT(841), - [1784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 56), - [1786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 56), SHIFT_REPEAT(784), - [1789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 56), SHIFT_REPEAT(772), - [1792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 56), SHIFT_REPEAT(770), - [1795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 56), SHIFT_REPEAT(229), - [1798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 56), SHIFT_REPEAT(1022), - [1801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 56), SHIFT_REPEAT(1033), - [1804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 56), SHIFT_REPEAT(1001), - [1807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 56), SHIFT_REPEAT(1078), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [1820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), REDUCE(aux_sym_object_pattern_repeat1, 2), - [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), - [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), - [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), - [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), - [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2), - [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 58), - [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 58), - [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 77), - [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 77), - [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 78), - [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 78), - [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 10), - [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 10), - [1901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 10), SHIFT_REPEAT(1078), - [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 64), - [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 64), - [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [1910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 34), - [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 34), - [1914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 83), - [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 83), - [1918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 66), - [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 66), - [1922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 74), - [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 74), - [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [1928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, .production_id = 42), - [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, .production_id = 42), - [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [1938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, .production_id = 28), - [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, .production_id = 28), - [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [1954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 8), - [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 8), - [1958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 1), - [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 1), - [1962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 28), - [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 28), - [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [1982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [1984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [2010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(91), - [2013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(993), - [2016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(870), - [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [2021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 51), SHIFT_REPEAT(917), - [2024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 51), SHIFT_REPEAT(92), - [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 51), - [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 51), - [2031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 51), SHIFT_REPEAT(917), - [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [2036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), - [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), - [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [2072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [2076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), - [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4), - [2108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 3), - [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructuring_pattern, 1), - [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3), - [2120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1), - [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1), - [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4), - [2128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(922), - [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), - [2133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(104), - [2136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, .production_id = 68), - [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [2140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3), - [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3), - [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 1, .production_id = 29), - [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [2180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, .production_id = 53), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [2186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1364), - [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), - [2191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(122), - [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), - [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [2206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_namespace_name, 3), - [2208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_namespace_name, 3), - [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), - [2212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, .production_id = 54), - [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), - [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), - [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), - [2224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(190), - [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [2237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(162), - [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [2250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, .production_id = 26), - [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, .production_id = 26), - [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [2266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3), - [2268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3), - [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [2272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3), - [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 3), - [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [2278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [2288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 3), - [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [2292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), - [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2), - [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 2), - [2300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [2306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [2320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [2324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [2336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), - [2340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), SHIFT_REPEAT(901), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [2415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), SHIFT_REPEAT(87), - [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2), - [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [2430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), - [2432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(1051), - [2435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2), - [2437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(1052), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [2446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [2458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, .dynamic_precedence = -1, .production_id = 50), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_export_specifier, 1, .production_id = 3), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [2538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), SHIFT_REPEAT(738), - [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [2543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2), SHIFT_REPEAT(737), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, .dynamic_precedence = -1, .production_id = 25), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, .production_id = 41), - [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [2580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), - [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [2588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), SHIFT_REPEAT(93), - [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [2597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4), - [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [2601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), SHIFT_REPEAT(1251), - [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5), - [2610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), SHIFT_REPEAT(81), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [2623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, .production_id = 53), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5), - [2629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_clause, 2, .production_id = 15), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), - [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, .production_id = 29), - [2655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, .production_id = 54), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [2665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1), - [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [2671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 4, .production_id = 68), - [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_export_specifier, 3, .production_id = 63), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [2677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [2679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [2687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [2703] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [2705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import_export, 3), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [2761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2), - [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [2787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [2801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5), - [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), + [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0, 0, 0), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), + [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(428), + [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(280), + [159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(315), + [162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), + [164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4), + [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(965), + [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1297), + [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1016), + [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(325), + [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1011), + [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1303), + [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1311), + [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1252), + [191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(94), + [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(189), + [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(304), + [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1325), + [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(28), + [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1385), + [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1207), + [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1263), + [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1389), + [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(110), + [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(123), + [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(58), + [227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(77), + [230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1110), + [233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1134), + [236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1130), + [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1117), + [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1131), + [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(136), + [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(226), + [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1590), + [254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(226), + [257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(231), + [260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1060), + [263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(609), + [266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1587), + [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(609), + [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(610), + [275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1271), + [278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2, 0, 0), + [280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2, 0, 0), + [282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, 0, 20), + [284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3, 0, 20), + [286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, 0, 84), + [288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, 0, 84), + [290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, 0, 44), + [292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, 0, 44), + [294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, 0, 0), + [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), + [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), + [336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), + [346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), + [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), + [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), + [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0), + [484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0), + [486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4, 0, 0), + [488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4, 0, 0), + [490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2, 0, 0), + [492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2, 0, 0), + [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3, 0, 0), + [498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3, 0, 0), + [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, 0, 56), + [504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, 0, 56), + [506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), + [508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), + [510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2, 0, 0), + [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, 0, 69), + [516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, 0, 69), + [518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 69), + [520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 69), + [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 58), + [526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 58), + [528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 58), + [530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 58), + [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 29), + [536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 29), + [538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 29), + [540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 29), + [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 74), + [546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 74), + [548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 74), + [550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 74), + [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 80), + [556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 80), + [558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, 0, 80), + [560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, 0, 80), + [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 69), + [566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 69), + [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, 0, 69), + [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, 0, 69), + [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 63), + [576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 63), + [578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 63), + [580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 63), + [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 59), + [586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 59), + [588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 59), + [590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 59), + [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), + [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_property_name, 1, 0, 0), + [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), + [758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_property_name, 1, 0, 0), SHIFT(43), + [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_lhs, 1, 0, 0), + [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), + [803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(958), + [806] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_property_name, 1, 0, 0), SHIFT(99), + [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(254), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), + [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(99), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), + [866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(179), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), + [882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(195), + [885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 4), + [887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 4), + [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 0), + [895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(154), + [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), + [903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 22), + [905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 22), + [907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 18), + [919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 18), + [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 4), + [929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 4), + [931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, 0, 50), + [933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, 0, 50), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 89), + [939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 89), + [941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 29), + [947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 29), + [949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), + [951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), + [953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 96), + [955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 96), + [957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 0), + [959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 0), + [961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 95), + [963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 95), + [965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, 0, 20), + [967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, 0, 20), + [969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 63), + [971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 63), + [973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), + [975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), + [977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 73), + [979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 73), + [981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 59), + [983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 59), + [985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), + [989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 58), + [991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 58), + [993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 50), + [995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 50), + [997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, -1, 12), + [999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, -1, 12), + [1001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 0), + [1003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 0), + [1005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 79), + [1007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 79), + [1009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 11), + [1011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 11), + [1013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 94), + [1015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 94), + [1017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), + [1019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), + [1021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 41), + [1023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 41), + [1025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 39), + [1027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 39), + [1029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 21), + [1031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 21), + [1033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [1035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [1037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 19), + [1039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 19), + [1041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 0), + [1043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 0), + [1045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [1047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), + [1049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, 0, 17), + [1051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, 0, 17), + [1053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 23), + [1055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 23), + [1057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 24), + [1059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 24), + [1061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 24), + [1063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 24), + [1065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), + [1067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), + [1069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), + [1071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), + [1073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 93), + [1075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 93), + [1077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 0), + [1079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 0), + [1081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [1083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [1085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 69), + [1087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 69), + [1089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 62), + [1091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 62), + [1093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 15), + [1095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 15), + [1097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 69), + [1099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 69), + [1101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, 0, 80), + [1103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, 0, 80), + [1105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, 0, 2), + [1107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, 0, 2), + [1109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 74), + [1111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 74), + [1113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [1115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [1117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 51), + [1119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 51), + [1121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 4), + [1123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 4), + [1125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, 0, 16), + [1127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, 0, 16), + [1129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 86), + [1131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 86), + [1133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 15), + [1135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 15), + [1137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, 0, 46), + [1139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, 0, 46), + [1141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 0), + [1143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 0), + [1145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 87), + [1147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 87), + [1149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), + [1151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), + [1153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), + [1155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), + [1157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 88), + [1159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 88), + [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [1163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 45), + [1165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 45), + [1167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2, 0, 0), + [1169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2, 0, 0), + [1171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, 0, 17), + [1173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, 0, 17), + [1175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 34), + [1177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 34), + [1179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 35), + [1181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 35), + [1183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 61), + [1185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 61), + [1187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 72), + [1189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 72), + [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [1193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(90), + [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_header, 6, 0, 85), + [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_header, 6, 0, 85), + [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_header, 7, 0, 92), + [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_header, 7, 0, 92), + [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_header, 5, 0, 78), + [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_header, 5, 0, 78), + [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 5), + [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 5), + [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 6), + [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 6), + [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 6), + [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 6), + [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), + [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2, 0, 0), + [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 64), + [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 64), + [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), + [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), + [1254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), + [1257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2, 0, 0), + [1259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), + [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), + [1263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), + [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3, 0, 0), + [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3, 0, 0), + [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), + [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), + [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 3, 0, 25), + [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 3, 0, 25), + [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 20), + [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 20), + [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3, 0, 30), + [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3, 0, 30), + [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 1, 31), + [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 1, 31), + [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, 0, 32), + [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 32), + [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, 0, 0), + [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, 0, 0), + [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), + [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), + [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [1308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), REDUCE(sym_object_pattern, 3, 0, 0), + [1311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, 0, 0), + [1313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, 0, 4), + [1315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 4), + [1317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), + [1319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), + [1321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 7), + [1323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 7), + [1325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), + [1327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 8), + [1329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), + [1331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), + [1333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 2, 0, 9), + [1335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 2, 0, 9), + [1337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 68), + [1339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 68), + [1341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [1343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [1345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 14), + [1347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 14), + [1349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 36), + [1351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 36), + [1353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), + [1355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), + [1357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 3, 0, 37), + [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 3, 0, 37), + [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, 0, 25), + [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, 0, 25), + [1365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 38), + [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 38), + [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), + [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), + [1373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 40), + [1375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 40), + [1377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0), + [1379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0), + [1381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 47), + [1383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 47), + [1385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, 0, 60), + [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, 0, 60), + [1389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 48), + [1391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 48), + [1393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 49), + [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 49), + [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, 0, 48), + [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, 0, 48), + [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), + [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), + [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, 0, 52), + [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, 0, 52), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, 0, 33), + [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 13), + [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 33), + [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 33), + [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 71), + [1461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3, 0, 0), + [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), + [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [1541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), + [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 0), + [1545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), + [1547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), + [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, 0, 13), + [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2, 0, 0), + [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_name, 1, 0, 0), + [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [1562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 13), REDUCE(sym_assignment_expression, 3, 0, 13), + [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 13), + [1567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), REDUCE(sym_object_pattern, 3, 0, 0), + [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer, 2, 0, 44), + [1574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_initializer, 2, 0, 44), SHIFT(234), + [1577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), + [1580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), + [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3, 0, 0), + [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), + [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 42), + [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [1809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_initializer, 2, 0, 44), SHIFT(243), + [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2, 0, 0), + [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [1820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), + [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), + [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [1895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 57), SHIFT_REPEAT(1129), + [1898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 57), SHIFT_REPEAT(947), + [1901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 57), SHIFT_REPEAT(795), + [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 57), + [1906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 57), SHIFT_REPEAT(836), + [1909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 57), SHIFT_REPEAT(825), + [1912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 57), SHIFT_REPEAT(813), + [1915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 57), SHIFT_REPEAT(225), + [1918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 57), SHIFT_REPEAT(1192), + [1921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 57), SHIFT_REPEAT(1191), + [1924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 57), SHIFT_REPEAT(1129), + [1927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 57), SHIFT_REPEAT(1271), + [1930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 57), SHIFT_REPEAT(905), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), + [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [1963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_property_name, 1, 0, 0), SHIFT(1392), + [1966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [1989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [2027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2, 0, 0), + [2029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2, 0, 0), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [2035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 82), + [2037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 82), + [2039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 91), + [2041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 91), + [2043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 67), + [2045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 67), + [2047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, 0, 43), + [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, 0, 43), + [2051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 83), + [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 83), + [2055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 66), + [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 66), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [2061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 90), + [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 90), + [2065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 69), + [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 69), + [2069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 77), + [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 77), + [2073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 81), + [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 81), + [2077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 75), + [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 75), + [2081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 76), + [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 76), + [2085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 80), + [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 80), + [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 10), + [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 10), + [2093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 10), SHIFT_REPEAT(1271), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [2098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, 0, 34), + [2100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, 0, 34), + [2102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 59), + [2104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 59), + [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [2118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 27), + [2120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 27), + [2122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 27), SHIFT_REPEAT(888), + [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [2129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 3, 0, 20), + [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 3, 0, 20), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [2139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, 0, 4), + [2141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 2, 0, 4), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [2149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 27), + [2151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 27), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [2187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, 0, 7), + [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, 0, 7), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [2207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 1), + [2209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 1), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [2245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1, 0, 0), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [2269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(105), + [2272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(972), + [2275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1083), + [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [2314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 53), SHIFT_REPEAT(1026), + [2317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 53), SHIFT_REPEAT(106), + [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 53), + [2322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 53), SHIFT_REPEAT(1026), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 0), + [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructuring_pattern, 1, 0, 0), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [2359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(228), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 0), + [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 3), + [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [2376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 3), SHIFT(1541), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [2383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 0), + [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 0), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2, 0, 0), + [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4, 0, 0), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, 0, 70), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 3, -1, 25), + [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, -1, 25), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [2415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), + [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), + [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 4, -1, 52), + [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 52), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 2, 0, 0), + [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2, 0, 0), + [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, 0, 55), + [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 1, 0, 28), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, 0, 54), + [2449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1065), + [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), + [2454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(147), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [2459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1632), + [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), + [2464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(156), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [2471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 34), + [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 34), + [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 3, 0, 0), + [2477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3, 0, 0), + [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 2, -1, 0), + [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 2, -1, 0), + [2483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_string, 3, 0, 0), + [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_string, 3, 0, 0), + [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [2507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(195), + [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [2512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [2520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 3), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [2530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, 0, 26), + [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, 0, 26), + [2534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_string, 2, 0, 0), + [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_string, 2, 0, 0), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), + [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), + [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 0), + [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 0), + [2584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(179), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [2589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [2605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [2613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [2635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [2637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [2657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(98), + [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [2662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1150), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [2669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [2671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [2677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [2695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [2703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), + [2705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1170), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [2714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(200), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [2725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), + [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), + [2729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1031), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [2734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1183), + [2737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_string_repeat2, 2, 0, 0), + [2739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1183), + [2742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1184), + [2745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_string_repeat1, 2, 0, 0), + [2747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1184), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [2754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_export_name, 1, 0, 0), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), + [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3, 0, 0), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, 0, 3), + [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, 0, 3), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, 0, 0), + [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_clause, 2, 0, 15), + [2804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(95), + [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, 0, 0), + [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [2817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1053), + [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), + [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, 0, 0), + [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2, 0, 0), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, 0, 42), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [2870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), SHIFT_REPEAT(1045), + [2873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), + [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [2879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(798), + [2882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), SHIFT_REPEAT(793), + [2885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(107), + [2888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [2920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 4, 0, 70), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), + [2932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2, 0, 0), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1, 0, 0), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, 0, 65), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [2976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, 0, 28), + [2978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 65), + [2980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, 0, 55), + [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, 0, 54), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), + [2988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, 0, 0), + [3008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3, 0, 0), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [3032] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [3038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, 0, 0), + [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, 0, 0), + [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [3050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3, 0, 0), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [3054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2, 0, 0), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [3060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3, 0, 0), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), +}; + +enum ts_external_scanner_symbol_identifiers { + ts_external_token_automatic_semicolon = 0, + ts_external_token_template_chars = 1, + ts_external_token_ternary_qmark = 2, + ts_external_token_html_comment = 3, + ts_external_token_PIPE_PIPE = 4, + ts_external_token_escape_sequence = 5, + ts_external_token_regex_pattern = 6, + ts_external_token_jsx_text = 7, +}; + +static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { + [ts_external_token_automatic_semicolon] = sym_automatic_semicolon, + [ts_external_token_template_chars] = sym_template_chars, + [ts_external_token_ternary_qmark] = sym_ternary_qmark, + [ts_external_token_html_comment] = sym_html_comment, + [ts_external_token_PIPE_PIPE] = anon_sym_PIPE_PIPE, + [ts_external_token_escape_sequence] = sym_escape_sequence, + [ts_external_token_regex_pattern] = sym_regex_pattern, + [ts_external_token_jsx_text] = sym_jsx_text, +}; + +static const bool ts_external_scanner_states[10][EXTERNAL_TOKEN_COUNT] = { + [1] = { + [ts_external_token_automatic_semicolon] = true, + [ts_external_token_template_chars] = true, + [ts_external_token_ternary_qmark] = true, + [ts_external_token_html_comment] = true, + [ts_external_token_PIPE_PIPE] = true, + [ts_external_token_escape_sequence] = true, + [ts_external_token_jsx_text] = true, + }, + [2] = { + [ts_external_token_html_comment] = true, + }, + [3] = { + [ts_external_token_ternary_qmark] = true, + [ts_external_token_html_comment] = true, + [ts_external_token_PIPE_PIPE] = true, + }, + [4] = { + [ts_external_token_automatic_semicolon] = true, + [ts_external_token_ternary_qmark] = true, + [ts_external_token_html_comment] = true, + [ts_external_token_PIPE_PIPE] = true, + }, + [5] = { + [ts_external_token_automatic_semicolon] = true, + [ts_external_token_html_comment] = true, + }, + [6] = { + [ts_external_token_html_comment] = true, + [ts_external_token_jsx_text] = true, + }, + [7] = { + [ts_external_token_template_chars] = true, + [ts_external_token_html_comment] = true, + [ts_external_token_escape_sequence] = true, + }, + [8] = { + [ts_external_token_html_comment] = true, + [ts_external_token_escape_sequence] = true, + }, + [9] = { + [ts_external_token_html_comment] = true, + [ts_external_token_regex_pattern] = true, + }, }; #ifdef __cplusplus @@ -66664,11 +77947,15 @@ bool tree_sitter_javascript_external_scanner_scan(void *, TSLexer *, const bool unsigned tree_sitter_javascript_external_scanner_serialize(void *, char *); void tree_sitter_javascript_external_scanner_deserialize(void *, const char *, unsigned); -#ifdef _WIN32 -#define extern __declspec(dllexport) +#ifdef TREE_SITTER_HIDE_SYMBOLS +#define TS_PUBLIC +#elif defined(_WIN32) +#define TS_PUBLIC __declspec(dllexport) +#else +#define TS_PUBLIC __attribute__((visibility("default"))) #endif -extern const TSLanguage *tree_sitter_javascript(void) { +TS_PUBLIC const TSLanguage *tree_sitter_javascript(void) { static const TSLanguage language = { .version = LANGUAGE_VERSION, .symbol_count = SYMBOL_COUNT, @@ -66705,6 +77992,7 @@ extern const TSLanguage *tree_sitter_javascript(void) { tree_sitter_javascript_external_scanner_serialize, tree_sitter_javascript_external_scanner_deserialize, }, + .primary_state_ids = ts_primary_state_ids, }; return &language; } diff --git a/lib/scanner.c b/lib/scanner.c index 6ffb9cc..795916d 100644 --- a/lib/scanner.c +++ b/lib/scanner.c @@ -1,187 +1,364 @@ -#include +#include "tree_sitter/parser.h" + +#include #include enum TokenType { - AUTOMATIC_SEMICOLON, - TEMPLATE_CHARS, - TERNARY_QMARK, + AUTOMATIC_SEMICOLON, + TEMPLATE_CHARS, + TERNARY_QMARK, + HTML_COMMENT, + LOGICAL_OR, + ESCAPE_SEQUENCE, + REGEX_PATTERN, + JSX_TEXT, }; void *tree_sitter_javascript_external_scanner_create() { return NULL; } + void tree_sitter_javascript_external_scanner_destroy(void *p) {} -void tree_sitter_javascript_external_scanner_reset(void *p) {} -unsigned tree_sitter_javascript_external_scanner_serialize(void *p, char *buffer) { return 0; } + +unsigned tree_sitter_javascript_external_scanner_serialize(void *payload, char *buffer) { return 0; } + void tree_sitter_javascript_external_scanner_deserialize(void *p, const char *b, unsigned n) {} -static void advance(TSLexer *lexer) { lexer->advance(lexer, false); } -static void skip(TSLexer *lexer) { lexer->advance(lexer, true); } +static inline void advance(TSLexer *lexer) { lexer->advance(lexer, false); } + +static inline void skip(TSLexer *lexer) { lexer->advance(lexer, true); } static bool scan_template_chars(TSLexer *lexer) { - lexer->result_symbol = TEMPLATE_CHARS; - for (bool has_content = false;; has_content = true) { - lexer->mark_end(lexer); - switch (lexer->lookahead) { - case '`': - return has_content; - case '\0': - return false; - case '$': - advance(lexer); - if (lexer->lookahead == '{') return has_content; - break; - case '\\': - return has_content; - default: - advance(lexer); + lexer->result_symbol = TEMPLATE_CHARS; + for (bool has_content = false;; has_content = true) { + lexer->mark_end(lexer); + switch (lexer->lookahead) { + case '`': + return has_content; + case '\0': + return false; + case '$': + advance(lexer); + if (lexer->lookahead == '{') { + return has_content; + } + break; + case '\\': + return has_content; + default: + advance(lexer); + } } - } } -static bool scan_whitespace_and_comments(TSLexer *lexer) { - for (;;) { - while (iswspace(lexer->lookahead)) { - skip(lexer); - } +typedef enum { + REJECT, // Semicolon is illegal, ie a syntax error occurred + NO_NEWLINE, // Unclear if semicolon will be legal, continue + ACCEPT, // Semicolon is legal, assuming a comment was encountered +} WhitespaceResult; - if (lexer->lookahead == '/') { - skip(lexer); +/** + * @param consume If false, only consume enough to check if comment indicates semicolon-legality + */ +static WhitespaceResult scan_whitespace_and_comments(TSLexer *lexer, bool *scanned_comment, bool consume) { + bool saw_block_newline = false; - if (lexer->lookahead == '/') { - skip(lexer); - while (lexer->lookahead != 0 && lexer->lookahead != '\n') { - skip(lexer); + for (;;) { + while (iswspace(lexer->lookahead)) { + skip(lexer); } - } else if (lexer->lookahead == '*') { - skip(lexer); - while (lexer->lookahead != 0) { - if (lexer->lookahead == '*') { + + if (lexer->lookahead == '/') { skip(lexer); + if (lexer->lookahead == '/') { - skip(lexer); - break; + skip(lexer); + while (lexer->lookahead != 0 && lexer->lookahead != '\n' && lexer->lookahead != 0x2028 && + lexer->lookahead != 0x2029) { + skip(lexer); + } + *scanned_comment = true; + } else if (lexer->lookahead == '*') { + skip(lexer); + while (lexer->lookahead != 0) { + if (lexer->lookahead == '*') { + skip(lexer); + if (lexer->lookahead == '/') { + skip(lexer); + *scanned_comment = true; + + if (lexer->lookahead != '/' && !consume) { + return saw_block_newline ? ACCEPT : NO_NEWLINE; + } + + break; + } + } else if (lexer->lookahead == '\n' || lexer->lookahead == 0x2028 || lexer->lookahead == 0x2029) { + saw_block_newline = true; + skip(lexer); + } else { + skip(lexer); + } + } + } else { + return REJECT; } - } else { - skip(lexer); - } + } else { + return ACCEPT; } - } else { - return false; - } - } else { - return true; } - } } -static bool scan_automatic_semicolon(TSLexer *lexer) { - lexer->result_symbol = AUTOMATIC_SEMICOLON; - lexer->mark_end(lexer); +static bool scan_automatic_semicolon(TSLexer *lexer, bool comment_condition, bool *scanned_comment) { + lexer->result_symbol = AUTOMATIC_SEMICOLON; + lexer->mark_end(lexer); + + for (;;) { + if (lexer->lookahead == 0) { + return true; + } + + if (lexer->lookahead == '/') { + WhitespaceResult result = scan_whitespace_and_comments(lexer, scanned_comment, false); + if (result == REJECT) { + return false; + } + + if (result == ACCEPT && comment_condition && lexer->lookahead != ',' && lexer->lookahead != '=') { + return true; + } + } + + if (lexer->lookahead == '}') { + return true; + } + + if (lexer->is_at_included_range_start(lexer)) { + return true; + } + + if (lexer->lookahead == '\n' || lexer->lookahead == 0x2028 || lexer->lookahead == 0x2029) { + break; + } + + if (!iswspace(lexer->lookahead)) { + return false; + } - for (;;) { - if (lexer->lookahead == 0) return true; - if (lexer->lookahead == '}') return true; - if (lexer->is_at_included_range_start(lexer)) return true; - if (lexer->lookahead == '\n') break; - if (!iswspace(lexer->lookahead)) return false; - skip(lexer); - } - - skip(lexer); - - if (!scan_whitespace_and_comments(lexer)) return false; - - switch (lexer->lookahead) { - case ',': - case '.': - case ':': - case ';': - case '*': - case '%': - case '>': - case '<': - case '=': - case '[': - case '(': - case '?': - case '^': - case '|': - case '&': - case '/': - return false; - - // Insert a semicolon before `--` and `++`, but not before binary `+` or `-`. - case '+': - skip(lexer); - return lexer->lookahead == '+'; - case '-': - skip(lexer); - return lexer->lookahead == '-'; - - // Don't insert a semicolon before `!=`, but do insert one before a unary `!`. - case '!': - skip(lexer); - return lexer->lookahead != '='; - - // Don't insert a semicolon before `in` or `instanceof`, but do insert one - // before an identifier. - case 'i': - skip(lexer); - - if (lexer->lookahead != 'n') return true; - skip(lexer); - - if (!iswalpha(lexer->lookahead)) return false; - - for (unsigned i = 0; i < 8; i++) { - if (lexer->lookahead != "stanceof"[i]) return true; skip(lexer); - } + } - if (!iswalpha(lexer->lookahead)) return false; - break; - } + skip(lexer); - return true; + if (scan_whitespace_and_comments(lexer, scanned_comment, true) == REJECT) { + return false; + } + + switch (lexer->lookahead) { + case '`': + case ',': + case ':': + case ';': + case '*': + case '%': + case '>': + case '<': + case '=': + case '[': + case '(': + case '?': + case '^': + case '|': + case '&': + case '/': + return false; + + // Insert a semicolon before decimals literals but not otherwise. + case '.': + skip(lexer); + return iswdigit(lexer->lookahead); + + // Insert a semicolon before `--` and `++`, but not before binary `+` or `-`. + case '+': + skip(lexer); + return lexer->lookahead == '+'; + case '-': + skip(lexer); + return lexer->lookahead == '-'; + + // Don't insert a semicolon before `!=`, but do insert one before a unary `!`. + case '!': + skip(lexer); + return lexer->lookahead != '='; + + // Don't insert a semicolon before `in` or `instanceof`, but do insert one + // before an identifier. + case 'i': + skip(lexer); + + if (lexer->lookahead != 'n') { + return true; + } + skip(lexer); + + if (!iswalpha(lexer->lookahead)) { + return false; + } + + for (unsigned i = 0; i < 8; i++) { + if (lexer->lookahead != "stanceof"[i]) { + return true; + } + skip(lexer); + } + + if (!iswalpha(lexer->lookahead)) { + return false; + } + break; + + default: + break; + } + + return true; } static bool scan_ternary_qmark(TSLexer *lexer) { - for(;;) { - if (!iswspace(lexer->lookahead)) break; - skip(lexer); - } + for (;;) { + if (!iswspace(lexer->lookahead)) { + break; + } + skip(lexer); + } - if (lexer->lookahead == '?') { - advance(lexer); + if (lexer->lookahead == '?') { + advance(lexer); - if (lexer->lookahead == '?') return false; + if (lexer->lookahead == '?') { + return false; + } - lexer->mark_end(lexer); - lexer->result_symbol = TERNARY_QMARK; + lexer->mark_end(lexer); + lexer->result_symbol = TERNARY_QMARK; + + if (lexer->lookahead == '.') { + advance(lexer); + if (iswdigit(lexer->lookahead)) { + return true; + } + return false; + } + return true; + } + return false; +} + +static bool scan_html_comment(TSLexer *lexer) { + while (iswspace(lexer->lookahead) || lexer->lookahead == 0x2028 || lexer->lookahead == 0x2029) { + skip(lexer); + } + + const char *comment_start = ""; + + if (lexer->lookahead == '<') { + for (unsigned i = 0; i < 4; i++) { + if (lexer->lookahead != comment_start[i]) { + return false; + } + advance(lexer); + } + } else if (lexer->lookahead == '-') { + for (unsigned i = 0; i < 3; i++) { + if (lexer->lookahead != comment_end[i]) { + return false; + } + advance(lexer); + } + } else { + return false; + } - if (lexer->lookahead == '.') { - advance(lexer); - if (iswdigit(lexer->lookahead)) return true; - return false; + while (lexer->lookahead != 0 && lexer->lookahead != '\n' && lexer->lookahead != 0x2028 && + lexer->lookahead != 0x2029) { + advance(lexer); } + + lexer->result_symbol = HTML_COMMENT; + lexer->mark_end(lexer); + return true; - } - return false; } -bool tree_sitter_javascript_external_scanner_scan(void *payload, TSLexer *lexer, - const bool *valid_symbols) { - if (valid_symbols[TEMPLATE_CHARS]) { - if (valid_symbols[AUTOMATIC_SEMICOLON]) return false; - return scan_template_chars(lexer); - } else if (valid_symbols[AUTOMATIC_SEMICOLON]) { - bool ret = scan_automatic_semicolon(lexer); - if (!ret && valid_symbols[TERNARY_QMARK] && lexer->lookahead == '?') - return scan_ternary_qmark(lexer); - return ret; - } - if (valid_symbols[TERNARY_QMARK]) { - return scan_ternary_qmark(lexer); - } - - return false; +static bool scan_jsx_text(TSLexer *lexer) { + // saw_text will be true if we see any non-whitespace content, or any whitespace content that is not a newline and + // does not immediately follow a newline. + bool saw_text = false; + // at_newline will be true if we are currently at a newline, or if we are at whitespace that is not a newline but + // immediately follows a newline. + bool at_newline = false; + + while (lexer->lookahead != 0 && lexer->lookahead != '<' && lexer->lookahead != '>' && lexer->lookahead != '{' && + lexer->lookahead != '}' && lexer->lookahead != '&') { + bool is_wspace = iswspace(lexer->lookahead); + if (lexer->lookahead == '\n') { + at_newline = true; + } else { + // If at_newline is already true, and we see some whitespace, then it must stay true. + // Otherwise, it should be false. + // + // See the table below to determine the logic for computing `saw_text`. + // + // |------------------------------------| + // | at_newline | is_wspace | saw_text | + // |------------|-----------|-----------| + // | false (0) | false (0) | true (1) | + // | false (0) | true (1) | true (1) | + // | true (1) | false (0) | true (1) | + // | true (1) | true (1) | false (0) | + // |------------------------------------| + + at_newline &= is_wspace; + if (!at_newline) { + saw_text = true; + } + } + + advance(lexer); + } + + lexer->result_symbol = JSX_TEXT; + return saw_text; +} + +bool tree_sitter_javascript_external_scanner_scan(void *payload, TSLexer *lexer, const bool *valid_symbols) { + if (valid_symbols[TEMPLATE_CHARS]) { + if (valid_symbols[AUTOMATIC_SEMICOLON]) { + return false; + } + return scan_template_chars(lexer); + } + + if (valid_symbols[JSX_TEXT] && scan_jsx_text(lexer)) { + return true; + } + + if (valid_symbols[AUTOMATIC_SEMICOLON]) { + bool scanned_comment = false; + bool ret = scan_automatic_semicolon(lexer, !valid_symbols[LOGICAL_OR], &scanned_comment); + if (!ret && !scanned_comment && valid_symbols[TERNARY_QMARK] && lexer->lookahead == '?') { + return scan_ternary_qmark(lexer); + } + return ret; + } + + if (valid_symbols[TERNARY_QMARK]) { + return scan_ternary_qmark(lexer); + } + + if (valid_symbols[HTML_COMMENT] && !valid_symbols[LOGICAL_OR] && !valid_symbols[ESCAPE_SEQUENCE] && + !valid_symbols[REGEX_PATTERN]) { + return scan_html_comment(lexer); + } + + return false; } diff --git a/lib/tree_sitter/alloc.h b/lib/tree_sitter/alloc.h new file mode 100644 index 0000000..1f4466d --- /dev/null +++ b/lib/tree_sitter/alloc.h @@ -0,0 +1,54 @@ +#ifndef TREE_SITTER_ALLOC_H_ +#define TREE_SITTER_ALLOC_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#include +#include + +// Allow clients to override allocation functions +#ifdef TREE_SITTER_REUSE_ALLOCATOR + +extern void *(*ts_current_malloc)(size_t); +extern void *(*ts_current_calloc)(size_t, size_t); +extern void *(*ts_current_realloc)(void *, size_t); +extern void (*ts_current_free)(void *); + +#ifndef ts_malloc +#define ts_malloc ts_current_malloc +#endif +#ifndef ts_calloc +#define ts_calloc ts_current_calloc +#endif +#ifndef ts_realloc +#define ts_realloc ts_current_realloc +#endif +#ifndef ts_free +#define ts_free ts_current_free +#endif + +#else + +#ifndef ts_malloc +#define ts_malloc malloc +#endif +#ifndef ts_calloc +#define ts_calloc calloc +#endif +#ifndef ts_realloc +#define ts_realloc realloc +#endif +#ifndef ts_free +#define ts_free free +#endif + +#endif + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_ALLOC_H_ diff --git a/lib/tree_sitter/array.h b/lib/tree_sitter/array.h new file mode 100644 index 0000000..15a3b23 --- /dev/null +++ b/lib/tree_sitter/array.h @@ -0,0 +1,290 @@ +#ifndef TREE_SITTER_ARRAY_H_ +#define TREE_SITTER_ARRAY_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include "./alloc.h" + +#include +#include +#include +#include +#include + +#ifdef _MSC_VER +#pragma warning(disable : 4101) +#elif defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wunused-variable" +#endif + +#define Array(T) \ + struct { \ + T *contents; \ + uint32_t size; \ + uint32_t capacity; \ + } + +/// Initialize an array. +#define array_init(self) \ + ((self)->size = 0, (self)->capacity = 0, (self)->contents = NULL) + +/// Create an empty array. +#define array_new() \ + { NULL, 0, 0 } + +/// Get a pointer to the element at a given `index` in the array. +#define array_get(self, _index) \ + (assert((uint32_t)(_index) < (self)->size), &(self)->contents[_index]) + +/// Get a pointer to the first element in the array. +#define array_front(self) array_get(self, 0) + +/// Get a pointer to the last element in the array. +#define array_back(self) array_get(self, (self)->size - 1) + +/// Clear the array, setting its size to zero. Note that this does not free any +/// memory allocated for the array's contents. +#define array_clear(self) ((self)->size = 0) + +/// Reserve `new_capacity` elements of space in the array. If `new_capacity` is +/// less than the array's current capacity, this function has no effect. +#define array_reserve(self, new_capacity) \ + _array__reserve((Array *)(self), array_elem_size(self), new_capacity) + +/// Free any memory allocated for this array. Note that this does not free any +/// memory allocated for the array's contents. +#define array_delete(self) _array__delete((Array *)(self)) + +/// Push a new `element` onto the end of the array. +#define array_push(self, element) \ + (_array__grow((Array *)(self), 1, array_elem_size(self)), \ + (self)->contents[(self)->size++] = (element)) + +/// Increase the array's size by `count` elements. +/// New elements are zero-initialized. +#define array_grow_by(self, count) \ + do { \ + if ((count) == 0) break; \ + _array__grow((Array *)(self), count, array_elem_size(self)); \ + memset((self)->contents + (self)->size, 0, (count) * array_elem_size(self)); \ + (self)->size += (count); \ + } while (0) + +/// Append all elements from one array to the end of another. +#define array_push_all(self, other) \ + array_extend((self), (other)->size, (other)->contents) + +/// Append `count` elements to the end of the array, reading their values from the +/// `contents` pointer. +#define array_extend(self, count, contents) \ + _array__splice( \ + (Array *)(self), array_elem_size(self), (self)->size, \ + 0, count, contents \ + ) + +/// Remove `old_count` elements from the array starting at the given `index`. At +/// the same index, insert `new_count` new elements, reading their values from the +/// `new_contents` pointer. +#define array_splice(self, _index, old_count, new_count, new_contents) \ + _array__splice( \ + (Array *)(self), array_elem_size(self), _index, \ + old_count, new_count, new_contents \ + ) + +/// Insert one `element` into the array at the given `index`. +#define array_insert(self, _index, element) \ + _array__splice((Array *)(self), array_elem_size(self), _index, 0, 1, &(element)) + +/// Remove one element from the array at the given `index`. +#define array_erase(self, _index) \ + _array__erase((Array *)(self), array_elem_size(self), _index) + +/// Pop the last element off the array, returning the element by value. +#define array_pop(self) ((self)->contents[--(self)->size]) + +/// Assign the contents of one array to another, reallocating if necessary. +#define array_assign(self, other) \ + _array__assign((Array *)(self), (const Array *)(other), array_elem_size(self)) + +/// Swap one array with another +#define array_swap(self, other) \ + _array__swap((Array *)(self), (Array *)(other)) + +/// Get the size of the array contents +#define array_elem_size(self) (sizeof *(self)->contents) + +/// Search a sorted array for a given `needle` value, using the given `compare` +/// callback to determine the order. +/// +/// If an existing element is found to be equal to `needle`, then the `index` +/// out-parameter is set to the existing value's index, and the `exists` +/// out-parameter is set to true. Otherwise, `index` is set to an index where +/// `needle` should be inserted in order to preserve the sorting, and `exists` +/// is set to false. +#define array_search_sorted_with(self, compare, needle, _index, _exists) \ + _array__search_sorted(self, 0, compare, , needle, _index, _exists) + +/// Search a sorted array for a given `needle` value, using integer comparisons +/// of a given struct field (specified with a leading dot) to determine the order. +/// +/// See also `array_search_sorted_with`. +#define array_search_sorted_by(self, field, needle, _index, _exists) \ + _array__search_sorted(self, 0, _compare_int, field, needle, _index, _exists) + +/// Insert a given `value` into a sorted array, using the given `compare` +/// callback to determine the order. +#define array_insert_sorted_with(self, compare, value) \ + do { \ + unsigned _index, _exists; \ + array_search_sorted_with(self, compare, &(value), &_index, &_exists); \ + if (!_exists) array_insert(self, _index, value); \ + } while (0) + +/// Insert a given `value` into a sorted array, using integer comparisons of +/// a given struct field (specified with a leading dot) to determine the order. +/// +/// See also `array_search_sorted_by`. +#define array_insert_sorted_by(self, field, value) \ + do { \ + unsigned _index, _exists; \ + array_search_sorted_by(self, field, (value) field, &_index, &_exists); \ + if (!_exists) array_insert(self, _index, value); \ + } while (0) + +// Private + +typedef Array(void) Array; + +/// This is not what you're looking for, see `array_delete`. +static inline void _array__delete(Array *self) { + if (self->contents) { + ts_free(self->contents); + self->contents = NULL; + self->size = 0; + self->capacity = 0; + } +} + +/// This is not what you're looking for, see `array_erase`. +static inline void _array__erase(Array *self, size_t element_size, + uint32_t index) { + assert(index < self->size); + char *contents = (char *)self->contents; + memmove(contents + index * element_size, contents + (index + 1) * element_size, + (self->size - index - 1) * element_size); + self->size--; +} + +/// This is not what you're looking for, see `array_reserve`. +static inline void _array__reserve(Array *self, size_t element_size, uint32_t new_capacity) { + if (new_capacity > self->capacity) { + if (self->contents) { + self->contents = ts_realloc(self->contents, new_capacity * element_size); + } else { + self->contents = ts_malloc(new_capacity * element_size); + } + self->capacity = new_capacity; + } +} + +/// This is not what you're looking for, see `array_assign`. +static inline void _array__assign(Array *self, const Array *other, size_t element_size) { + _array__reserve(self, element_size, other->size); + self->size = other->size; + memcpy(self->contents, other->contents, self->size * element_size); +} + +/// This is not what you're looking for, see `array_swap`. +static inline void _array__swap(Array *self, Array *other) { + Array swap = *other; + *other = *self; + *self = swap; +} + +/// This is not what you're looking for, see `array_push` or `array_grow_by`. +static inline void _array__grow(Array *self, uint32_t count, size_t element_size) { + uint32_t new_size = self->size + count; + if (new_size > self->capacity) { + uint32_t new_capacity = self->capacity * 2; + if (new_capacity < 8) new_capacity = 8; + if (new_capacity < new_size) new_capacity = new_size; + _array__reserve(self, element_size, new_capacity); + } +} + +/// This is not what you're looking for, see `array_splice`. +static inline void _array__splice(Array *self, size_t element_size, + uint32_t index, uint32_t old_count, + uint32_t new_count, const void *elements) { + uint32_t new_size = self->size + new_count - old_count; + uint32_t old_end = index + old_count; + uint32_t new_end = index + new_count; + assert(old_end <= self->size); + + _array__reserve(self, element_size, new_size); + + char *contents = (char *)self->contents; + if (self->size > old_end) { + memmove( + contents + new_end * element_size, + contents + old_end * element_size, + (self->size - old_end) * element_size + ); + } + if (new_count > 0) { + if (elements) { + memcpy( + (contents + index * element_size), + elements, + new_count * element_size + ); + } else { + memset( + (contents + index * element_size), + 0, + new_count * element_size + ); + } + } + self->size += new_count - old_count; +} + +/// A binary search routine, based on Rust's `std::slice::binary_search_by`. +/// This is not what you're looking for, see `array_search_sorted_with` or `array_search_sorted_by`. +#define _array__search_sorted(self, start, compare, suffix, needle, _index, _exists) \ + do { \ + *(_index) = start; \ + *(_exists) = false; \ + uint32_t size = (self)->size - *(_index); \ + if (size == 0) break; \ + int comparison; \ + while (size > 1) { \ + uint32_t half_size = size / 2; \ + uint32_t mid_index = *(_index) + half_size; \ + comparison = compare(&((self)->contents[mid_index] suffix), (needle)); \ + if (comparison <= 0) *(_index) = mid_index; \ + size -= half_size; \ + } \ + comparison = compare(&((self)->contents[*(_index)] suffix), (needle)); \ + if (comparison == 0) *(_exists) = true; \ + else if (comparison < 0) *(_index) += 1; \ + } while (0) + +/// Helper macro for the `_sorted_by` routines below. This takes the left (existing) +/// parameter by reference in order to work with the generic sorting function above. +#define _compare_int(a, b) ((int)*(a) - (int)(b)) + +#ifdef _MSC_VER +#pragma warning(default : 4101) +#elif defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic pop +#endif + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_ARRAY_H_ diff --git a/lib/tree_sitter/parser.h b/lib/tree_sitter/parser.h index 2b14ac1..17f0e94 100644 --- a/lib/tree_sitter/parser.h +++ b/lib/tree_sitter/parser.h @@ -13,9 +13,8 @@ extern "C" { #define ts_builtin_sym_end 0 #define TREE_SITTER_SERIALIZATION_BUFFER_SIZE 1024 -typedef uint16_t TSStateId; - #ifndef TREE_SITTER_API_H_ +typedef uint16_t TSStateId; typedef uint16_t TSSymbol; typedef uint16_t TSFieldId; typedef struct TSLanguage TSLanguage; @@ -87,6 +86,11 @@ typedef union { } entry; } TSParseActionEntry; +typedef struct { + int32_t start; + int32_t end; +} TSCharacterRange; + struct TSLanguage { uint32_t version; uint32_t symbol_count; @@ -126,13 +130,38 @@ struct TSLanguage { const TSStateId *primary_state_ids; }; +static inline bool set_contains(TSCharacterRange *ranges, uint32_t len, int32_t lookahead) { + uint32_t index = 0; + uint32_t size = len - index; + while (size > 1) { + uint32_t half_size = size / 2; + uint32_t mid_index = index + half_size; + TSCharacterRange *range = &ranges[mid_index]; + if (lookahead >= range->start && lookahead <= range->end) { + return true; + } else if (lookahead > range->end) { + index = mid_index; + } + size -= half_size; + } + TSCharacterRange *range = &ranges[index]; + return (lookahead >= range->start && lookahead <= range->end); +} + /* * Lexer Macros */ +#ifdef _MSC_VER +#define UNUSED __pragma(warning(suppress : 4101)) +#else +#define UNUSED __attribute__((unused)) +#endif + #define START_LEXER() \ bool result = false; \ bool skip = false; \ + UNUSED \ bool eof = false; \ int32_t lookahead; \ goto start; \ @@ -148,6 +177,17 @@ struct TSLanguage { goto next_state; \ } +#define ADVANCE_MAP(...) \ + { \ + static const uint16_t map[] = { __VA_ARGS__ }; \ + for (uint32_t i = 0; i < sizeof(map) / sizeof(map[0]); i += 2) { \ + if (map[i] == lookahead) { \ + state = map[i + 1]; \ + goto next_state; \ + } \ + } \ + } + #define SKIP(state_value) \ { \ skip = true; \ @@ -166,7 +206,7 @@ struct TSLanguage { * Parse Table Macros */ -#define SMALL_STATE(id) id - LARGE_STATE_COUNT +#define SMALL_STATE(id) ((id) - LARGE_STATE_COUNT) #define STATE(id) id @@ -176,7 +216,7 @@ struct TSLanguage { {{ \ .shift = { \ .type = TSParseActionTypeShift, \ - .state = state_value \ + .state = (state_value) \ } \ }} @@ -184,7 +224,7 @@ struct TSLanguage { {{ \ .shift = { \ .type = TSParseActionTypeShift, \ - .state = state_value, \ + .state = (state_value), \ .repetition = true \ } \ }} @@ -197,14 +237,15 @@ struct TSLanguage { } \ }} -#define REDUCE(symbol_val, child_count_val, ...) \ - {{ \ - .reduce = { \ - .type = TSParseActionTypeReduce, \ - .symbol = symbol_val, \ - .child_count = child_count_val, \ - __VA_ARGS__ \ - }, \ +#define REDUCE(symbol_name, children, precedence, prod_id) \ + {{ \ + .reduce = { \ + .type = TSParseActionTypeReduce, \ + .symbol = symbol_name, \ + .child_count = children, \ + .dynamic_precedence = precedence, \ + .production_id = prod_id \ + }, \ }} #define RECOVER() \